/* Banner config — update --banner-max-width here; also update ScaleWidth() in BannerSlider.ss to match */
:root {
    --banner-max-width: 1100px;
    --swiper-pagination-color: var(--color-brand-orange);
    --swiper-navigation-color: var(--color-brand-orange);
}

/* Banner / Banner Slider */
.banner,
.banner-slider {
    margin: 0 auto;
    /* margin: 10px auto; */
    max-width: var(--banner-max-width);
    width: 100%;
    max-height: 60rem;
    overflow: hidden;
    position: relative;
}

.banner__media {
    display: block;
    height: 100%;
    max-height: 60rem;
    object-fit: cover;
    width: 100%;
}

.banner-slide {
    position: relative;
}

.banner__caption {
    background-color: var(--color-black-50);
    border-radius: 0.4rem;
    bottom: 2rem;
    color: var(--color-white);
    left: 50%;
    padding: 1rem 2rem;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-white);
}

.swiper-pagination-bullet-active {
    background-color: var(--color-brand-orange);
}
