/* =========================================================
   FEATURED SERIES HERO
========================================================= */

.series-featured-hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #0f0f17;
}


/* =========================================================
   BACKGROUND
========================================================= */

.series-featured-hero__background {
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.02);
}


/* =========================================================
   OVERLAY
========================================================= */

.series-featured-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 8, 20, .94) 0%,
            rgba(10, 8, 20, .82) 32%,
            rgba(10, 8, 20, .48) 62%,
            rgba(10, 8, 20, .20) 100%
        );
}


/* cinematic purple glow */

.series-featured-hero__overlay::after {
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 18% 50%,
            rgba(124, 58, 237, .38),
            transparent 48%
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.series-featured-hero__content {
    position: relative;

    z-index: 2;

    width: min(1200px, calc(100% - 80px));

    margin: 0 auto;

    padding: 100px 0;

    color: #fff;
}


/* =========================================================
   LABEL
========================================================= */

.series-featured-hero__label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;

    color: rgba(255,255,255,.78);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =========================================================
   STATUS
========================================================= */

.series-featured-hero__status {
    display: inline-flex;
    align-items: center;

    margin-left: 12px;

    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(124,58,237,.20);

    border: 1px solid rgba(167,139,250,.40);

    backdrop-filter: blur(10px);

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.series-featured-hero__title {
    max-width: 760px;

    margin: 0 0 18px;

    color: #fff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: .96;

    font-weight: 800;

    letter-spacing: -2px;

    text-shadow:
        0 5px 30px rgba(0,0,0,.45);
}


/* =========================================================
   CREATOR
========================================================= */

.series-featured-hero__creator {
    margin: 0 0 22px;

    color: rgba(255,255,255,.78);

    font-size: 16px;
    font-weight: 500;
}


/* =========================================================
   SYNOPSIS
========================================================= */

.series-featured-hero__synopsis {
    max-width: 560px;

    margin: 0 0 30px;

    color: rgba(255,255,255,.88);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   BUTTON
========================================================= */

.series-featured-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #5b34f2
        );

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 12px 40px rgba(91,52,242,.35);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.series-featured-hero__button:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 18px 50px rgba(91,52,242,.45);
}

/* =========================================================
   FEATURED SERIES HERO SLIDER
========================================================= */

.series-featured-hero {
    position: relative;
    overflow: hidden;
}


.series-featured-hero__slider {
    display: flex;

    width: 100%;

    overflow: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;
}

.series-featured-hero__slider::-webkit-scrollbar {
    display: none;
}


.series-featured-hero__slide {
    position: relative;

    flex: 0 0 100%;

    min-width: 100%;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* =========================================================
   SLIDER BACKGROUND
========================================================= */

.series-featured-hero__slide
.series-featured-hero__background {
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.02);

    transition:
        transform 8s ease;
}


.series-featured-hero__slide:hover
.series-featured-hero__background {
    transform: scale(1.05);
}


/* =========================================================
   FEATURED SERIES HERO — BOTTOM CONTROLS
========================================================= */

.series-featured-hero__arrow {
    position: absolute;

    bottom: 22px;

    top: auto;

    z-index: 6;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    background: rgba(10,8,20,.55);

    backdrop-filter: blur(10px);

    color: #fff;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    transform: none;

    transition:
        background .25s ease,
        transform .25s ease;
}


.series-featured-hero__arrow:hover {
    background: rgba(124,58,237,.70);

    transform: scale(1.05);
}


/* Previous */

.series-featured-hero__arrow--prev {
    left: calc(50% - 92px);
}


/* Next */

.series-featured-hero__arrow--next {
    right: calc(50% - 92px);
}


/* =========================================================
   DOTS
========================================================= */

.series-featured-hero__dots {
    bottom: 36px;

    z-index: 6;
}

.series-featured-hero__arrow:hover {
    background: rgba(124,58,237,.65);

    transform:
        translateY(-50%)
        scale(1.05);
}


.series-featured-hero__arrow--prev {
    left: 28px;
}


.series-featured-hero__arrow--next {
    right: 28px;
}


/* =========================================================
   DOTS
========================================================= */

.series-featured-hero__dots {
    position: absolute;

    left: 50%;
    bottom: 26px;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 8px;

    transform: translateX(-50%);
}


.series-featured-hero__dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.45);

    cursor: pointer;

    transition:
        width .25s ease,
        background .25s ease;
}


.series-featured-hero__dot.is-active {
    width: 28px;

    border-radius: 999px;

    background: #fff;
}


/* =========================================================
   FEATURED COMICS
========================================================= */

.featured-comics {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
}


/* =========================================================
   SLIDER
========================================================= */

.featured-slider {
    display: flex;
    gap: 32px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding-bottom: 12px;

    scrollbar-width: none;
}

.featured-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   CARD
========================================================= */

