/* ── SHARED CAROUSEL STYLES ── */
:root {
    --carousel-primary: #b21c56;
    /* Pink */
    --carousel-secondary: #006cb7;
    /* Blue */
    --carousel-bg-light: #f8f9fa;
    --carousel-border: #e5e5e5;
    --carousel-radius: 4px;
    --carousel-muted-fg: #666;
}

/* Slider Section Layout */
.slider-section {
    padding: 60px 0;
}

.slider-section.bg-light {
    background: var(--carousel-bg-light);
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.sec-title {
    font-size: 24px;
    font-weight: 600;
    color: #111;
}

.sec-sub {
    font-size: 14px;
    color: var(--carousel-muted-fg);
    margin-top: 8px;
}

.sec-sub strong {
    color: var(--carousel-secondary);
    font-weight: 600;
}

/* Nav Arrows */
.nav-arrows {
    display: flex;
    gap: 8px;
}

.nav-arrow {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, opacity .2s;
}

.nav-arrow:hover:not(.disabled) {
    opacity: .85;
}

.nav-arrow.ar {
    background: var(--carousel-primary);
    color: #fff;
}

.nav-arrow.ab {
    background: var(--carousel-secondary);
    color: #fff;
}

.nav-arrow.disabled {
    background: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
}

/* Dots Navigation */
.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
    border: none;
    transition: background .25s, transform .2s;
}

.dot.active {
    background: var(--carousel-secondary);
    transform: scale(1.3);
}

/* Auto-scroll Badge */
.auto-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--carousel-muted-fg);
    margin-top: 6px;
}

.auto-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--carousel-secondary);
    animation: pulse 1.4s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}

/* Carousel Engine */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    align-items: stretch;
}

/* ── COMPONENT CARDS ── */
/* Review Card */
.review-card {
    background: #fff;
    border: 1px solid var(--carousel-border);
    padding: 28px 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
    position: relative;
    flex: 0 0 auto;
    box-sizing: border-box;
    width: calc((100% - 48px)/3);
}

.rqm {
    position: absolute;
    font-size: 60px;
    color: #f0f0f0;
    font-family: serif;
    line-height: 1;
}

.r-text {
    font-size: 13.5px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.65;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
}

.r-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.r-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.r-name {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
    color: #f5c518;
}

/* Video Card */
.video-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    box-sizing: border-box;
    width: calc((100% - 48px)/3);
    aspect-ratio: 16/9;
}

.vbg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .65;
    position: absolute;
    top: 0;
    left: 0;
}

.vplay {
    width: 52px;
    height: 52px;
    background: var(--carousel-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background .2s, transform .15s;
}

.vtitle {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 36px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
}

.vav {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.vav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* In The Spotlight & Awards */
.logo-brand {
    cursor: pointer;
    transition: transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-brand:hover {
    transform: scale(1.06);
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.award-emoji {
    font-size: 58px;
    line-height: 1;
}

.award-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-align: center;
    max-width: 130px;
    line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

    .review-card,
    .video-card {
        width: calc((100% - 24px)/2);
    }
}

@media (max-width: 500px) {

    .review-card,
    .video-card {
        width: 100%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}