:root {
    --ink: #162b3e;
    --ink-soft: #5f7182;
    --navy: #173b5e;
    --navy-deep: #102f4c;
    --sky: #eaf2f8;
    --page: #f2f5f7;
    --paper: #ffffff;
    --line: #dce4ea;
    --red: #d8313f;
    --shadow: 0 12px 30px rgba(17, 47, 76, 0.08);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { color-scheme: light; }

body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.10), transparent 28%),
        linear-gradient(115deg, var(--navy-deep), var(--navy));
    color: #fff;
    border-bottom: 3px solid #79a7c8;
    box-shadow: 0 4px 16px rgba(16, 47, 76, .16);
}

.header-inner {
    width: min(1500px, calc(100% - 40px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    text-decoration: none;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 50% 50% 50% 12px;
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 26px;
    font-style: italic;
    line-height: 1;
    transform: rotate(-4deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions p {
    margin: 0;
    color: #d7e4ee;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .9rem;
    font-style: italic;
}

.page-shell {
    width: min(1500px, calc(100% - 40px));
    margin: 34px auto 50px;
    display: grid;
    grid-template-columns: minmax(470px, 1.5fr) minmax(310px, .92fr) minmax(280px, .78fr);
    gap: 26px;
    align-items: start;
}

.section-heading,
.latest-heading,
.calendar-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.section-heading {
    height: 80px;
    min-height: 80px;
    padding: 0 4px 13px;
    border-bottom: 2px solid var(--navy);
}

.eyebrow {
    display: block;
    margin-bottom: 2px;
    color: #6e8294;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.12; }
h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
h2 { font-size: 1.45rem; }

.updated {
    padding-bottom: 5px;
    color: var(--ink-soft);
    font-size: .78rem;
}

.feed-controls {
    padding: 11px 3px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--page);
}

.category-filters {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-button,
.my-sources-toggle {
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid #c8d5df;
    border-radius: 999px;
    background: #fff;
    color: #536b7d;
    font: inherit;
    font-size: .72rem;
    font-weight: 750;
    cursor: pointer;
}

.filter-button:hover,
.my-sources-toggle:hover { border-color: #7f9eb5; color: var(--navy); }

.filter-button.is-active,
.my-sources-toggle.is-active {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

.filter-button:focus-visible,
.my-sources-toggle:focus-visible,
.favorite-toggle:focus-visible,
.share-button:focus-visible {
    outline: 3px solid #e8b448;
    outline-offset: 2px;
}

.my-sources-toggle { flex: 0 0 auto; }
.my-sources-toggle span { margin-right: 4px; color: #d89b1c; }
.my-sources-toggle.is-active span { color: #ffe08a; }

.filter-empty {
    margin: 11px 3px 0;
    padding: 13px 14px;
    border: 1px solid #d5e0e8;
    border-radius: 5px;
    background: #fff;
    color: var(--ink-soft);
    font-size: .8rem;
}

.feed-list { padding-top: 11px; }

.foreign-accordion-section {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 2px solid #5f7f91;
}

.foreign-accordion-heading { padding: 0 4px 12px; }
.foreign-accordion-heading h2 { color: var(--navy-deep); font-size: 1.55rem; }
.foreign-accordion-heading p {
    margin: 5px 0 0;
    color: var(--ink-soft);
    font-size: .78rem;
}
.foreign-accordion-list { padding-top: 2px; }
.foreign-accordion-card { border-left-color: var(--feed-stripe, #5f7f91); }
.foreign-card-header { grid-template-columns: minmax(0, 1fr) 45px; }

.feed-card {
    --feed-accent: var(--navy);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--feed-stripe, #2b6f9c);
    border-radius: 5px;
    box-shadow: 0 3px 12px rgba(17, 47, 76, 0.035);
}

.feed-card-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 45px;
    align-items: stretch;
}

.feed-toggle {
    width: 100%;
    min-height: 74px;
    padding: 10px 17px 10px 14px;
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 13px;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.favorite-toggle {
    border: 0;
    border-left: 1px solid #edf1f4;
    background: transparent;
    color: #8393a0;
    font-size: 1.28rem;
    cursor: pointer;
}

.favorite-toggle:hover { background: #f9fbfc; color: #c4860b; }
.favorite-toggle.is-favorite { color: #c4860b; }

.feed-toggle:hover { background: #f9fbfc; }

.feed-toggle:focus-visible,
.source-link:focus-visible,
.article-list a:focus-visible,
.visual-card:focus-visible,
.brand:focus-visible {
    outline: 3px solid #e8b448;
    outline-offset: 2px;
}

.source-mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--feed-accent) 11%, white);
    color: var(--feed-accent);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.source-copy { min-width: 0; }
.source-copy strong { display: block; font-family: Georgia, serif; font-size: 1.15rem; }
.source-copy small { display: block; margin-top: 2px; color: var(--ink-soft); font-size: .76rem; }

.chevron {
    width: 9px;
    height: 9px;
    border-right: 2px solid #6c7b88;
    border-bottom: 2px solid #6c7b88;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .18s ease;
}

.feed-toggle[aria-expanded="true"] .chevron { transform: rotate(225deg) translate(-2px, -1px); }

.feed-panel { padding: 0 18px 17px 70px; border-top: 1px solid #edf1f4; }
.feed-panel[hidden] { display: none; }

.article-list { margin: 0; padding: 7px 0 1px; list-style: none; }
.article-list li { border-bottom: 1px solid #edf1f4; }
.article-list li:last-child { border-bottom: 0; }
.article-row { display: flex; align-items: center; gap: 5px; }
.article-list a {
    min-width: 0;
    flex: 1 1 auto;
    padding: 11px 2px;
    display: block;
    text-decoration: none;
}
.article-list a.has-thumbnail {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}
.article-thumbnail {
    width: 76px;
    height: 54px;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    background: var(--sky);
}
.article-copy {
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}
.article-list a:hover .article-title { color: var(--feed-accent); text-decoration: underline; text-underline-offset: 3px; }
.article-title { font-family: Georgia, serif; font-size: .97rem; font-weight: 700; line-height: 1.32; }
.article-list time { flex: 0 0 auto; color: #84919c; font-size: .69rem; white-space: nowrap; }
.article-details { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; }
.new-badge {
    padding: 2px 5px;
    border-radius: 3px;
    background: #d8313f;
    color: #fff;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.share-button {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: #708494;
    font: inherit;
    font-size: .92rem;
    cursor: pointer;
}
.share-button:hover { border-color: #c7d5df; background: #f2f7fa; color: var(--navy); }
.share-button.is-copied { border-color: #7aa783; background: #edf7ef; color: #286338; }

.source-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--feed-accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}
.source-link::after { content: "→"; margin-left: 6px; }
.feed-empty { margin: 14px 0 0; color: var(--ink-soft); font-size: .86rem; }

.sidebar { display: contents; }

.calendar-card {
    order: 2;
    margin-top: 80px;
    padding: 23px 24px 21px;
    background: var(--paper);
    border-top: 4px solid var(--navy);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.calendar-heading { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.calendar-heading h2 { font-size: 1.55rem; color: var(--navy-deep); }

.calendar-grid { width: 100%; margin-top: 13px; border-collapse: separate; border-spacing: 3px; table-layout: fixed; }
.calendar-grid th { height: 25px; color: #7a8c9c; font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.calendar-grid th:nth-last-child(-n+2) { color: #b16a70; }
.calendar-grid td { height: 37px; padding: 0; text-align: center; font-size: .82rem; }
.calendar-grid td span { width: 31px; height: 31px; display: inline-grid; place-items: center; border-radius: 50%; }
.calendar-grid td.is-today span {
    background: var(--red);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 11px rgba(216, 49, 63, .28);
}

.today-details {
    margin-top: 15px;
    padding: 13px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--line);
}
.detail-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sky);
    color: var(--navy);
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
}
.today-details span { display: block; color: var(--ink-soft); font-size: .7rem; }
.today-details strong { display: block; font-family: Georgia, serif; font-size: 1rem; }
.holiday-note { margin-top: 10px; padding: 9px 11px; display: flex; gap: 8px; border-radius: 4px; background: #fdf4e8; color: #8c5628; font-size: .76rem; }

.latest-section { min-width: 0; order: 1; }
.latest-heading { height: 80px; min-height: 80px; padding: 0 3px 11px; border-bottom: 2px solid var(--navy); }
.latest-heading h2 { font-size: 1.55rem; }
.live-dot { width: 9px; height: 9px; margin-bottom: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(216,49,63,.12); }

.visual-news { display: grid; gap: 12px; padding-top: 14px; }
.visual-card-shell { position: relative; min-width: 0; }
.visual-card {
    position: relative;
    min-height: 134px;
    overflow: hidden;
    display: block;
    border-radius: 5px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 83%, #142f47), #142f47);
    box-shadow: 0 8px 19px rgba(16,47,76,.12);
    text-decoration: none;
    isolation: isolate;
}
.visual-share-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    border-color: rgba(255,255,255,.45);
    background: rgba(8,25,40,.58);
    color: #fff;
    backdrop-filter: blur(5px);
}
.visual-share-button:hover { border-color: #fff; background: rgba(8,25,40,.82); color: #fff; }
.visual-card-main { min-height: 235px; }
.visual-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; z-index: -2; }
.visual-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,25,40,.92) 0%, rgba(8,25,40,.55) 45%, rgba(8,25,40,.06) 82%); z-index: -1; }
.visual-card:hover img { transform: scale(1.035); }
.visual-overlay { position: absolute; inset: auto 0 0; padding: 42px 16px 15px; color: #fff; }
.visual-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; font-size: .67rem; }
.visual-meta strong { color: #e6f1f8; letter-spacing: .08em; text-transform: uppercase; }
.visual-meta time { color: #cfdae2; }
.visual-title { display: block; font-family: Georgia, serif; font-size: 1.02rem; font-weight: 700; line-height: 1.25; text-shadow: 0 1px 2px rgba(0,0,0,.35); }
.visual-card-main .visual-title { font-size: clamp(1.2rem, 2.2vw, 1.48rem); }
.placeholder-letter { position: absolute; top: -17px; right: 12px; color: rgba(255,255,255,.10); font-family: Georgia, serif; font-size: 9rem; font-weight: 700; line-height: 1; }

.latest-empty { margin-top: 14px; padding: 26px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 5px; }
.latest-empty strong, .latest-empty span { display: block; }
.latest-empty span { margin-top: 3px; color: var(--ink-soft); font-size: .83rem; }

.foreign-cta {
    width: 100%;
    min-height: 72px;
    margin: 16px 0 6px;
    padding: 13px 14px 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid #bdced9;
    border-left: 4px solid #5f7f91;
    border-radius: 5px;
    background: linear-gradient(120deg, #ffffff, #e7eff4);
    box-shadow: 0 7px 18px rgba(16,47,76,.09);
    color: var(--navy-deep);
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.foreign-cta-copy { min-width: 0; }
.foreign-cta-copy small {
    display: block;
    margin-bottom: 2px;
    color: #647d8f;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.foreign-cta-copy strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.02rem; }
.foreign-cta-arrow {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 1.15rem;
}
.foreign-cta:hover {
    border-color: #7f9aaa;
    box-shadow: 0 10px 23px rgba(16,47,76,.14);
    transform: translateY(-1px);
}
.foreign-cta:focus-visible { outline: 3px solid #e8b448; outline-offset: 3px; }

.foreign-section {
    width: min(1500px, calc(100% - 40px));
    margin: 0 auto 60px;
    scroll-margin-top: 92px;
}

.foreign-section-heading {
    min-height: 82px;
    padding: 0 4px 14px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 2px solid var(--navy);
}
.foreign-section-heading h2 { font-size: clamp(1.75rem, 3vw, 2.2rem); }
.foreign-section-heading p {
    max-width: 560px;
    margin: 0 0 4px;
    color: var(--ink-soft);
    font-size: .78rem;
    text-align: right;
}
.foreign-heading-actions { max-width: 650px; text-align: right; }
.foreign-my-sources-toggle {
    margin-top: 9px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
}
.foreign-back-link {
    display: none;
    margin: 9px 0 0 12px;
    color: var(--navy);
    font-size: .73rem;
    font-weight: 800;
    text-decoration: none;
}
.foreign-back-link span { margin-left: 6px; font-size: 1rem; line-height: 1; }
.foreign-back-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.foreign-back-link:focus-visible { outline: 3px solid #e8b448; outline-offset: 3px; }

.foreign-grid {
    padding-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.foreign-card {
    --feed-accent: var(--navy);
    min-width: 0;
    padding: 17px 16px 15px;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 4px solid var(--feed-stripe, var(--feed-accent));
    border-radius: 5px;
    box-shadow: var(--shadow);
}
.foreign-card-heading {
    padding-bottom: 13px;
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid var(--line);
}
.foreign-card-copy { min-width: 0; }
.foreign-card-heading .source-mark { width: 39px; height: 39px; font-size: 1.08rem; }
.foreign-card-heading h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; line-height: 1.2; }
.foreign-card-copy > span { display: block; margin-top: 2px; color: var(--ink-soft); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.foreign-card-favorite {
    width: 36px;
    height: 36px;
    border-left: 0;
    border-radius: 50%;
}
.foreign-card-favorite:hover { background: #f2f7fa; }

.foreign-article-list { margin: 0; padding: 4px 0 2px; list-style: none; }
.foreign-article-list li { border-bottom: 1px solid #edf1f4; }
.foreign-article-list li:last-child { border-bottom: 0; }
.foreign-article-list .article-row { align-items: center; }
.foreign-article-link {
    min-width: 0;
    flex: 1 1 auto;
    padding: 10px 0;
    display: block;
    text-decoration: none;
}
.foreign-article-link.has-thumbnail {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
}
.foreign-thumbnail { width: 58px; height: 43px; display: block; border-radius: 4px; object-fit: cover; background: var(--sky); }
.foreign-article-title { display: block; font-family: Georgia, "Times New Roman", serif; font-size: .85rem; font-weight: 700; line-height: 1.28; }
.foreign-article-link:hover .foreign-article-title { color: var(--feed-accent); text-decoration: underline; text-underline-offset: 3px; }
.foreign-article-meta { margin-top: 4px; display: flex; align-items: center; gap: 6px; color: #84919c; font-size: .63rem; }
.foreign-card .source-link { margin-top: auto; padding-top: 11px; color: var(--feed-accent); }
.foreign-card .share-button { width: 28px; height: 28px; font-size: .82rem; }
.foreign-grid-empty { margin-top: 16px; }

.site-footer {
    padding: 27px 20px;
    background: #e6ecef;
    border-top: 1px solid #d8e0e5;
    color: #687987;
    text-align: center;
    font-size: .75rem;
}
.site-footer p { max-width: 760px; margin: 0 auto; }
.site-footer .footer-credit { margin-top: 9px; color: #506879; }
.footer-credit a { color: var(--navy); font-weight: 800; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-credit a:focus-visible { outline: 3px solid #e8b448; outline-offset: 3px; }

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

@media (min-width: 1161px) {
    body {
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }

    .page-shell {
        height: calc(100vh - 150px);
        height: calc(100dvh - 150px);
        min-height: 520px;
        margin-top: 18px;
        margin-bottom: 0;
        align-items: start;
    }

    .news-column,
    .latest-section,
    .calendar-card {
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-color: #9cafbd transparent;
        scrollbar-width: thin;
    }

    .news-column,
    .latest-section {
        height: 100%;
        max-height: 100%;
        padding-right: 8px;
    }

    .calendar-card {
        height: auto;
        align-self: start;
        max-height: calc(100% - 80px);
    }

    .section-heading,
    .latest-heading {
        position: sticky;
        top: 0;
        z-index: 5;
        background: var(--page);
    }

    .feed-controls {
        position: sticky;
        top: 80px;
        z-index: 4;
    }

    .news-column::-webkit-scrollbar,
    .latest-section::-webkit-scrollbar,
    .calendar-card::-webkit-scrollbar {
        width: 7px;
    }

    .news-column::-webkit-scrollbar-thumb,
    .latest-section::-webkit-scrollbar-thumb,
    .calendar-card::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #9cafbd;
    }

    .foreign-section {
        position: fixed;
        inset: 75px 0 43px;
        z-index: 800;
        width: auto;
        margin: 0;
        padding: 24px max(20px, calc((100vw - 1500px) / 2));
        display: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--page);
        scroll-margin-top: 0;
    }

    .foreign-section:target { display: block; }
    .foreign-back-link { display: inline-flex; align-items: center; }

    .site-footer {
        position: fixed;
        inset: auto 0 0;
        z-index: 900;
        min-height: 43px;
        padding: 7px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        font-size: .68rem;
    }
    .site-footer p { max-width: none; margin: 0; }
    .site-footer .footer-credit { margin-top: 0; flex: 0 0 auto; }
}

@media (max-width: 1160px) {
    .page-shell { grid-template-columns: minmax(0, 1.45fr) minmax(300px, .8fr); }
    .news-column { grid-row: span 2; }
    .calendar-card { margin-top: 0; }
    .latest-section { display: flex; flex-direction: column; }
    .foreign-cta { order: -1; margin: 0 0 16px; }
    .foreign-section { display: none; }
    .foreign-section:target { display: block; }
    .foreign-section:target .foreign-back-link { display: inline-flex; align-items: center; }
    .foreign-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .header-inner, .page-shell { width: min(100% - 24px, 1500px); }
    .header-inner { min-height: 64px; }
    .header-actions p { display: none; }
    .brand { font-size: 1.85rem; }
    .brand-mark { width: 33px; height: 33px; font-size: 24px; }
    .page-shell { margin-top: 22px; grid-template-columns: 1fr; gap: 25px; }
    .news-column { grid-row: auto; }
    .section-heading { min-height: 60px; }
    .updated { display: none; }
    .feed-toggle { grid-template-columns: 39px minmax(0, 1fr) 14px; padding-inline: 10px 13px; gap: 10px; }
    .source-mark { width: 39px; height: 39px; }
    .feed-panel { padding: 0 13px 15px; }
    .article-list a.has-thumbnail { grid-template-columns: 66px minmax(0, 1fr); gap: 10px; }
    .article-thumbnail { width: 66px; height: 50px; }
    .article-copy { display: block; }
    .article-details { margin-top: 4px; }
    .article-list time { display: block; margin-top: 4px; }
    .foreign-accordion-section { margin-top: 23px; padding-top: 17px; }
    .foreign-cta { margin: 0 0 14px; }
    .calendar-card { padding-inline: 18px; }
    .visual-card-main { min-height: 210px; }
    .foreign-section { width: min(100% - 24px, 1500px); margin-bottom: 38px; }
    .foreign-section-heading { min-height: 0; display: block; padding-bottom: 12px; }
    .foreign-section-heading p { margin-top: 7px; text-align: left; }
    .foreign-heading-actions { max-width: none; text-align: left; }
    .foreign-grid { grid-template-columns: 1fr; }
}

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