.featured-card {
    position: relative;

    min-width: 100%;

    border-radius: 38px;
    overflow: hidden;

    scroll-snap-align: start;

    background: #0f0f17;

    border: 1px solid rgba(255,255,255,.06);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.featured-card:hover {
    transform: translateY(-6px);
}


.featured-card-link {
    position: relative;
    display: block;

    text-decoration: none;
    color: #fff;
}


/* =========================================================
   BANNER IMAGE
========================================================= */

.featured-card-banner {
    position: relative;
    height: 620px;
}

.featured-card-banner img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition:
        transform .8s ease,
        filter .5s ease;
}

.featured-card:hover .featured-card-banner img {
    transform: scale(1.04);
    filter: brightness(1.03);
}


/* =========================================================
   OVERLAY
========================================================= */

.featured-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.62) 32%,
            rgba(0,0,0,.18) 68%,
            rgba(0,0,0,.08) 100%
        );

    z-index: 1;
}


/* cinematic glow */

.featured-card-overlay::after {
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at left center,
            rgba(124,58,237,.38),
            transparent 48%
        );

    mix-blend-mode: screen;
    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.featured-card-content {
    position: absolute;

    left: 72px;
    bottom: 72px;

    z-index: 3;

    max-width: 560px;
}


/* =========================================================
   STATUS
========================================================= */

.featured-card-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(124,58,237,.18);

    border:
        1px solid rgba(167,139,250,.35);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;

    text-transform: uppercase;

    margin-bottom: 22px;
}


/* =========================================================
   TITLE
========================================================= */

.featured-card-title {
    font-size: clamp(48px, 6vw, 82px);
    line-height: .92;
    font-weight: 800;

    letter-spacing: -2px;

    color: #fff;

    margin: 0 0 24px;

    text-shadow:
        0 4px 30px rgba(0,0,0,.45);
}


/* =========================================================
   EXCERPT
========================================================= */

.featured-card-excerpt {
    font-size: 18px;
    line-height: 1.75;

    color: rgba(255,255,255,.86);

    margin-bottom: 34px;

    max-width: 520px;
}


/* =========================================================
   BUTTON
========================================================= */

.featured-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 15px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #5b34f2
        );

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 12px 40px rgba(91,52,242,.35);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        opacity .25s ease;
}

.featured-card:hover .featured-card-button {
    transform: translateY(-2px);

    box-shadow:
        0 18px 50px rgba(91,52,242,.45);
}


/* =========================================================
   MOBILE
========================================================= */
/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .series-featured-hero {
        min-height: 540px;
    }

    .series-featured-hero__content {
        width: min(100% - 56px, 900px);

        padding: 80px 0;
    }

    .series-featured-hero__title {
        font-size: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .series-featured-hero {
        min-height: 520px;
    }

    .series-featured-hero__background {
        background-position: 60% center;
    }

    .series-featured-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 8, 20, .94) 0%,
                rgba(10, 8, 20, .78) 60%,
                rgba(10, 8, 20, .42) 100%
            );
    }

    .series-featured-hero__content {
        width: calc(100% - 40px);

        padding: 70px 0 60px;
    }

    .series-featured-hero__title {
        font-size: 44px;
        line-height: .98;
        letter-spacing: -1px;
    }

    .series-featured-hero__synopsis {
        font-size: 15px;
        line-height: 1.6;
    }

    .series-featured-hero__slide {
        min-height: 520px;
    }

    .series-featured-hero__arrow {
        bottom: 17px;

        width: 34px;
        height: 34px;

        font-size: 15px;
    }

    .series-featured-hero__arrow--prev {
        left: calc(50% - 82px);
    }

    .series-featured-hero__arrow--next {
        right: calc(50% - 82px);
    }

    .series-featured-hero__dots {
        bottom: 28px;
    }


}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .series-featured-hero {
        min-height: 500px;
    }

    .series-featured-hero__content {
        width: calc(100% - 32px);
    }

    .series-featured-hero__title {
        font-size: 36px;
    }

    .series-featured-hero__status {
        display: flex;

        width: fit-content;

        margin: 8px 0 18px;
    }

    .series-featured-hero__button {
        width: 100%;
    }

    .series-featured-hero__slide {
        min-height: 500px;
    }

    .series-featured-hero__arrow {
        width: 38px;
        height: 38px;
    }

}

@media (max-width: 991px) {

    .featured-card-banner {
        height: 520px;
    }

    .featured-card-content {
        left: 42px;
        right: 42px;
        bottom: 42px;
    }

    .featured-card-title {
        font-size: 58px;
    }

}


@media (max-width: 768px) {

    .featured-comics {
        padding: 42px 0;
    }

    .featured-card {
        border-radius: 28px;
    }

    .featured-card-banner {
        height: 460px;
    }

    .featured-card-content {
        left: 26px;
        right: 26px;
        bottom: 26px;
    }

    .featured-card-title {
        font-size: 42px;
        line-height: .98;
    }

    .featured-card-excerpt {
        font-size: 15px;
        line-height: 1.6;
    }

    .featured-card-button {
        width: 100%;
        justify-content: center;
    }

}


@media (max-width: 520px) {

    .featured-card-banner {
        height: 400px;
    }

    .featured-card-title {
        font-size: 34px;
    }

    .featured-card-status {
        font-size: 12px;
        padding: 8px 14px;
    }

}