
/* ===================================================== */
/* SOURCE: banner.css */
/* ===================================================== */

/* banner.css */

/* ===================================================== */
/* SOURCE: banner.slider.css */
/* ===================================================== */

banner-widget .banner-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}



/* ===================================================== */
/* SOURCE: banner.slide.css */
/* ===================================================== */

banner-widget .uspBaseWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

banner-widget .uspSlide--inactive {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

banner-widget .uspSlide--active {
    opacity: 1;
    pointer-events: auto;
}



/* ===================================================== */
/* SOURCE: banner.static.css */
/* ===================================================== */

banner-widget .reactedge-banner-static {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

@media (min-width: 641px) {
    banner-widget .reactedge-banner-static {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    banner-widget .reactedge-banner-static {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ===================================================== */
/* SOURCE: banner.view.css */
/* ===================================================== */

banner-widget .reactedge-banner-view {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    gap: 20px;
}

banner-widget .reactedge-banner-view__item {
    flex: 0 0 auto;
}

banner-widget .reactedge-banner-view-slide__image {
    object-fit: cover;
}


/* ===================================================== */
/* SOURCE: banner.arrows.css */
/* ===================================================== */

banner-widget .arrows-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;

    transform: translateY(-50%);

    display: flex;
    justify-content: space-between;
    padding: 0 20px;

    pointer-events: none;
}

banner-widget .arrow-btn {
    pointer-events: auto;
    width: 30px;
    height: 30px;

    border-radius: 50%;
    background: rgba(248, 248, 245,0.55);
    color: #2b2b2b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);

    font-size: 22px;
    line-height: 1;

    border: none;
    -webkit-tap-highlight-color: transparent;
    inset: 0;
    padding: 0 10px;
    opacity: 0.75;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

banner-widget .arrow-btn :active {
    transform: scale(0.95);
}

banner-widget .arrow-btn:hover {
    background: rgba(248, 248, 245, 0.75);
}

banner-widget .arrow-btn:active {
    transform: scale(0.95);
}

banner-widget .arrow-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

banner-widget button {
    min-width: unset;
}


