.public-editorial-page {
    --editorial-navy: #0d172d;
    --editorial-navy-soft: #17243d;
    --editorial-ink: #121d36;
    --editorial-blue: #a9cdf1;
    --editorial-blue-strong: #6f9dcb;
    --editorial-cream: #f6f1e9;
    --editorial-paper: #fffdf9;
    --editorial-line: rgba(18, 29, 54, 0.16);
    --editorial-yellow: #f6ec36;
    --editorial-orange: #ffae28;
    --editorial-copy: #526079;
    color: var(--editorial-ink);
    background: var(--editorial-paper);
    font-family: 'Readex Pro', sans-serif;
    overflow: clip;
}

.public-editorial-page *,
.public-editorial-page *::before,
.public-editorial-page *::after {
    box-sizing: border-box;
}

.public-editorial-shell {
    width: min(100% - 48px, 1440px);
    margin-inline: auto;
}

.public-editorial-eyebrow {
    display: inline-block;
    color: var(--editorial-blue-strong);
    font-family: 'Fira Code', monospace;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.public-editorial-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: end;
}

.public-editorial-section-heading h2,
.public-editorial-page h1,
.public-editorial-page h2,
.public-editorial-page h3 {
    font-family: 'Krona One', sans-serif;
}

.public-editorial-button {
    display: inline-flex;
    min-height: 52px;
    padding: 0.85rem 1.2rem;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: 1px solid transparent;
    border-radius: 0.55rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.public-editorial-button--accent {
    color: var(--editorial-ink);
    background: var(--editorial-yellow);
}

.public-editorial-button--light {
    color: var(--editorial-ink);
    background: var(--editorial-paper);
    border-color: rgba(255, 255, 255, 0.3);
}

.public-editorial-button:hover,
.public-editorial-button:focus-visible {
    color: var(--editorial-ink);
    text-decoration: none;
    transform: translateY(-2px);
}

.public-editorial-button--accent:hover,
.public-editorial-button--accent:focus-visible {
    background: #fff75c;
}

.public-editorial-text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.6rem;
    color: inherit;
    font-weight: 700;
    text-underline-offset: 0.28rem;
}

.public-editorial-page a:focus-visible {
    outline: 3px solid var(--editorial-orange);
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .public-editorial-shell {
        width: min(100% - 32px, 1440px);
    }

    .public-editorial-section-heading {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .public-editorial-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-editorial-page *,
    .public-editorial-page *::before,
    .public-editorial-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
