/* Front Page
--------------------------------------------- */

/* Hero Section
--------------------------------------------- */
.page--front__hero {
	position: relative;
}

.page--front__hero__content {
	position: absolute;
	bottom: -20px;
	left: max((100% - 1400px)/2,50% - 50vw + 80px);
	min-width: 600px;
	max-width: min(800px,100vw - 160px);
	padding: 30px 20px;
	border: 2px solid var(--color-black);
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	background-color: var(--color-background);
}

.page--front__hero__content h2 {
	margin: -4px 0 1rem;
	font-family: "Maax Medium";
	font-size: 1.125rem;
	letter-spacing: .16ch;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.2;
}

.page--front__hero__content h1 {
	margin: 0 0 1rem;
	font-family: "Maax Bold";
	font-size: 3.25rem;
	letter-spacing: -1.01px;
	line-height: 1;
}

.page--front__hero__content__byline {
	font-family: var(--font-family-serif);
	font-size: var(--font-size-06);
	margin: 0 0 1rem;
	line-height: 1;
}

.page--front__hero__cta {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

/* Spotlight Section
--------------------------------------------- */
.spotlight--home {
    margin: 3rem 0 2rem;
    padding: 0;
}

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

@media (max-width: 768px) {
    .spotlight--home__items {
        grid-template-columns: 1fr;
    }
}

.spotlight--home__item {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--color-black);
    background: var(--color-background);
}

.spotlight--home__media {
    position: relative;
    width: 100%;
}

.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: .5rem .75rem;
    font-size: var(--font-size-03);
    font-family: "Maax Medium";
    text-transform: uppercase;
    letter-spacing: .08ch;
    line-height: 1;
}

.spotlight--home__content {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spotlight--home__title {
    margin: 0 0 .5rem;
    font-family: "Maax Bold";
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.1;
}

.spotlight--home__byline {
    margin: 0 0 auto;
    font-family: var(--font-family-serif);
    font-size: var(--font-size-04);
    color: var(--color-black);
}

.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--home__cta {
    margin-top: 1.25rem;
}

.spotlight--home__cta .cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    border: 2px solid var(--color-black);
    background: transparent;
    color: var(--color-black);
    text-decoration: none;
    font-family: "Maax Medium";
    font-size: var(--font-size-04);
    text-transform: uppercase;
    letter-spacing: .08ch;
    transition: background-color 0.2s, color 0.2s;
}

.spotlight--home__cta .cta:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.spotlight--home__cta .cta svg {
    width: 20px;
    height: 20px;
}

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

.spotlight--home__kicker {
    margin: 0 0 .5rem;
    font-family: "Maax Medium";
    font-size: 0.875rem;
    letter-spacing: .16ch;
    text-transform: uppercase;
}

.spotlight--home__headline {
    margin: 0;
    font-family: "Maax Bold";
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
}

/* Reader Benefits Banner
--------------------------------------------- */
.reader-benefits {
    width: 100%;
    margin: 3rem 0;
    overflow: hidden;
}

.reader-benefits__container {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 200px;
}

.reader-benefits__left {
    background: var(--color-black);
    color: var(--color-white);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    position: relative;
    width: 28%;
    min-width: 320px;
}

.reader-benefits__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.reader-benefits__heading {
    font-family: "Maax Bold";
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

.reader-benefits__divider {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 200px 60px;
    border-color: transparent transparent var(--color-white) transparent;
    position: relative;
    flex-shrink: 0;
    background: var(--color-black);
}

.reader-benefits__right {
    background: var(--color-white);
    padding: 3rem 4rem 3rem 3rem;
    flex-grow: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 2fr auto;
    gap: 2rem;
    align-items: center;
}

.reader-benefits__title {
    font-family: "Maax Bold";
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.reader-benefits__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reader-benefits__list-item {
    font-size: 0.9375rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
}

.reader-benefits__list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    font-family: "Maax Bold";
    font-weight: 400;
}

.reader-benefits__cta {
    font-family: "Maax Medium";
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: .16ch;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    padding: 0.75rem 1.5rem;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.reader-benefits__cta:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Tablet/Desktop Adjustments */
@media (max-width: 1200px) {
    .reader-benefits__right {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
        padding: 2.5rem 3rem;
    }

    .reader-benefits__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
    }

    .reader-benefits__cta {
        justify-self: end;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hero Section - Mobile */
    .page--front__hero {
        display: flex;
        flex-direction: column;
    }

    .page--front__hero__content {
        position: relative;
        bottom: auto;
        left: auto;
        min-width: auto;
        max-width: 100%;
        padding: 1.5rem;
        border-left: none;
        border-right: none;
        border-top: none;
        text-align: left;
    }

    .page--front__hero__cta {
        position: static;
        margin-top: 0.5rem;
    }

    /* Reader Benefits - Mobile */
    .reader-benefits__container {
        flex-direction: column;
    }

    .reader-benefits__left {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .reader-benefits__heading {
        max-width: 100%;
        font-size: 2rem;
    }

    .reader-benefits__divider {
        display: none;
    }

    .reader-benefits__right {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 1.5rem;
    }

    .reader-benefits__title {
        font-size: 1.25rem;
        min-width: auto;
    }

    .reader-benefits__list {
        flex-direction: column;
        gap: 1rem;
    }

    .reader-benefits__list-item {
        flex: none;
    }

    .reader-benefits__cta {
        align-self: stretch;
        text-align: center;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .page--front__hero__content {
        left: 2rem;
        min-width: auto;
        max-width: calc(100% - 4rem);
    }

    .page--front__hero__content h1 {
        font-size: 2.5rem;
    }
}

