:root {
    --ink: #0c1724;
    --ink-soft: #536171;
    --paper: #f6f3ed;
    --paper-deep: #eee9df;
    --navy: #07111f;
    --navy-soft: #101e30;
    --line: rgba(12, 23, 36, 0.14);
    --line-dark: rgba(255, 255, 255, 0.14);
    --coral: #ff6b4a;
    --coral-dark: #a52d1c;
    --mint: #93e4d5;
    --movie-accent: #c7432f;
    --gaming-accent: #315ecb;
    --entertainment-accent: #b12d68;
    --tech-accent: #18705e;
    --world-accent: #93e4d5;
    --feature-accent: #7b4ca4;
    --white: #fffdf9;
    --radius-sm: 0.65rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --shadow: 0 24px 65px rgba(18, 31, 45, 0.14);
    --shadow-soft: 0 12px 35px rgba(18, 31, 45, 0.08);
    --shell: min(1240px, calc(100% - 3rem));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

.icon-sprite {
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0;
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

a:focus-visible {
    border-radius: 0.2rem;
    outline: 3px solid var(--white);
    outline-offset: 4px;
    box-shadow: 0 0 0 7px #174f83;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    transform: translateY(-180%);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    transition: transform 160ms ease;
}

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

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(7, 17, 31, 0.91);
    color: var(--white);
    backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
    display: flex;
    min-height: 5rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.desk-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 24, 40, 0.96);
}

.desk-nav-inner {
    display: flex;
    min-height: 2.8rem;
    align-items: stretch;
    justify-content: center;
}

.desk-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem clamp(0.75rem, 2.2vw, 1.6rem);
    border-bottom: 2px solid transparent;
    color: #b9c5d3;
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.desk-link:hover {
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
}

.desk-link:hover,
.desk-link:focus-visible {
    border-bottom-color: currentColor;
}

.desk-link svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
}

