/* Cover Story detail page — template-owned styles.
   The body of `coverStory.content` ships its own per-story CSS (admin pastes
   the editorial HTML in full). These rules style ONLY the template-rendered
   "Next Cover Story" teaser that lives outside the admin's HTML, so they're
   scoped to `.ntm-cover-story-page` to avoid colliding with content blocks. */

.ntm-cover-story-page .next-cover {
    background: var(--ntm-bg-cream);
    padding: 100px 32px;
    text-align: center;
}

.ntm-cover-story-page .next-cover-inner {
    max-width: 800px;
    margin: 0 auto;
}

.ntm-cover-story-page .next-eyebrow {
    font-size: 11px;
    color: var(--ntm-accent-teal);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.ntm-cover-story-page .next-title {
    font-family: var(--ntm-font-serif);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ntm-ink);
    margin-bottom: 32px;
}

.ntm-cover-story-page .next-title em {
    font-style: italic;
    color: var(--ntm-accent-teal);
    font-weight: 400;
}

.ntm-cover-story-page .next-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--ntm-bg-dark);
    color: var(--ntm-ink-inverse);
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    transition: gap 0.2s;
}

.ntm-cover-story-page .next-link:hover,
.ntm-cover-story-page .next-link:focus {
    gap: 22px;
    color: var(--ntm-ink-inverse);
    text-decoration: none;
}

.ntm-cover-story-page .next-link svg {
    flex-shrink: 0;
}
