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

.featured-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding-bottom: 10px;

    scrollbar-width: none;
}

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

/* CARD */

.featured-card {
    min-width: 100%;
    position: relative;
    border-radius: 32px;
    overflow: hidden;

    scroll-snap-align: start;

    background: #111;
}

.featured-card-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: #fff;
}

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

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .6s ease;
}

.featured-card:hover img {
    transform: scale(1.03);
}

/* OVERLAY */

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

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.82) 10%,
        rgba(0,0,0,.25) 45%,
        rgba(0,0,0,.05) 100%
    );
}

/* CONTENT */

.featured-card-content {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 2;

    max-width: 500px;
}

.featured-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;

    background: #7c3aed;
    color: #fff;

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

    margin-bottom: 16px;
}

.featured-card-content h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
}

.featured-card-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 24px;
}

.featured-read {
    font-weight: 700;
    font-size: 18px;
}

/* MOBILE */

@media (max-width: 768px) {

    .featured-card-image {
        height: 420px;
    }

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

    .featured-card-content h2 {
        font-size: 38px;
    }

    .featured-card-content p {
        font-size: 15px;
    }
}