.review-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    padding: 0 var(--space-xl);
    overflow: hidden;
}

/* SLIDER */
.review-hero__slider {
    position: absolute;
    inset: 0;
}

.review-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.review-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-slide.active {
    opacity: 1;
}

/* OVERLAY */
.review-hero__overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.95) 25%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.2) 80%,
        transparent 100%
    );
}

/* CONTENT */
.review-hero__content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

/* SUBTITLE */
.review-hero__content span {
    color: var(--color-primary);
    font-size: var(--fs-sm);
    letter-spacing: 2px;
}

/* TITLE */
.review-hero__content h1 {
    font-family: var(--font-title);
    font-size: var(--fs-hero);
    margin: var(--space-md) 0;
    line-height: 1.1;
}

/* DIVIDER */
.review-hero__content .divider {
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    margin-bottom: var(--space-md);
}

/* TEXT */
.review-hero__content p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .review-hero {
        height: 380px;
        justify-content: center;
        text-align: center;
    }

    .review-hero__content {
        max-width: 300px;
    }

    .review-hero__content h1 {
        font-size: 28px;
    }

    .review-hero__content .divider {
        margin: 0 auto var(--space-md);
    }
}