body {
    min-width: 320px;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--yellow-accent);
    color: var(--blue-deep);
}

.container {
    width: min(100%, calc(var(--container) + (var(--gutter) * 2)));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    position: relative;
    padding-block: clamp(88px, 10vw, 160px);
}

.section-full {
    position: relative;
    min-height: min(920px, 100svh);
}

.section--royal {
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(21, 155, 238, .22), transparent 26%),
        var(--blue-royal);
    color: var(--white);
}

.section--deep {
    overflow: hidden;
    background:
        radial-gradient(circle at 95% 15%, rgba(7, 86, 217, .3), transparent 28%),
        var(--blue-deep);
    color: var(--white);
}

.section--navy {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(10, 50, 139, .48), transparent 42%),
        var(--blue-navy);
    color: var(--white);
}

.section--light {
    background: var(--surface-light);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    text-wrap: balance;
}

h1,
h2 {
    letter-spacing: -.035em;
    line-height: .9;
}

p {
    text-wrap: pretty;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--blue-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    background: var(--yellow-accent);
    content: "";
}

.eyebrow--light {
    color: rgba(255, 255, 255, .86);
}

.section-heading {
    max-width: 900px;
    margin-bottom: clamp(48px, 6vw, 86px);
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading h2,
.weekly-intro h2,
.timeline__intro h2,
.submit-story__intro h2 {
    font-size: clamp(60px, 7vw, 118px);
}

.section-heading > p:last-child {
    max-width: 700px;
    margin: 26px auto 0;
    color: var(--text-dark-secondary);
    font-size: clamp(16px, 1.3vw, 20px);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    border-radius: var(--radius-sm);
    background: var(--yellow-accent);
    color: var(--blue-deep);
    padding: 12px 16px;
    font-weight: 800;
    transition: transform .2s;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

:focus-visible {
    outline: 3px solid var(--yellow-accent);
    outline-offset: 4px;
}
