.swiper-pagination-bullet {
    background: #fff;
}
.swiper-pagination-bullet-active {
    background: #5026c2;
}
.portfolio-swiper {
    padding: 0 2rem;
}

/* Homepage hero: height follows viewport (below fixed header ~5rem; main has pt-20) */
.hero-banner-swiper {
    --hero-banner-h: calc(100dvh - 5rem);
    width: 100%;
    height: var(--hero-banner-h);
    min-height: 28rem;
}

@supports (height: 100svh) {
    .hero-banner-swiper {
        --hero-banner-h: calc(100svh - 5rem);
    }
}

.hero-banner-swiper .swiper-wrapper {
    height: 100%;
}

.hero-banner-slide {
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-banner-slide-inner {
    min-height: 100%;
    height: 100%;
}

.hero-banner-pagination.swiper-pagination {
    bottom: 1rem !important;
    z-index: 20;
}

@media (min-width: 768px) {
    .hero-banner-pagination.swiper-pagination {
        bottom: 1.5rem !important;
    }
}

.hero-banner-swiper .hero-banner-nav-prev,
.hero-banner-swiper .hero-banner-nav-next {
    color: #fff;
    z-index: 20;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 9999px;
    transition: background 0.2s ease;
}

.hero-banner-swiper .hero-banner-nav-prev:hover,
.hero-banner-swiper .hero-banner-nav-next:hover {
    background: rgba(80, 38, 194, 0.65);
}

.hero-banner-swiper .hero-banner-nav-prev::after,
.hero-banner-swiper .hero-banner-nav-next::after {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-banner-swiper .hero-banner-nav-prev {
    left: 0.75rem;
}

.hero-banner-swiper .hero-banner-nav-next {
    right: 0.75rem;
}

@media (min-width: 768px) {
    .hero-banner-swiper .hero-banner-nav-prev {
        left: 1.25rem;
    }
    .hero-banner-swiper .hero-banner-nav-next {
        right: 1.25rem;
    }
}

/* Production hero: fixed aspect ratio slides (image + YouTube) */
.production-hero-swiper .production-hero-pagination.swiper-pagination {
    bottom: 1rem !important;
    z-index: 20;
}

@media (min-width: 768px) {
    .production-hero-swiper .production-hero-pagination.swiper-pagination {
        bottom: 1.5rem !important;
    }
}

.production-hero-swiper .production-hero-nav-prev,
.production-hero-swiper .production-hero-nav-next {
    color: #fff;
    z-index: 20;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 9999px;
    transition: background 0.2s ease;
}

.production-hero-swiper .production-hero-nav-prev:hover,
.production-hero-swiper .production-hero-nav-next:hover {
    background: rgba(80, 38, 194, 0.65);
}

.production-hero-swiper .production-hero-nav-prev::after,
.production-hero-swiper .production-hero-nav-next::after {
    font-size: 1.1rem;
    font-weight: 700;
}

.production-hero-swiper .production-hero-nav-prev {
    left: 0.75rem;
}

.production-hero-swiper .production-hero-nav-next {
    right: 0.75rem;
}

@media (min-width: 768px) {
    .production-hero-swiper .production-hero-nav-prev {
        left: 1.25rem;
    }
    .production-hero-swiper .production-hero-nav-next {
        right: 1.25rem;
    }
}