/* WAC Featured */
.wac-featured {
    max-width: 1160px;
    margin: 0 auto;
    padding: 92px 20px;
    font-family: 'Poppins', sans-serif;
}

/* Section header */
.wac-featured__header {
    margin-bottom: 48px;
}

.wac-featured__subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #D23636;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;
    line-height: 19.2px;
    letter-spacing: 2.16px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.wac-featured__subtitle::before {
    content: "";
    width: 26px;
    height: 1px;
    background: #D23636;
    flex: 0 0 auto;
}

.wac-featured__title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 44px;
    line-height: 48.4px;
    letter-spacing: -0.66px;
    color: #1D1D1B;
    margin: 0 0 16px;
    max-width: 520px;
}

.wac-featured__title i,
.wac-featured__title em {
    color: #D23636;
    font-style: italic;
}

.wac-featured__desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 27.52px;
    letter-spacing: 0;
    color: #6F6D68;
    margin: 0;
    max-width: 520px;
}

/* Slider */
.wac-featured__slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.wac-featured__track {
    display: flex;
    transition: transform 0.6s ease;
}

.wac-featured__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    aspect-ratio: calc((492/1124) * 100%);
    max-height: 492px;
}

img.wac-featured__slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.wac-featured__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(29, 29, 27, 0.62) 0%, rgba(29, 29, 27, 0.25) 55%, rgba(29, 29, 27, 0.05) 100%);
}

.wac-featured__slide-content {
    position: absolute;
    left: 66px;
    bottom: 50px;
    max-width: 380px;
    z-index: 2;
}

.wac-featured__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E0A62E;
    color: #1D1D1B;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    line-height: 17px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.wac-featured__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    flex: 0 0 auto;
}

.wac-featured__slide-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -0.51px;
    color: #ffffff;
    margin: 0 0 14px;
}

.wac-featured__slide-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 25px;
    color: #ffffff;
    margin: 0;
}

/* Prev / Next navigation */
.wac-featured__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    padding: 0;
    border: 1px solid #ffffffa9;
    transition: background 0.3s ease, color 0.3s ease;

    @media (max-width: 767.98px) {
        display: none;
    }
}

.wac-featured__nav--prev {
    left: 18px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.wac-featured__nav--next {
    right: 18px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

@media (hover: hover) {
    .wac-featured__nav--prev:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .wac-featured__nav--next:hover {
        background: rgba(255, 255, 255, 0.4);
    }
}

/* Dots + play controls */
.wac-featured__controls {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.wac-featured__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wac-featured__dot {
    width: 26px;
    height: 3px;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
    position: relative;

    &::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 3px;
        background: #FFF;
        transition: none;
    }

    &.is-active::after {
        width: 100%;
        transition: width 3s ease-in;
    }
}

.wac-featured__play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(29, 29, 27, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

@media (hover: hover) {
    .wac-featured__play:hover {
        background: rgba(29, 29, 27, 0.85);
    }
}

.wac-featured__play .wac-featured__pause-icon {
    display: none;
}

.wac-featured__play.is-playing .wac-featured__play-icon {
    display: none;
}

.wac-featured__play.is-playing .wac-featured__pause-icon {
    display: block;
}

@media (max-width: 1024px) {
    .wac-featured__title {
        font-size: 36px;
        line-height: 42px;
    }

}

@media (max-width: 768px) {
    .wac-featured {
        padding: 50px 20px;
    }

    .wac-featured__header {
        margin-bottom: 30px;
    }

    .wac-featured__title {
        font-size: 30px;
        line-height: 36px;
    }

    .wac-featured__slide {
        aspect-ratio: auto;
        height: 380px;
        max-height: none;
    }

    .wac-featured__slide-content {
        left: 20px;
        right: 20px;
        bottom: 60px;
        max-width: none;
    }

    .wac-featured__slide-title {
        font-size: 26px;
        line-height: 32px;
    }

    .wac-featured__nav--prev {
        left: 12px;
    }

    .wac-featured__nav--next {
        right: 12px;
    }
}