/* ==========================================================================
   Spotlight Series Block
   ========================================================================== */

.spotlight--home {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.spotlight--home__header {
    margin-bottom: 1.5rem;
}

.spotlight--home__kicker {
    margin: 0 0 0.5rem;
    color: var(--color-black);
}

.spotlight--home__title-main {
    margin: 0 0 0.25rem;
}

.spotlight--home__headline {
    margin: 0;
    font-family: "Maax Bold";
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.3;
}

.spotlight--home__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.spotlight--home__item {
    display: flex;
    flex-direction: column;
}

.spotlight--home__media {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.spotlight--home__media img {
    width: 100%;
    height: auto;
    display: block;
}

.spotlight--home__until {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-black);
    color: var(--color-white);
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    font-family: "Maax Medium";
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
}

.spotlight--home__content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
}

.spotlight--home__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spotlight--home__title {
    margin: 0;
    font-family: "Maax Bold";
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spotlight--home__byline {
    margin: 0;
    font-family: var(--font-family-serif);
    font-size: 1rem;
    color: var(--color-black);
    line-height: 1.3;
}

.spotlight--home__subtitle {
    display: none;
}

.spotlight--home__meta {
    display: none;
}

.spotlight--home__author {
    font-family: var(--font-family-serif);
}

.spotlight--home__sep,
.spotlight--home__series {
    display: none;
}

/* Spotlight - Tablet */
@media (max-width: 1024px) {
    .spotlight--home__items {
        gap: 2rem;
    }

    .spotlight--home__content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Spotlight - Mobile */
@media (max-width: 768px) {
    .spotlight--home {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .spotlight--home__items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .spotlight--home__content {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .spotlight--home__title {
        font-size: 1.25rem;
    }

    .spotlight--home__byline {
        font-size: 0.9375rem;
    }
}

/* Spotlight - Small Mobile */
@media (max-width: 480px) {
    .spotlight--home__content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .spotlight--home__until {
        top: 0.75rem;
        left: 0.75rem;
        padding: 0.375rem 0.625rem;
        font-size: 0.6875rem;
    }
}