.desk-movies svg { color: #ff876e; }
.desk-gaming svg { color: #82a2ff; }
.desk-entertainment svg { color: #ff86bb; }
.desk-travel svg { color: #65d6c9; }
.desk-tech svg { color: #72d8bd; }
.desk-world svg { color: var(--world-accent); }
.desk-features svg { color: #d2a5f5; }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 2.7rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 0.85rem;
    background: linear-gradient(145deg, #ff8266, var(--coral));
    color: var(--navy);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32), 0 0.45rem 1.2rem rgba(255, 107, 74, 0.18);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.05;
}

.brand small {
    margin-top: 0.26rem;
    color: #adbac9;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.55rem;
    font-size: 0.84rem;
    font-weight: 650;
}

.primary-nav a {
    color: #c8d1dc;
    text-decoration: none;
    transition: color 140ms ease;
}

.primary-nav a:hover {
    color: var(--white);
}

.nav-search {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-search svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.nav-sections {
    position: relative;
}

.nav-sections summary {
    color: #c8d1dc;
    cursor: pointer;
    list-style: none;
    transition: color 140ms ease;
}

.nav-sections summary::-webkit-details-marker {
    display: none;
}

.nav-sections summary::after {
    content: "⌄";
    margin-left: 0.35rem;
    color: #7f90a5;
}

.nav-sections summary:hover,
.nav-sections[open] summary {
    color: var(--white);
}

.nav-dropdown {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.85rem);
    right: 0;
    display: grid;
    width: 12rem;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.8rem;
    background: #101e30;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.28);
}

.nav-dropdown a {
    padding: 0.7rem 0.75rem;
    border-radius: 0.5rem;
}

.nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.primary-nav .nav-cta {
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--white);
}

.reader-name {
    color: #adbac9;
    font-size: 0.78rem;
}

.nav-form {
    margin: 0;
}

.nav-form button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #c8d1dc;
    cursor: pointer;
    font: inherit;
}

.nav-form button:hover {
    color: var(--white);
}

.nav-form button:focus-visible {
    border-radius: 0.2rem;
    outline: 3px solid var(--white);
    outline-offset: 4px;
}

.auth-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 10%, rgb(147 228 213 / 14%), transparent 28rem),
        radial-gradient(circle at 88% 86%, rgb(255 107 74 / 15%), transparent 30rem),
        var(--navy);
}

.auth-shell {
    display: grid;
    width: min(100% - 2rem, 34rem);
    min-height: 100vh;
    margin-inline: auto;
    place-content: center;
    padding-block: 3rem;
}

.auth-brand {
    width: fit-content;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.auth-card {
    padding: clamp(1.6rem, 6vw, 3rem);
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 2rem 6rem rgb(0 0 0 / 28%);
}

.auth-card h1 {
    margin-bottom: 0.7rem;
    font-size: clamp(2.5rem, 10vw, 4rem);
}

.auth-intro,
.auth-switch {
    color: var(--ink-soft);
}

.auth-messages {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border: 1px solid #b9d9d3;
    border-radius: var(--radius-sm);
    background: #edf8f6;
    color: #175b51;
    font-size: 0.82rem;
    font-weight: 700;
}

.auth-messages p {
    margin: 0;
}

.social-auth-form {
    margin-top: 1.6rem;
}

.social-auth-button {
    display: flex;
    width: 100%;
    min-height: 3.15rem;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: 1px solid #aab3bc;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: border-color 140ms ease, background 140ms ease;
}

.social-auth-button:hover {
    border-color: #647382;
    background: #f7f9fb;
}

.social-auth-button:focus-visible {
    outline: 3px solid rgb(23 79 131 / 22%);
    outline-offset: 3px;
}

.google-mark {
    display: grid;
    width: 1.65rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(
        from -45deg,
        #4285f4 0 25%,
        #34a853 0 50%,
        #fbbc05 0 75%,
        #ea4335 0
    );
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 900;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.4rem;
    color: #75808b;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    height: 1px;
    flex: 1;
    background: #d8dde2;
    content: "";
}

.auth-divider + .auth-form {
    margin-top: 1.4rem;
}

.auth-form {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.8rem;
}

.form-field {
    display: grid;
    gap: 0.4rem;
}

.form-field label {
    font-size: 0.78rem;
    font-weight: 800;
}

.form-field input {
    width: 100%;
    min-height: 3rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid #aab3bc;
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.form-field input:focus {
    border-color: #174f83;
    outline: 3px solid rgb(23 79 131 / 18%);
}

.field-help {
    color: var(--ink-soft);
    font-size: 0.72rem;
}

.field-help ul,
.field-errors ul,
.form-errors ul {
    margin: 0.3rem 0 0;
    padding-left: 1.2rem;
}

.field-errors,
.form-errors {
    color: #9c2416;
    font-size: 0.76rem;
    font-weight: 650;
}

.auth-submit {
    min-height: 3.1rem;
    border: 0;
    border-radius: 999px;
    background: var(--coral);
    color: var(--navy);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
}

.auth-submit:hover {
    background: #ff8064;
}

.auth-switch {
    margin: 1.4rem 0 0;
    text-align: center;
    font-size: 0.84rem;
}

.auth-switch a {
    color: var(--coral-dark);
    font-weight: 800;
}

.dashboard-messages,
.account-messages {
    margin-top: 1.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid #b9d9d3;
    border-radius: var(--radius-sm);
    background: #edf8f6;
    color: #175b51;
    font-size: 0.84rem;
    font-weight: 750;
}

.dashboard-messages p,
.account-messages p {
    margin: 0;
}

.story-actions {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.story-actions .story-link,
.feature-actions .feature-link {
    margin: 0;
}

.story-body .story-actions .story-link {
    margin-top: 0;
}

.story-actions form,
.news-save-form,
.article-save-form,
.saved-item form {
    margin: 0;
}

.save-story,
.remove-saved {
    min-height: 2.25rem;
    padding: 0.38rem 0.72rem;
    border: 1px solid #aab3bc;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 850;
}

.save-story:hover,
.save-story.is-saved {
    border-color: var(--coral-dark);
    background: #fff1ed;
    color: var(--coral-dark);
}

.save-story:focus-visible,
.remove-saved:focus-visible {
    outline: 3px solid rgb(23 79 131 / 22%);
    outline-offset: 3px;
}

.news-save-form {
    margin-top: 0.85rem;
}

.save-story-dark {
    border-color: #536276;
    color: var(--mint);
}

.save-story-dark:hover,
.save-story-dark.is-saved {
    border-color: var(--mint);
    background: rgb(147 228 213 / 12%);
    color: var(--mint);
}

.article-save-form {
    margin-top: 1.25rem;
}

.account-page {
    min-height: 100vh;
    background: var(--paper);
}

.account-shell {
    padding-block: clamp(3rem, 7vw, 6rem);
}

.account-hero {
    max-width: 52rem;
}

.account-hero h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.account-hero > p:last-child {
    max-width: 43rem;
    color: var(--ink-soft);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.account-panel {
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.account-panel h2 {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.account-form {
    margin-top: 1.4rem;
}

.connection-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.connection-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.connection-list strong,
.connection-list small {
    display: block;
}

.connection-list small {
    overflow: hidden;
    margin-top: 0.15rem;
    color: var(--ink-soft);
    text-overflow: ellipsis;
}

.connection-mark {
    display: grid;
    width: 2.2rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 900;
}

.google-connection {
    background: #4285f4;
}

.connection-status {
    color: #247567;
    font-size: 0.7rem;
    font-weight: 850;
}

.connection-empty,
.account-note {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.account-note {
    margin: 1.25rem 0 0;
}

.preference-form {
    margin-top: 1.4rem;
}

.preference-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.preference-option {
    display: flex;
    min-height: 3.2rem;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 750;
}

.preference-option:has(input:checked) {
    border-color: #4e9f91;
    background: #edf8f6;
    color: #175b51;
}

.preference-option input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: #247567;
}

.saved-section {
    margin-top: clamp(3rem, 7vw, 6rem);
}

.saved-list {
    display: grid;
    gap: 0.8rem;
}

.saved-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.saved-item h3 {
    margin: 0.55rem 0 0.35rem;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.saved-item h3 a {
    text-decoration: none;
}

.saved-item h3 a:hover {
    text-decoration: underline;
}

.saved-item time {
    color: var(--ink-soft);
    font-size: 0.72rem;
}

.remove-saved {
    border-color: #d2a59c;
    color: #8d2e1e;
}

.remove-saved:hover {
    background: #fff1ed;
}

.account-empty {
    min-height: 14rem;
    background: var(--white);
}

.overview {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.9fr);
    gap: clamp(2.5rem, 5vw, 5.5rem);
    align-items: end;
    overflow: hidden;
    margin-block: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
    padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.5rem, 5vw, 4.75rem) clamp(2.5rem, 5vw, 4rem);
    border: 1px solid rgba(12, 23, 36, 0.09);
    border-radius: clamp(1.4rem, 3vw, 2.4rem);
    background:
        radial-gradient(circle at 92% 9%, rgba(49, 94, 203, 0.2), transparent 29%),
        radial-gradient(circle at 4% 96%, rgba(255, 107, 74, 0.18), transparent 31%),
        linear-gradient(135deg, #fcfaf5 0%, #f3f4f1 52%, #eaf1f3 100%);
    box-shadow: 0 2.5rem 7rem rgba(18, 31, 45, 0.1);
}

.overview::before,
.overview::after {
    position: absolute;
    z-index: 0;
    width: 15rem;
    height: 15rem;
    border: 1px solid rgba(12, 23, 36, 0.07);
    border-radius: 50%;
    content: "";
}

.overview::before {
    top: -8rem;
    right: 8%;
}

.overview::after {
    right: -6rem;
    bottom: -9rem;
}

.overview > * {
    position: relative;
    z-index: 1;
}

.overview-copy {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    max-width: 50rem;
}

.hero-story {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    display: block;
    min-height: 16rem;
    overflow: hidden;
    border: 1px solid rgba(12, 23, 36, 0.1);
    border-radius: 1.25rem;
    background: var(--navy-soft);
    box-shadow: 0 1.5rem 3.5rem rgba(18, 31, 45, 0.18);
    color: var(--white);
    text-decoration: none;
}

.hero-story > img,
.hero-story-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-story > img {
    object-fit: cover;
    transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-story:hover > img {
    transform: scale(1.055);
}

.hero-story-fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #183553, var(--navy));
}

.hero-story-fallback svg {
    width: 4rem;
    height: 4rem;
    fill: none;
    stroke: var(--mint);
    stroke-width: 1.2;
}

.hero-story-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.02) 8%, rgba(7, 17, 31, 0.94) 100%);
}

.hero-story-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 0.35rem;
    padding: 1.4rem;
}

.hero-story-copy small {
    color: var(--mint);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-story-copy strong {
    display: -webkit-box;
    overflow: hidden;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.15;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hero-story-copy > span {
    color: #d8e0e9;
    font-size: 0.68rem;
    font-weight: 700;
}

.eyebrow,
.section-kicker {
    margin: 0 0 0.8rem;
    color: var(--coral-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pulse {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 0.35rem rgba(255, 107, 74, 0.14);
    animation: live-pulse 2s ease-out infinite;
}

@keyframes live-pulse {
    0%, 55%, 100% { box-shadow: 0 0 0 0.35rem rgba(255, 107, 74, 0.12); }
    25% { box-shadow: 0 0 0 0.7rem rgba(255, 107, 74, 0); }
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 48rem;
    margin-bottom: 1.5rem;
    font-size: clamp(3.3rem, 6.7vw, 6.5rem);
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.15rem, 4vw, 3.65rem);
}

.lede {
    max-width: 44rem;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.stats {
    display: grid;
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.stat-card {
    position: relative;
    display: grid;
    min-height: 7.4rem;
    align-content: center;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(12, 23, 36, 0.1);
    border-radius: 0.9rem;
    background: rgba(255, 253, 249, 0.8);
    box-shadow: 0 0.5rem 1.4rem rgba(18, 31, 45, 0.045);
    backdrop-filter: blur(12px);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.stat-card > svg {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    opacity: 0.55;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.stat-card:hover {
    transform: translateY(-0.2rem);
    border-color: currentColor;
    box-shadow: 0 0.8rem 2rem rgba(18, 31, 45, 0.09);
}

.stat-card > span {
    color: var(--ink-soft);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.stat-card strong {
    margin-top: 0.2rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1;
}

.stat-card small {
    margin-top: 0.65rem;
    color: currentColor;
    font-size: 0.65rem;
    font-weight: 750;
}

.stat-movies { color: var(--movie-accent); }
.stat-gaming { color: var(--gaming-accent); }
.stat-entertainment { color: var(--entertainment-accent); }
.stat-travel { color: #0b6b73; }
.stat-tech { color: var(--tech-accent); }
.stat-world { color: #28756b; }
.stat-features { color: var(--feature-accent); }

.source-disclosure {
    grid-column: 1 / -1;
    max-width: 54rem;
    margin: -1.8rem 0 0;
    padding: 1rem 1.15rem;
    border-left: 3px solid var(--coral);
    background: rgb(255 253 249 / 76%);
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.trust-page {
    min-height: 68vh;
    padding-block: clamp(3.5rem, 8vw, 7rem);
}

.trust-hero {
    max-width: 56rem;
}

.trust-hero h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(3rem, 7vw, 6rem);
}

.trust-hero > p:last-child {
    max-width: 45rem;
    color: var(--ink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.trust-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 17rem);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
    margin-top: clamp(3rem, 7vw, 5.5rem);
}

.trust-content {
    max-width: 48rem;
}

.trust-content section + section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.trust-content h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.trust-content p {
    color: #3f4d5b;
}

.trust-nav {
    position: sticky;
    top: 7rem;
    display: grid;
    gap: 0.7rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.trust-nav strong {
    margin-bottom: 0.35rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.trust-nav a {
    color: var(--ink-soft);
    font-size: 0.8rem;
    font-weight: 750;
}

.launch-notice {
    margin-top: 2.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid #e5b8ae;
    border-radius: var(--radius-sm);
    background: #fff1ed;
    color: #7c2b1e;
    font-size: 0.82rem;
}

.contact-panel .button {
    display: inline-flex;
    text-decoration: none;
}

.content-section {
    position: relative;
    padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: clamp(1rem, 2.5vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--line);
}

.section-index {
    display: grid;
    width: 2.7rem;
    aspect-ratio: 1;
    place-items: center;
    margin-top: 0.15rem;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--coral-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.78rem;
}

.section-heading-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 25rem);
    gap: 1rem 3rem;
    align-items: end;
}

.section-heading-copy .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -0.3rem;
}

.section-deck {
    max-width: 25rem;
    margin: 0 0 0.2rem;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.65;
}

.text-link,
.story-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.45rem;
    color: var(--coral-dark);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link span,
.story-link span {
    transition: transform 140ms ease;
}

.text-link:hover span,
.story-link:hover span {
    transform: translateX(0.2rem);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.35rem;
}

.story-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    transition: transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.story-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--movie-accent);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms ease;
}

.story-card:hover {
    transform: translateY(-0.45rem);
    box-shadow: var(--shadow);
}

.story-card:hover::after {
    transform: scaleX(1);
}

.gaming-card::after { background: var(--gaming-accent); }
.tech-card::after { background: var(--tech-accent); }

.feed-card {
    grid-column: span 4;
}

.feed-card:nth-child(1),
.feed-card:nth-child(2) {
    grid-column: span 6;
}

.feed-card:nth-child(1) .story-image,
.feed-card:nth-child(2) .story-image {
    aspect-ratio: 16 / 8.5;
}

.story-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--navy-soft);
}

.story-image img,
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.story-card:hover .story-image img,
.news-item:hover .news-thumb img {
    transform: scale(1.055);
}

.image-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background:
        radial-gradient(circle at 25% 20%, rgba(147, 228, 213, 0.22), transparent 25%),
        linear-gradient(135deg, var(--navy-soft), #183553);
}

.image-fallback span {
    display: grid;
    width: 4rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.gaming-section {
    border-block: 1px solid rgb(52 71 95 / 12%);
    background:
        radial-gradient(circle at 88% 12%, rgb(73 125 255 / 12%), transparent 28rem),
        #eef1f6;
}

.entertainment-section {
    border-block: 1px solid rgb(177 45 104 / 13%);
    background:
        radial-gradient(circle at 10% 12%, rgb(255 134 187 / 13%), transparent 28rem),
        linear-gradient(135deg, #f8edf2, #f5f1eb);
}

.entertainment-section .section-kicker,
.entertainment-section .story-link,
.entertainment-section .section-index {
    color: var(--entertainment-accent);
}

.entertainment-section .section-heading {
    border-bottom-color: rgb(177 45 104 / 22%);
}

.entertainment-card::after { background: var(--entertainment-accent); }

.source-entertainment {
    background: #f8dce8;
    color: #8d2452;
}

.entertainment-fallback {
    background:
        radial-gradient(circle at 76% 18%, rgb(255 134 187 / 30%), transparent 28%),
        linear-gradient(135deg, #331426, #6f2147);
}

.gaming-section .section-index { color: var(--gaming-accent); }

.gaming-section .section-kicker,
.gaming-section .story-link {
    color: var(--gaming-accent);
}

.gaming-section .section-heading {
    border-bottom-color: rgba(49, 94, 203, 0.22);
}

.source-gaming {
    background: #dde6ff;
    color: #214baf;
}

.game-fallback {
    background:
        radial-gradient(circle at 72% 24%, rgb(126 156 255 / 28%), transparent 28%),
        linear-gradient(135deg, #10172a, #233e7a);
}

.gaming-empty {
    background: rgb(255 255 255 / 72%);
}

.tech-science-section {
    border-block: 1px solid rgb(12 23 36 / 12%);
    background: linear-gradient(135deg, #e9f7f2, #f4f1ff);
}

.tech-science-section .section-index { color: var(--tech-accent); }

.tech-science-section .section-kicker,
.tech-science-section .story-link {
    color: var(--tech-accent);
}

.tech-science-section .section-heading {
    border-bottom-color: rgba(24, 112, 94, 0.22);
}

.source-tech {
    background: #d9f2e9;
    color: #176353;
}

.tech-fallback {
    background: radial-gradient(circle at 25% 20%, rgb(147 228 213 / 28%), transparent 28%), linear-gradient(135deg, #0b2530, #263769);
}

.story-body {
    display: flex;
    min-height: 18rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.9rem;
    color: #6d7885;
    font-size: 0.72rem;
    font-weight: 650;
}

.source-badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.65rem;
    padding-inline: 0.62rem;
    border-radius: 999px;
    background: #fce2da;
    color: #9c321f;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.story-body h3,
.news-copy h3,
.feature-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: -0.018em;
}

.story-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.38rem;
    line-height: 1.18;
}

.story-body h3 a,
.news-copy h3 a,
.feature-card h3 a {
    text-decoration: none;
}

.story-body h3 a:hover,
.news-copy h3 a:hover,
.feature-card h3 a:hover {
    text-decoration: underline;
}

.story-body p {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.story-body .story-link {
    margin-top: auto;
}

.section-tint {
    background: var(--navy);
    color: var(--white);
}

.section-tint .section-heading {
    border-color: var(--line-dark);
}

.section-tint .section-kicker,
.section-tint .text-link {
    color: var(--mint);
}

.section-tint .section-index { color: var(--mint); }
.section-tint .section-deck { color: #aebac8; }

.news-list {
    display: grid;
}

.news-item {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) minmax(8rem, 13rem);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    padding: 1.55rem 0;
    border-bottom: 1px solid var(--line-dark);
}

.news-item:first-child {
    margin-bottom: 0.6rem;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(147, 228, 213, 0.035));
}

.news-item:first-child .news-copy h3 {
    font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.news-item:first-child .news-thumb {
    aspect-ratio: 4 / 3;
}

.news-index {
    align-self: start;
    padding-top: 0.25rem;
    color: #748398;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
}

.news-copy .story-meta {
    margin-bottom: 0.55rem;
    color: #9fabb9;
}

.source-news {
    background: rgba(147, 228, 213, 0.12);
    color: var(--mint);
}

.news-copy h3 {
    max-width: 50rem;
    margin-bottom: 0.5rem;
    font-size: clamp(1.25rem, 2vw, 1.72rem);
    line-height: 1.18;
}

.news-copy p {
    max-width: 48rem;
    margin-bottom: 0;
    color: #9fabb9;
    font-size: 0.88rem;
}

.news-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 8 / 5;
    border-radius: var(--radius-sm);
    background: var(--navy-soft);
}

.news-arrow {
    display: grid;
    width: 2.7rem;
    aspect-ratio: 1;
    place-self: center end;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    color: var(--mint);
    text-decoration: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    position: relative;
    display: flex;
    min-height: 21rem;
    flex-direction: column;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0, rgba(123, 76, 164, 0.08), transparent 16rem),
        #f3eadf;
    box-shadow: 0 1rem 2.8rem rgba(49, 35, 28, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:first-child {
    grid-column: 1 / -1;
    min-height: 23rem;
    background:
        radial-gradient(circle at 92% 8%, rgba(123, 76, 164, 0.16), transparent 20rem),
        radial-gradient(circle at 4% 100%, rgba(255, 107, 74, 0.12), transparent 18rem),
        #ecdfcf;
}

.feature-card:first-child h3 {
    max-width: 48rem;
    font-size: clamp(2.2rem, 4vw, 3.45rem);
}

.feature-card:hover {
    transform: translateY(-0.2rem);
    box-shadow: var(--shadow);
}

#features .section-kicker,
#features .story-link {
    color: var(--feature-accent);
}

#features .section-index { color: var(--feature-accent); }

.feature-number {
    position: absolute;
    top: -1.1rem;
    right: 1rem;
    color: rgba(12, 23, 36, 0.055);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 8rem;
    line-height: 1;
}

.source-feature {
    background: #dcefeb;
    color: #17655b;
}

.feature-card h3 {
    position: relative;
    max-width: 31rem;
    margin: 0.6rem 0 1rem;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.feature-card > p {
    position: relative;
    max-width: 37rem;
    color: var(--ink-soft);
}

.feature-link {
    position: relative;
    margin: 0.4rem 0 1.2rem;
}

.feature-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
    color: #6b7581;
    font-size: 0.75rem;
    font-weight: 700;
}

.closing-cta {
    padding-block: clamp(1rem, 4vw, 3.5rem);
    background: var(--paper);
}

.closing-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: clamp(1.5rem, 3vw, 2.5rem);
    background:
        radial-gradient(circle at 90% 20%, rgba(147, 228, 213, 0.36), transparent 19rem),
        var(--coral);
    color: var(--navy);
}

.closing-cta .section-kicker {
    color: #681f13;
}

.closing-cta h2 {
    max-width: 47rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.closing-cta p:last-child {
    max-width: 42rem;
    margin: 1rem 0 0;
}

.closing-cta-button {
    display: inline-flex;
    min-height: 3.4rem;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 0.8rem 2rem rgba(7, 17, 31, 0.2);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.closing-cta-button:hover {
    transform: translateY(-0.18rem);
    box-shadow: 0 1.1rem 2.5rem rgba(7, 17, 31, 0.26);
}

.closing-cta-button span {
    transition: transform 150ms ease;
}

.closing-cta-button:hover span {
    transform: translateX(0.22rem);
}

.reveal-item {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: none;
}

.empty-state {
    display: grid;
    min-height: 18rem;
    place-items: center;
    align-content: center;
    padding: 2rem;
    border: 1px dashed rgba(12, 23, 36, 0.25);
    border-radius: var(--radius-lg);
    text-align: center;
}

.empty-state > span {
    color: var(--coral-dark);
    font-size: 2rem;
}

.empty-state h3 {
    margin: 0.7rem 0 0.3rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
}

.empty-state p {
    max-width: 29rem;
    margin-bottom: 0;
    color: var(--ink-soft);
}

.empty-state-light {
    border-color: var(--line-dark);
}

.empty-state-light p {
    color: #9fabb9;
}

.api-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
    gap: 3rem;
    align-items: center;
    margin-block: clamp(2rem, 6vw, 5rem) clamp(5rem, 9vw, 8rem);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-lg);
    background: var(--coral);
    color: var(--navy);
}

.api-banner .section-kicker {
    color: #4a140c;
}

.api-banner h2 {
    max-width: 43rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.api-banner p:last-child {
    max-width: 42rem;
    margin: 1rem 0 0;
    color: #421711;
}

.api-banner a:focus-visible {
    outline-color: var(--white);
    box-shadow: 0 0 0 7px var(--navy);
}

.api-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
}

.button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(7, 17, 31, 0.24);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
}

.button-primary {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.site-footer {
    padding-block: 3.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy);
    color: var(--white);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(14rem, 0.8fr) minmax(20rem, 1.2fr);
    gap: 2.5rem 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem 1.5rem;
}

.article-shell {
    max-width: 56rem;
    padding-block: clamp(3rem, 8vw, 7rem);
}

.article-back {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    margin-bottom: clamp(3rem, 7vw, 6rem);
    color: var(--coral-dark);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.article-header h1 {
    max-width: 54rem;
    margin-bottom: 1.5rem;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.article-deck {
    max-width: 46rem;
    color: var(--ink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    line-height: 1.45;
}

.article-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin-top: 2rem;
    padding-block: 1rem;
    border-block: 1px solid var(--line);
    color: #5c6774;
    font-size: 0.78rem;
    font-weight: 700;
}

.article-image {
    overflow: hidden;
    margin: 2.5rem 0;
    border-radius: var(--radius-lg);
}

.article-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-body {
    max-width: 46rem;
    margin: 3rem auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.08rem, 2vw, 1.24rem);
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 1.5em;
}

.article-takeaways,
.article-context,
.article-sources,
.article-accountability {
    max-width: 46rem;
    margin: 2.5rem auto 0;
    border-radius: var(--radius-lg);
}

.article-takeaways {
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid #b9d9d3;
    background: #edf8f6;
}

.article-takeaways h2,
.article-context h2,
.article-sources h2,
.article-accountability h2 {
    margin: 0.25rem 0 1rem;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.article-takeaways ul {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding-left: 1.2rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

.article-context,
.article-sources {
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.article-context > div {
    color: var(--ink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.75;
}

.article-sources ol {
    display: grid;
    gap: 1rem;
    padding-left: 1.25rem;
}

.article-sources li {
    padding-left: 0.35rem;
}

.article-sources a {
    color: var(--navy);
    font-weight: 800;
}

.article-sources li span {
    display: block;
    margin-top: 0.2rem;
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.article-accountability {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid #efd5ac;
    background: #fff8e8;
}

.article-accountability h2 {
    font-size: 1.1rem;
}

.article-accountability p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

.article-taxonomy {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    max-width: 46rem;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.article-taxonomy span {
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: var(--paper-deep);
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 750;
}

.footer-inner strong {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.footer-inner p {
    margin: 0.3rem 0 0;
    color: #93a2b5;
    font-size: 0.82rem;
}

.footer-links {
    color: #c7d0dc;
    font-size: 0.78rem;
    font-weight: 700;
}

.footer-links a {
    color: inherit;
    text-underline-offset: 0.25rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-legal {
    grid-column: 1 / -1;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.staff-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
    align-items: center;
    margin-block: 1rem 4rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 750;
}

.staff-tools span {
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.staff-tools a {
    color: var(--navy);
}

@media (max-width: 900px) {
    :root {
        --shell: min(100% - 2rem, 46rem);
    }

    .primary-nav > a:not(.nav-cta, .nav-account, .nav-search) {
        display: none;
    }

    .overview,
    .api-banner {
        grid-template-columns: 1fr;
    }

    .overview {
        gap: 2.5rem;
    }

    .section-heading-copy {
        grid-template-columns: 1fr;
    }

    .section-heading-copy .section-kicker {
        grid-column: 1;
    }

    .overview-copy,
    .hero-story,
    .stats {
        grid-column: 1;
        grid-row: auto;
    }

    .hero-story {
        min-height: 18rem;
    }

    .feed-card,
    .feed-card:nth-child(1),
    .feed-card:nth-child(2) {
        grid-column: span 6;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .trust-layout {
        grid-template-columns: 1fr;
    }

    .trust-nav {
        position: static;
        grid-row: 1;
    }

    .api-actions {
        justify-content: flex-start;
    }

    .closing-cta-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .closing-cta-button {
        justify-self: start;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-legal {
        grid-column: 1;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: calc(100% - 1.35rem);
    }

    .site-header {
        position: relative;
    }

    .header-inner {
        min-height: 4.5rem;
    }

    .brand small {
        display: none;
    }

    .brand-mark {
        width: 2.35rem;
    }

    .primary-nav .nav-cta {
        padding: 0.55rem 0.7rem;
        font-size: 0.75rem;
    }

    .primary-nav {
        gap: 0.85rem;
    }

    .nav-search span {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .desk-nav-inner {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .desk-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .desk-link {
        flex: 0 0 auto;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem 1.2rem;
    }

    .overview {
        width: calc(100% - 1rem);
        padding: 3rem 1.2rem 2rem;
    }

    .hero-story {
        min-height: 13rem;
    }

    .source-disclosure {
        margin-top: -1rem;
    }

    h1 {
        font-size: clamp(2.75rem, 16vw, 4.4rem);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        min-height: 6.7rem;
        padding: 0.8rem;
    }

    .section-heading {
        grid-template-columns: 2.3rem minmax(0, 1fr);
        gap: 0.8rem;
    }

    .section-index {
        width: 2.3rem;
    }

    .section-deck {
        font-size: 0.82rem;
    }

    .feed-card,
    .feed-card:nth-child(1),
    .feed-card:nth-child(2) {
        grid-column: 1 / -1;
    }

    .news-item {
        grid-template-columns: 2rem minmax(0, 1fr);
    }

    .news-thumb,
    .news-arrow {
        display: none;
    }

    .feature-card {
        min-height: 18rem;
    }

    .feature-card:first-child {
        min-height: 20rem;
    }

    .reader-name {
        display: none;
    }

    .story-actions,
    .saved-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .saved-item form,
    .remove-saved {
        width: 100%;
    }

    .connection-list li {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .connection-status {
        grid-column: 2;
    }

    .api-banner {
        gap: 2rem;
        margin-inline: 0;
        width: 100%;
        border-radius: 0;
    }

    .button {
        flex: 1 1 8rem;
    }

    .footer-inner,
    .footer-links {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-inner {
        gap: 1.6rem;
    }

    .footer-links {
        gap: 0.7rem;
    }

    .closing-cta {
        padding-block: 0 2rem;
    }

    .closing-cta-inner {
        width: calc(100% - 1rem);
        padding: 2rem 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

.feed-status {
    border-left: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-left: 0.45rem;
    padding-left: 0.65rem;
    text-transform: none;
}

.feed-updated {
    color: #748192;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.story-search {
    display: flex;
    gap: 0.7rem;
}

.story-search-home {
    grid-column: 1 / -1;
    width: min(100%, 46rem);
    margin-top: 0.4rem;
}

.story-search input,
.story-search select {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid #aeb8c3;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.story-search button {
    flex: 0 0 auto;
    min-height: 3.25rem;
    padding: 0.75rem 1.2rem;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--coral);
    color: var(--navy);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
}

.search-shell {
    min-height: 75vh;
    padding-block: clamp(3rem, 7vw, 6rem);
}

.search-hero h1 {
    max-width: 54rem;
    margin-bottom: 2rem;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.search-controls {
    display: grid;
    grid-template-columns: minmax(15rem, 2fr) minmax(10rem, 1fr) minmax(11rem, 1fr) auto;
    align-items: end;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
}

.search-controls label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.search-summary,
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-block: 2rem;
}

.search-summary p {
    margin: 0;
    color: var(--ink-soft);
}

.search-summary a,
.pagination a {
    color: var(--coral-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.search-result-card {
    display: grid;
    grid-template-columns: minmax(9rem, 38%) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.search-result-image {
    min-height: 100%;
    background: var(--navy-soft);
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-copy {
    display: flex;
    min-height: 16rem;
    flex-direction: column;
    padding: 1.2rem;
}

.search-result-copy h2 {
    margin-bottom: 0.6rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    line-height: 1.18;
}

.search-result-copy h2 a {
    text-decoration: none;
}

.search-result-copy p {
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.search-result-copy .story-actions {
    margin-top: auto;
}

.search-empty {
    margin-top: 2rem;
}

.travel-section {
    border-block: 1px solid rgb(11 107 115 / 14%);
    background:
        radial-gradient(circle at 88% 18%, rgb(101 214 201 / 22%), transparent 27rem),
        linear-gradient(135deg, #e9f7f4 0%, #f8fbf9 70%);
}

.travel-section .section-index,
.travel-section .section-kicker,
.travel-section .story-link { color: #0b6b73; }

.travel-section .section-heading { border-bottom-color: rgb(11 107 115 / 22%); }

.travel-card { border-color: rgba(11, 107, 115, .18); }
.travel-card::after { background: #0b6b73; }
.source-travel { color: #0b6b73; background: #d7f1ec; }
.travel-fallback { background: linear-gradient(135deg, #0b6b73, #65d6c9); color: #fff; }

.travel-featured {
    display: grid;
    grid-column: 1 / -1 !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
    min-height: 28rem;
    background: #fffefa;
}

.travel-editorial-feature { margin-bottom: 1.35rem; }

.desk-archive-link {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: .55rem;
    margin: 2.25rem 0 0 auto;
    padding: .8rem 1rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: var(--navy);
    font-size: .76rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.desk-archive-link:hover {
    transform: translateX(.2rem);
    background: var(--navy);
    color: var(--white);
}

.desk-archive-link-light { color: var(--white); }

.desk-archive-link-light:hover {
    background: var(--white);
    color: var(--navy);
}

.travel-featured .story-image {
    height: 100%;
    aspect-ratio: auto !important;
}

.travel-featured .story-body {
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3.25rem);
}

.travel-featured h3 { font-size: clamp(1.8rem, 3.2vw, 3rem); }

.travel-daily-label {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin: 0 0 1rem !important;
    color: #0b6b73 !important;
    font-size: .68rem !important;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.travel-daily-label svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

@media (max-width: 900px) {
    .travel-featured {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .travel-featured .story-image {
        aspect-ratio: 16 / 9 !important;
    }

    .search-controls {
        grid-template-columns: 1fr 1fr;
    }

    .search-query,
    .search-controls button {
        grid-column: 1 / -1;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .story-search-home,
    .search-controls,
    .search-result-card {
        grid-template-columns: 1fr;
    }

    .story-search-home {
        display: grid;
    }

    .search-result-image {
        aspect-ratio: 16 / 9;
    }

    .preference-options {
        grid-template-columns: 1fr;
    }
}
