/* Today / Editorial — full-page reading experience */

.today-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
}

/* Red Druk label */
.today-page__eyebrow {
    display: block;
    font-family: 'Druk Heavy', 'Arial Black', sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.25rem;
}

/* Date / byline */
.today-page__date {
    font-size: 14px;
    font-style: italic;
    color: var(--dim);
    margin-bottom: 0.75rem;
}

/* Headline */
.today-page__title {
    font-family: 'Druk Heavy', 'Arial Black', sans-serif;
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 2rem;
}

/* Body prose */
.today-page__body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}
.today-page__body p {
    margin: 0 0 1.25rem;
}
.today-page__body p:last-child {
    margin-bottom: 0;
}

/* Seasonal context card */
.today-page__seasonal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 2.5rem;
    box-shadow: var(--card-shadow);
}
.today-page__seasonal p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Divider */
.today-page__divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 3rem 0 2.5rem;
}

/* Past editorials */
.today-page__past-heading {
    font-family: 'Druk Heavy', 'Arial Black', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 1.5rem;
}

.today-page__past-list {
    display: grid;
    gap: 2rem;
}

.today-page__past-entry {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.today-page__past-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.today-page__past-date {
    font-size: 13px;
    font-style: italic;
    color: var(--dim);
    margin-bottom: 0.4rem;
}

.today-page__past-headline {
    font-family: 'Druk Heavy', 'Arial Black', sans-serif;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.today-page__past-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}
.today-page__past-body p {
    margin: 0 0 0.75rem;
}
.today-page__past-body p:last-child {
    margin-bottom: 0;
}

/* Dark mode — attribute selector */
[data-theme="dark"] .today-page__seasonal {
    background: var(--surface);
    box-shadow: var(--card-shadow);
}

/* Dark mode — prefers-color-scheme fallback */
@media (prefers-color-scheme: dark) {
    .today-page__seasonal {
        background: var(--surface);
        box-shadow: var(--card-shadow);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .today-page {
        padding: 2rem 1rem 3rem;
    }
    .today-page__title {
        font-size: clamp(26px, 7vw, 36px);
    }
    .today-page__body {
        font-size: 16px;
    }
    .today-page__seasonal {
        padding: 16px 18px;
    }
}
