/* ==========================================================
   GLOBAL READER STYLES
   ========================================================== */

:root {
    --reader-green: #173f32;
    --reader-green-dark: #0e2a22;
    --reader-gold: #c9a227;
    --reader-ink: #17231f;
    --reader-muted: #66736d;
    --reader-line: #dce4df;
    --reader-soft: #f4f7f5;
    --reader-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;

    color: var(--reader-ink);
    background: var(--reader-white);

    font-family:
        Arial,
        sans-serif;
}

img,
video {
    max-width: 100%;
}

a {
    color: inherit;
}


/* ==========================================================
   PUBLIC LAYOUT
   ========================================================== */

.public-layout {
    width: 100%;
    padding: 0 14px 48px;
}

.public-navigation {
    position: sticky;
    top: 0;
    z-index: 900;

    width: 100%;

    border-bottom: 1px solid var(--reader-line);

    background: rgba(255, 255, 255, 0.97);

    box-shadow: 0 4px 18px rgba(14, 42, 34, 0.04);

}

.public-navigation-inner {
    width: min(1480px, 100%);
    margin: 0 auto;
    padding: 10px 0;
}

/* Keep navigation overlays from being clipped by layout containers. */
.public-navigation,
.public-navigation-inner,
.public-navigation-main,
.public-category-dropdown {
    overflow: visible;
}

.public-navigation-main {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;
    min-width: 0;
}

.public-nav-link,
.public-category-toggle,
.public-nav-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 9px 14px;

    border-radius: 999px;

    color: var(--reader-green);

    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}

.public-nav-link {
    border: 1px solid transparent;
    background: transparent;
}

.public-nav-link:hover {
    border-color: #d6e0da;
    background: #f3f7f5;
    color: var(--reader-green-dark);
}

.public-category-dropdown {
    position: relative;
    flex-shrink: 0;
}

.public-category-toggle {
    gap: 8px;

    border: 1px solid #9fb9ad;

    background: #f4f7f5;
    color: var(--reader-green-dark);

    cursor: pointer;
}

.public-category-toggle:hover,
.public-category-toggle[aria-expanded="true"] {
    border-color: var(--reader-green);
    background: #edf4f0;
    color: var(--reader-green-dark);
}

.public-category-toggle-icon {
    font-size: 12px;

    transition:
        transform
        0.18s
        ease;
}

.public-category-toggle[aria-expanded="true"]
.public-category-toggle-icon {
    transform: rotate(180deg);
}

.public-category-menu {
    position: fixed;

    z-index: 5000;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(135px, 1fr)
        );

    gap: 7px;

    width: 320px;
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);

    padding: 12px;

    overflow-y: auto;
    overscroll-behavior: contain;

    border: 1px solid #cfdad4;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.98);

    box-shadow:
        0
        16px
        38px
        rgba(14, 42, 34, 0.15);

    backdrop-filter: blur(10px);

    scrollbar-width: thin;
}

.public-category-menu[hidden] {
    display: none;
}

.public-category-menu::-webkit-scrollbar {
    width: 8px;
}

.public-category-menu::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #cbd6d0;
}


.public-category-menu a {
    display: flex;
    align-items: center;

    min-height: 42px;

    padding: 10px 12px;

    border: 1px solid transparent;
    border-radius: 9px;

    background: #f6f8f7;
    color: var(--reader-green-dark) !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.public-category-menu a:visited {
    color: var(--reader-green-dark) !important;
}

.public-category-menu a:hover,
.public-category-menu a:focus-visible {
    border-color: #cfdad4;
    background: #edf4f0;
    color: var(--reader-green-dark) !important;
}

.public-category-menu a.is-active,
.public-category-menu a.is-active:visited {
    border-color: var(--reader-green);
    background: var(--reader-green);
    color: var(--reader-white) !important;
}

.public-category-menu a.is-active:hover,
.public-category-menu a.is-active:focus-visible {
    border-color: var(--reader-green-dark);
    background: var(--reader-green-dark);
    color: var(--reader-white) !important;
}

.public-nav-search {
    gap: 6px;

    border: 1px solid var(--reader-green-dark);

    background: var(--reader-green);
    color: #ffffff !important;
}

.public-nav-search span {
    color: #ffffff !important;
}

.public-nav-search:visited {
    color: #ffffff !important;
}

.public-nav-search:hover,
.public-nav-search:focus-visible {
    background: var(--reader-green-dark);
    color: #ffffff !important;
}

.public-nav-search:hover span,
.public-nav-search:focus-visible span {
    color: #ffffff !important;
}

.public-nav-link:focus-visible,
.public-category-toggle:focus-visible,
.public-nav-search:focus-visible {
    outline: 3px solid rgba(201, 162, 39, 0.38);
    outline-offset: 2px;
}

.public-content {
    padding-top: 0;
}

@media (max-width: 820px) {

    .public-navigation {
        position: static;
    }

    .public-navigation-main {
        flex-wrap: wrap;

        gap: 8px;

        padding: 2px 0;
    }
}

@media (max-width: 560px) {

    .public-layout {
        padding:
            0
            10px
            36px;
    }

    .public-navigation-inner {
        padding: 9px 0;
    }

    .public-nav-link,
    .public-category-toggle,
    .public-nav-search {
        min-height: 38px;

        padding:
            8px
            11px;

        font-size: 13px;
    }

    .public-category-menu {
        grid-template-columns: 1fr;

        width: min(
            290px,
            calc(100vw - 24px)
        );
    }

}

/* ==========================================================
   PUBLICATION BANNER
   ========================================================== */

.reader-banner-shell {
    width: min(
        1480px,
        100%
    );

    margin:
        22px
        auto
        0;

    overflow: hidden;

    border:
        1px solid var(--reader-line);

    border-radius: 14px;

    background: var(--reader-soft);

    box-shadow:
        0
        8px
        26px
        rgba(16, 44, 35, 0.08);
}

.reader-banner-image {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 6;

    object-fit: cover;
}


/* ==========================================================
   HOMEPAGE
   ========================================================== */

.reader-homepage {
    width: min(
        1480px,
        100%
    );

    margin: 0 auto;

    padding:
        34px
        0
        12px;
}

.reader-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 22px;

    padding-bottom: 12px;

    border-bottom:
        3px solid var(--reader-green);
}

.reader-section-heading-compact {
    margin-bottom: 18px;
}

.reader-section-kicker {
    margin:
        0
        0
        5px;

    color: var(--reader-gold);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.reader-section-heading h1,
.reader-section-heading h2 {
    margin: 0;

    color: var(--reader-green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 700;
}

.reader-section-heading h1 {
    font-size:
        clamp(
            30px,
            4vw,
            48px
        );
}

.reader-section-heading h2 {
    font-size: 30px;
}

.reader-section-count {
    margin: 0;

    color: var(--reader-muted);

    font-size: 13px;
}


/* ==========================================================
   LEAD STORY
   ========================================================== */

.reader-lead-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(320px, 0.75fr);

    gap: 28px;
}

.reader-lead-story {
    overflow: hidden;

    border:
        1px solid var(--reader-line);

    border-radius: 12px;

    background: var(--reader-white);
}

.reader-lead-media,
.reader-story-card-media,
.reader-secondary-media {
    display: block;

    overflow: hidden;

    background: var(--reader-soft);
}

.reader-lead-media {
    aspect-ratio: 16 / 9;
}

.reader-lead-media img,
.reader-story-card-media img,
.reader-secondary-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.25s
        ease;
}

.reader-lead-story:hover img,
.reader-story-card:hover img,
.reader-secondary-story:hover img {
    transform:
        scale(1.025);
}

.reader-image-placeholder {
    display: grid;

    place-items: center;

    width: 100%;
    height: 100%;

    min-height: 180px;

    background:
        linear-gradient(
            135deg,
            #edf4ef,
            #dfe9e3
        );

    color: var(--reader-green);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
    font-weight: 700;
}

.reader-lead-content {
    padding:
        24px
        26px
        28px;
}

.reader-story-category {
    margin:
        0
        0
        8px;

    color: var(--reader-gold);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}

.reader-lead-content h2,
.reader-secondary-content h3,
.reader-story-card-body h3 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    line-height: 1.08;
}

.reader-lead-content h2 {
    font-size:
        clamp(
            30px,
            4vw,
            50px
        );
}

.reader-lead-content h2 a,
.reader-secondary-content h3 a,
.reader-story-card-body h3 a {
    text-decoration: none;
}

.reader-lead-content h2 a:hover,
.reader-secondary-content h3 a:hover,
.reader-story-card-body h3 a:hover {
    color: var(--reader-green);
}

.reader-story-deck {
    margin:
        14px
        0
        0;

    color: #3e4944;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    line-height: 1.45;
}

.reader-story-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin:
        14px
        0
        0;

    color: var(--reader-muted);

    font-size: 13px;
}

.reader-story-excerpt,
.reader-story-card-excerpt {
    color: #3f4a45;

    line-height: 1.65;
}

.reader-story-excerpt {
    margin:
        16px
        0
        0;

    font-size: 16px;
}

.reader-read-link {
    display: inline-block;

    margin-top: 18px;

    color: var(--reader-green);

    font-weight: 800;

    text-decoration: none;
}

.reader-read-link:hover {
    color: var(--reader-gold);
}


/* ==========================================================
   SECONDARY STORIES
   ========================================================== */

.reader-secondary-list {
    display: grid;

    align-content: start;

    gap: 16px;
}

.reader-secondary-story {
    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1fr);

    overflow: hidden;

    padding-bottom: 16px;

    border-bottom:
        1px solid var(--reader-line);
}

.reader-secondary-media {
    aspect-ratio: 4 / 3;

    border-radius: 8px;
}

.reader-secondary-content {
    padding-left: 15px;
}

.reader-secondary-content h3 {
    font-size: 22px;
}


/* ==========================================================
   MORE STORIES
   ========================================================== */

.reader-more-section {
    margin-top: 42px;
}

.reader-story-card-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(260px, 1fr)
        );

    gap: 22px;
}

.reader-story-card {
    overflow: hidden;

    border:
        1px solid var(--reader-line);

    border-radius: 10px;

    background: var(--reader-white);
}

.reader-story-card-media {
    aspect-ratio: 16 / 10;
}

.reader-story-card-body {
    padding:
        17px
        18px
        20px;
}

.reader-story-card-body h3 {
    font-size: 24px;
}

.reader-story-card-excerpt {
    margin:
        13px
        0
        0;

    font-size: 14px;
}

.reader-empty-state {
    padding:
        50px
        20px;

    border:
        1px solid var(--reader-line);

    border-radius: 10px;

    text-align: center;

    background: var(--reader-soft);
}


/* ==========================================================
   ARTICLE PAGE
   ========================================================== */

.reader-article-page {
    width: 100%;

    padding:
        36px
        20px
        70px;

    background: var(--reader-white);
}

.reader-article {
    width: min(
        980px,
        100%
    );

    margin: 0 auto;
}

.reader-article-header {
    padding:
        0
        0
        24px;

    border-bottom:
        1px solid var(--reader-line);
}

.reader-article-category {
    margin:
        0
        0
        12px;

    color: var(--reader-gold);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.reader-article-header h1 {
    max-width: 930px;

    margin: 0;

    color: var(--reader-green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            40px,
            6vw,
            72px
        );

    font-weight: 700;

    line-height: 1.02;

    letter-spacing: -1px;
}

.reader-article-subtitle {
    max-width: 880px;

    margin:
        18px
        0
        0;

    color: #4b5651;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            20px,
            2.5vw,
            28px
        );

    line-height: 1.4;
}

.reader-article-byline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 24px;

    margin-top: 24px;

    color: var(--reader-muted);

    font-size: 14px;
}

.reader-article-byline p {
    margin: 0;
}

.reader-contributor-list {
    display: flex;
    flex-wrap: wrap;

    gap:
        6px
        14px;

    margin-top: 7px;

    font-size: 12px;
}

.reader-article-date {
    flex-shrink: 0;

    text-align: right;
}


/* ==========================================================
   ARTICLE FEATURED IMAGE
   ========================================================== */

.reader-featured-figure {
    margin:
        30px
        0
        0;
}

.reader-featured-image {
    display: block;

    width: 100%;

    max-height: 680px;

    object-fit: contain;

    border-radius: 8px;

    background: #f1f3f2;
}

.reader-featured-figure figcaption,
.reader-gallery-item figcaption,
.reader-video-item figcaption {
    display: flex;
    justify-content: space-between;

    gap: 14px;

    margin-top: 8px;

    color: var(--reader-muted);

    font-size: 12px;

    line-height: 1.5;
}

.reader-media-credit {
    flex-shrink: 0;

    font-style: italic;
}


/* ==========================================================
   ARTICLE TEXT
   ========================================================== */

.reader-article-standfirst {
    max-width: 760px;

    margin:
        30px
        auto
        0;

    color: #3c4842;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;
    font-weight: 700;

    line-height: 1.55;
}

.reader-article-body {
    max-width: 760px;

    margin:
        30px
        auto
        0;

    color: #202a25;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;

    line-height: 1.85;
}

.reader-article-body p {
    margin:
        0
        0
        1.35em;
}


/* ==========================================================
   ARTICLE MEDIA
   ========================================================== */

.reader-article-media-section {
    margin-top: 48px;

    padding-top: 24px;

    border-top:
        1px solid var(--reader-line);
}

.reader-article-section-heading p {
    margin:
        0
        0
        5px;

    color: var(--reader-gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.reader-article-section-heading h2 {
    margin:
        0
        0
        18px;

    color: var(--reader-green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;
}

.reader-article-gallery {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(260px, 1fr)
        );

    gap: 20px;
}

.reader-gallery-item,
.reader-video-item {
    margin: 0;
}

.reader-gallery-item img {
    display: block;

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    border-radius: 8px;

    background: var(--reader-soft);
}

.reader-video-grid {
    display: grid;

    gap: 22px;
}

.reader-video-item video {
    display: block;

    width: 100%;

    max-height: 620px;

    border-radius: 8px;

    background: #000000;
}


/* ==========================================================
   TAGS / ENGAGEMENT
   ========================================================== */

.reader-article-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    max-width: 760px;

    margin:
        38px
        auto
        0;

    padding-top: 20px;

    border-top:
        1px solid var(--reader-line);
}

.reader-article-tags span {
    padding:
        6px
        10px;

    border-radius: 999px;

    background: var(--reader-soft);

    color: var(--reader-green);

    font-size: 12px;
    font-weight: 700;
}

.reader-engagement-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    max-width: 760px;

    margin:
        28px
        auto
        0;

    padding:
        20px
        0;

    border-top:
        1px solid var(--reader-line);

    border-bottom:
        1px solid var(--reader-line);
}

.reader-engagement-stats {
    display: flex;
    flex-wrap: wrap;

    gap:
        12px
        18px;

    color: var(--reader-muted);

    font-size: 13px;
}

.reader-engagement-stats strong {
    color: var(--reader-green);
}

.reader-engagement-actions {
    display: flex;
    align-items: center;

    gap: 8px;
}

.reader-engagement-actions form {
    margin: 0;
}

.reader-action-button {
    min-height: 38px;

    padding:
        8px
        14px;

    border:
        1px solid var(--reader-line);

    border-radius: 999px;

    background: var(--reader-white);

    color: var(--reader-green);

    cursor: pointer;

    font: inherit;

    font-size: 13px;
    font-weight: 700;
}

.reader-action-button:hover:not(:disabled) {
    border-color:
        var(--reader-green);
}

.reader-action-primary {
    border-color:
        var(--reader-green);

    background:
        var(--reader-green);

    color:
        var(--reader-white);
}

.reader-action-button:disabled {
    opacity: 0.6;

    cursor: default;
}

.reader-back-link {
    display: inline-block;

    max-width: 760px;

    margin:
        24px
        auto
        0;

    color: var(--reader-green);

    font-weight: 700;

    text-decoration: none;
}


/* ==========================================================
   STAFF FALLBACK STYLES
   ========================================================== */

.staff-layout {
    display: flex;

    min-height: 500px;
}

.staff-sidebar {
    width: 220px;

    padding: 20px;

    border-right:
        1px solid #ccc;
}

.staff-sidebar nav {
    display: flex;
    flex-direction: column;

    gap: 15px;

    margin-top: 20px;
}

.staff-content {
    flex: 1;

    padding: 30px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 980px) {

    .reader-lead-grid {
        grid-template-columns: 1fr;
    }

    .reader-secondary-list {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .reader-secondary-story {
        grid-template-columns: 1fr;
    }

    .reader-secondary-content {
        padding:
            12px
            0
            0;
    }

}


@media (max-width: 720px) {

    .public-layout {
        padding-inline: 14px;
    }

    .reader-banner-shell {
        margin-top: 16px;

        border-radius: 8px;
    }

    .reader-banner-image {
        aspect-ratio: 16 / 7;
    }

    .reader-homepage {
        padding-top: 26px;
    }

    .reader-section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 7px;
    }

    .reader-secondary-list {
        grid-template-columns: 1fr;
    }

    .reader-lead-content {
        padding: 20px;
    }

    .reader-article-page {
        padding:
            26px
            16px
            52px;
    }

    .reader-article-byline,
    .reader-engagement-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .reader-article-date {
        text-align: left;
    }

    .reader-featured-figure figcaption,
    .reader-gallery-item figcaption,
    .reader-video-item figcaption {
        flex-direction: column;

        gap: 2px;
    }

}


@media (max-width: 520px) {

    .reader-banner-image {
        aspect-ratio: 16 / 8;
    }

    .reader-story-card-grid {
        grid-template-columns: 1fr;
    }

    .reader-article-body {
        font-size: 18px;
    }

}


/* ==========================================================
   HOMEPAGE SCHOOL UPDATE ADVERTISEMENTS
   ========================================================== */

.reader-home-content-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(250px, 320px);
    gap: 28px;
    align-items: start;
}

.reader-home-main {
    min-width: 0;
}

.reader-ad-sidebar {
    position: sticky;
    top: 18px;
    min-width: 0;
}

.reader-ad-sidebar-heading {
    padding: 18px;
    margin-bottom: 14px;
    border: 1px solid var(--reader-line);
    border-top: 4px solid var(--reader-gold);
    border-radius: 12px;
    background: var(--reader-soft);
}

.reader-ad-sidebar-heading h2 {
    margin: 0 0 8px;
    color: var(--reader-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.reader-ad-sidebar-heading p:last-child {
    margin: 0;
    color: var(--reader-muted);
    font-size: 13px;
    line-height: 1.6;
}

.reader-ad-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reader-ad-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--reader-line);
    border-radius: 12px;
    background: var(--reader-white);
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(16, 44, 35, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reader-ad-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 44, 35, 0.12);
}

.reader-ad-label {
    display: block;
    padding: 8px 12px;
    background: var(--reader-green);
    color: var(--reader-white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.reader-ad-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--reader-soft);
}

.reader-ad-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.reader-ad-card:hover .reader-ad-media img {
    transform: scale(1.03);
}

.reader-ad-copy {
    padding: 15px 16px 17px;
}

.reader-ad-copy h3 {
    margin: 0 0 2px;
    color: var(--reader-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.25;
}

.reader-ad-copy p {
    margin: 0 0 12px;
    color: var(--reader-muted);
    font-size: 13px;
    line-height: 1.55;
}

.reader-ad-read-more,
.reader-ad-all-link {
    color: var(--reader-green);
    font-size: 12px;
    font-weight: 800;
}

.reader-ad-all-link {
    display: inline-block;
    margin-top: 14px;
    text-decoration: none;
}

.reader-ad-all-link:hover {
    color: var(--reader-gold);
}

.reader-ad-empty {
    padding: 18px;
    border: 1px dashed var(--reader-line);
    border-radius: 12px;
    color: var(--reader-muted);
    background: var(--reader-soft);
    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================================
   SCHOOL UPDATES PUBLIC PAGES
   ========================================================== */

.school-updates-page,
.school-update-detail-page {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 34px 0 20px;
}

.school-updates-intro,
.school-update-detail-header {
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 3px solid var(--reader-green);
}

.school-updates-intro h1,
.school-update-detail-header h1 {
    margin: 0 0 8px;
    color: var(--reader-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 5vw, 48px);
}

.school-updates-intro p,
.school-update-detail-header p {
    margin: 0;
    color: var(--reader-muted);
    line-height: 1.7;
}

.school-updates-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.school-update-list-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--reader-line);
    border-radius: 12px;
    background: var(--reader-white);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(16, 44, 35, 0.07);
}

.school-update-list-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.school-update-list-copy {
    padding: 18px;
}

.school-update-list-copy h2 {
    margin: 0 0 2px;
    color: var(--reader-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.school-update-list-copy p {
    margin: 0;
    color: var(--reader-muted);
    line-height: 1.6;
}

.school-update-detail-card {
    overflow: hidden;
    border: 1px solid var(--reader-line);
    border-radius: 14px;
    background: var(--reader-white);
    box-shadow: 0 8px 28px rgba(16, 44, 35, 0.08);
}

.school-update-image-preview {
    display: block;
    width: min(760px, calc(100% - 48px));
    height: 420px;
    margin: 28px auto 0;
    overflow: hidden;
    border: 1px solid var(--reader-line);
    border-radius: 12px;
    background: var(--reader-soft);
}

.school-update-detail-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--reader-soft);
}

/* Match the article reader image lightbox behavior and appearance. */
.reader-lightbox-trigger {
    cursor: zoom-in;
}

.reader-lightbox-trigger:focus-visible {
    outline: 3px solid var(--reader-gold);
    outline-offset: 4px;
}

.reader-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(6, 14, 11, 0.88);
    backdrop-filter: blur(3px);
}

.reader-lightbox-overlay.active {
    display: flex;
}

.reader-lightbox-dialog {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1100px, 94vw);
    height: min(760px, 88vh);
    padding: 22px;
    border-radius: 12px;
    background: #111815;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.reader-lightbox-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 7px;
    background: #ffffff;
}

.reader-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.68);
    color: #ffffff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.reader-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

body.reader-lightbox-open {
    overflow: hidden;
}

.school-update-detail-body {
    padding: 28px 32px 34px;
}

.school-update-summary {
    margin: 0 0 24px;
    color: var(--reader-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.55;
}

.school-update-details {
    color: var(--reader-ink);
    line-height: 1.8;
    white-space: pre-line;
}

.school-update-back-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--reader-green);
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .reader-home-content-grid {
        grid-template-columns: 1fr;
    }

    .reader-ad-sidebar {
        position: static;
    }

    .reader-ad-stack {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .school-updates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .reader-ad-stack,
    .school-updates-grid {
        grid-template-columns: 1fr;
    }

    .school-update-image-preview {
        width: calc(100% - 32px);
        height: 280px;
        margin-top: 20px;
    }


    .school-update-detail-body {
        padding: 22px 20px 28px;
    }
}


/* ==========================================================
   PUBLIC CATEGORY ARTICLE PAGES
   ========================================================== */

.category-page {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 38px 0 56px;
}

.category-page-header {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 28px;
    padding-bottom: 16px;

    border-bottom: 3px solid var(--reader-green);
}

.category-page-header h1 {
    margin: 3px 0 0;

    color: var(--reader-green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            36px,
            5vw,
            58px
        );

    line-height: 1.04;
}

.category-page-description {
    max-width: 760px;

    margin: 11px 0 0;

    color: var(--reader-muted);

    font-size: 15px;
    line-height: 1.65;
}

.category-page-count {
    flex-shrink: 0;

    margin: 0;

    color: var(--reader-muted);

    font-size: 13px;
}

.category-featured-story {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.8fr);

    overflow: hidden;

    border: 1px solid var(--reader-line);
    border-radius: 14px;

    background: var(--reader-white);

    box-shadow:
        0
        8px
        26px
        rgba(16, 44, 35, 0.07);
}

.category-featured-media {
    display: block;

    min-height: 390px;

    overflow: hidden;

    background: var(--reader-soft);
}

.category-featured-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.25s
        ease;
}

.category-featured-story:hover
.category-featured-media img {
    transform: scale(1.025);
}

.category-featured-copy {
    padding: 30px;
}

.category-featured-copy h2 {
    margin: 0;

    color: var(--reader-green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            30px,
            3.4vw,
            46px
        );

    line-height: 1.08;
}

.category-featured-copy h2 a {
    text-decoration: none;
}

.category-featured-copy h2 a:hover {
    color: var(--reader-green);
}

.category-featured-excerpt {
    margin: 17px 0 0;

    color: #3f4a45;

    font-size: 15px;
    line-height: 1.7;
}

.category-article-list-section {
    margin-top: 42px;
}

.category-article-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 22px;
}

.category-article-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--reader-line);
    border-radius: 12px;

    background: var(--reader-white);

    box-shadow:
        0
        5px
        18px
        rgba(16, 44, 35, 0.06);
}

.category-article-card-media {
    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: var(--reader-soft);
}

.category-article-card-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.25s
        ease;
}

.category-article-card:hover
.category-article-card-media img {
    transform: scale(1.025);
}

.category-article-card-body {
    padding: 18px 18px 20px;
}

.category-article-card-body h3 {
    margin: 0;

    color: var(--reader-green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
    line-height: 1.18;
}

.category-article-card-body h3 a {
    text-decoration: none;
}

.category-article-card-body h3 a:hover {
    color: var(--reader-green);
}

.category-article-card-excerpt {
    margin: 13px 0 0;

    color: #46524c;

    font-size: 14px;
    line-height: 1.65;
}

.category-article-read-link {
    display: inline-block;

    margin-top: 14px;

    color: var(--reader-green);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}

.category-article-read-link:hover {
    color: var(--reader-gold);
}

.category-empty-state {
    padding: 58px 24px;

    border: 1px solid var(--reader-line);
    border-radius: 14px;

    background: var(--reader-soft);

    text-align: center;
}

.category-empty-state h2 {
    margin: 0 0 10px;

    color: var(--reader-green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.category-empty-state p {
    margin: 0;

    color: var(--reader-muted);
}

@media (max-width: 980px) {

    .category-featured-story {
        grid-template-columns: 1fr;
    }

    .category-featured-media {
        min-height: 0;

        aspect-ratio: 16 / 9;
    }

    .category-article-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}

@media (max-width: 680px) {

    .category-page {
        padding:
            28px
            0
            44px;
    }

    .category-page-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }

    .category-featured-copy {
        padding: 22px 20px 25px;
    }

    .category-article-grid {
        grid-template-columns: 1fr;
    }

}



/* ==========================================================
   PEOPLE & TEAMS PUBLIC PAGE
   ========================================================== */
.people-page{width:min(1320px,100%);margin:0 auto;padding:40px 0 58px}
.people-page-header{max-width:820px;margin:0 auto 32px;text-align:center}
.people-page-header h1{margin:4px 0 12px;color:var(--reader-green-dark);font-family:Georgia,"Times New Roman",serif;font-size:clamp(38px,5vw,60px)}
.people-page-header>p:last-child{margin:0;color:var(--reader-muted);font-size:16px;line-height:1.7}
.people-tiles{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.people-tile{display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;min-height:220px;padding:24px;border:1px solid #cad8d1;border-radius:16px;background:linear-gradient(145deg,#f7faf8,#edf4f0);color:var(--reader-green-dark);cursor:pointer;text-align:left;box-shadow:0 8px 24px rgba(16,44,35,.07);transition:.2s}
.people-tile:hover,.people-tile[aria-expanded=true]{transform:translateY(-3px);border-color:var(--reader-green);box-shadow:0 14px 34px rgba(16,44,35,.12)}
.people-tile-wide{grid-column:1/-1;width:min(520px,100%);justify-self:center}
.people-tile>span{margin-bottom:auto;color:var(--reader-gold);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1.2px}
.people-tile strong{margin-top:28px;font-family:Georgia,"Times New Roman",serif;font-size:clamp(26px,2.8vw,36px)}
.people-tile small{margin-top:8px;color:var(--reader-muted);font-size:13px;font-weight:700}
.people-groups{margin-top:24px}.people-group{scroll-margin-top:84px;padding:28px;border:1px solid var(--reader-line);border-radius:16px;background:#fff;box-shadow:0 12px 34px rgba(16,44,35,.07)}
.people-group[hidden]{display:none}.people-group-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:22px;margin-bottom:24px;padding-bottom:16px;border-bottom:3px solid var(--reader-green)}
.people-group-heading h2{margin:4px 0 8px;color:var(--reader-green-dark);font-family:Georgia,"Times New Roman",serif;font-size:clamp(30px,4vw,44px)}
.people-group-heading p:last-child{margin:0;color:var(--reader-muted)}.people-group-close{padding:8px 14px;border:1px solid var(--reader-line);border-radius:999px;background:#fff;color:var(--reader-green-dark);font:inherit;font-weight:700;cursor:pointer}
.people-profile-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.people-profile-card{overflow:hidden;border:1px solid var(--reader-line);border-radius:14px;background:#fff}
.people-profile-card>img{width:100%;aspect-ratio:4/3;object-fit:cover}.people-profile-body{padding:20px}
.people-profile-body h3{margin:0;color:var(--reader-green-dark);font-family:Georgia,"Times New Roman",serif;font-size:25px}.people-profile-role{margin:7px 0 0;color:var(--reader-gold);font-size:13px;font-weight:800}
.people-profile-body dl{margin:18px 0 0}.people-profile-body dl>div{padding:11px 0;border-top:1px solid var(--reader-line)}
.people-profile-body dt{margin-bottom:4px;color:var(--reader-muted);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.7px}.people-profile-body dd{margin:0;font-size:14px;line-height:1.6}
.people-empty{padding:34px;border:1px dashed var(--reader-line);border-radius:12px;background:var(--reader-soft);color:var(--reader-muted);text-align:center}
@media(max-width:1000px){.people-profile-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:820px){.people-tiles{grid-template-columns:1fr 1fr}.people-tile-wide{grid-column:1/-1}.people-group-heading{align-items:flex-start;flex-direction:column}}
@media(max-width:620px){.people-page{padding:28px 0 44px}.people-tiles{grid-template-columns:1fr}.people-tile-wide{grid-column:auto;width:100%}.people-tile{min-height:170px}.people-group{padding:20px}.people-profile-grid{grid-template-columns:1fr}}


/* ==========================================================
   MOBILE APP INSTALL / UPDATE
   ========================================================== */

.public-app-download-link {
    border-color: var(--reader-green);
    background: var(--reader-green);
    color: var(--reader-white) !important;
}

.public-app-download-link:visited {
    color: var(--reader-white) !important;
}

.public-app-download-link:hover,
.public-app-download-link:focus-visible {
    border-color: var(--reader-green-dark);
    background: var(--reader-green-dark);
    color: var(--reader-white) !important;
}

.reader-app-update-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 26px;
    padding: 20px 22px;

    border: 1px solid #d7c36f;
    border-left: 5px solid var(--reader-gold);
    border-radius: 14px;

    background: #fff9e8;

    box-shadow:
        0 8px 24px
        rgba(80, 64, 10, 0.08);
}

.reader-app-update-copy {
    min-width: 0;
}

.reader-app-update-copy h2 {
    margin: 2px 0 6px;

    color: var(--reader-green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            22px,
            3vw,
            30px
        );

    line-height: 1.15;
}

.reader-app-update-copy > p:not(.reader-section-kicker) {
    margin: 0;

    color: #5d5435;

    font-size: 13px;
    line-height: 1.65;
}

.reader-app-version {
    display: inline-flex;

    margin-top: 9px;
    padding: 4px 8px;

    border-radius: 999px;

    background: rgba(23, 63, 50, 0.08);
    color: var(--reader-green-dark);

    font-size: 11px;
    font-weight: 800;
}

.reader-app-update-button,
.reader-app-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 9px 17px;

    border: 1px solid var(--reader-green);
    border-radius: 999px;

    background: var(--reader-green);
    color: var(--reader-white) !important;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
    white-space: nowrap;
}

.reader-app-update-button:visited,
.reader-app-download-button:visited {
    color: var(--reader-white) !important;
}

.reader-app-update-button:hover,
.reader-app-update-button:focus-visible,
.reader-app-download-button:hover,
.reader-app-download-button:focus-visible {
    border-color: var(--reader-green-dark);
    background: var(--reader-green-dark);
    color: var(--reader-white) !important;
}

.reader-app-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    margin-top: 42px;
    padding: 28px 30px;

    border: 1px solid #cad8d1;
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #f7faf8,
            #edf4f0
        );

    box-shadow:
        0 10px 30px
        rgba(16, 44, 35, 0.08);
}

.reader-app-download-copy {
    min-width: 0;
}

.reader-app-download-copy h2 {
    margin: 4px 0 8px;

    color: var(--reader-green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            26px,
            3.8vw,
            40px
        );

    line-height: 1.08;
}

.reader-app-download-copy > p:last-child {
    max-width: 760px;

    margin: 0;

    color: var(--reader-muted);

    font-size: 14px;
    line-height: 1.7;
}

.reader-app-download-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    flex-direction: column;

    gap: 8px;

    min-width: 190px;
}

.reader-app-download-button {
    width: 100%;
}

.reader-app-download-actions span {
    color: var(--reader-muted);

    font-size: 11px;
    font-weight: 700;

    text-align: center;
}

@media (max-width: 760px) {

    .reader-app-update-notice,
    .reader-app-download {
        align-items: stretch;
        flex-direction: column;
    }

    .reader-app-update-button {
        width: 100%;
    }

    .reader-app-download {
        gap: 20px;

        margin-top: 32px;
        padding: 22px;
    }

    .reader-app-download-actions {
        align-items: stretch;
        min-width: 0;
    }

}



/* ==========================================================
   CATEGORY DATE FILTER + LIVE SEARCH SUGGESTIONS
   ========================================================== */

.category-date-filter-panel {
    display: grid;
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.6fr);
    gap: 18px 28px;
    align-items: end;
    margin: 0 0 28px;
    padding: 18px 20px;
    border: 1px solid var(--reader-line);
    border-radius: 14px;
    background: linear-gradient(135deg, #fbfdfc, #f4f8f5);
    box-shadow: 0 8px 24px rgba(14, 42, 34, 0.05);
}

.category-date-filter-copy {
    min-width: 0;
}

.category-date-filter-copy > span {
    display: block;
    margin-bottom: 4px;
    color: var(--reader-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.category-date-filter-copy > strong {
    display: block;
    color: var(--reader-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.category-date-filter-copy > small {
    display: block;
    margin-top: 5px;
    color: var(--reader-muted);
    font-size: 11px;
    line-height: 1.5;
}

.category-date-filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
}

.category-date-filter-form label {
    display: flex;
    flex: 1 1 165px;
    flex-direction: column;
    gap: 5px;
    color: var(--reader-muted);
    font-size: 11px;
    font-weight: 800;
}

.category-date-filter-form input[type="date"] {
    min-height: 42px;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #b9ccc3;
    border-radius: 9px;
    background: #ffffff;
    color: var(--reader-green-dark);
    font: inherit;
}

.category-date-filter-form input[type="date"]:focus {
    outline: none;
    border-color: var(--reader-green);
    box-shadow: 0 0 0 3px rgba(23, 63, 50, 0.12);
}

.category-date-filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.category-date-filter-apply,
.category-date-filter-clear {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.category-date-filter-apply {
    border: 1px solid var(--reader-green);
    background: var(--reader-green);
    color: #ffffff;
    cursor: pointer;
}

.category-date-filter-apply:hover,
.category-date-filter-apply:focus-visible {
    background: var(--reader-green-dark);
}

.category-date-filter-clear {
    border: 1px solid #b9ccc3;
    background: #ffffff;
    color: var(--reader-green-dark);
}

.category-date-filter-error,
.category-date-filter-summary {
    grid-column: 1 / -1;
    margin: -6px 0 0;
    font-size: 12px;
    line-height: 1.5;
}

.category-date-filter-error {
    padding: 9px 11px;
    border-left: 4px solid #a63d3d;
    border-radius: 6px;
    background: #fff2f2;
    color: #7d2929;
}

.category-date-filter-summary {
    color: var(--reader-muted);
}

.public-category-search-field {
    position: relative;
}

.public-category-search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 5200;
    width: min(430px, calc(100vw - 24px));
    max-height: min(420px, 70vh);
    overflow-y: auto;
    padding: 7px;
    border: 1px solid #cfdad4;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 44px rgba(14, 42, 34, 0.18);
}

.public-category-search-suggestions[hidden] {
    display: none;
}

.public-search-suggestion {
    display: grid;
    gap: 4px;
    padding: 11px 12px;
    border-radius: 9px;
    color: var(--reader-green-dark);
    text-decoration: none;
}

.public-search-suggestion + .public-search-suggestion {
    border-top: 1px solid #edf1ef;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.public-search-suggestion:hover,
.public-search-suggestion:focus-visible {
    outline: none;
    background: #edf4f0;
}

.public-search-suggestion strong {
    overflow-wrap: anywhere;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    line-height: 1.25;
}

.public-search-suggestion-summary {
    overflow: hidden;
    color: #50605a;
    font-size: 11px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.public-search-suggestion small,
.public-search-suggestion-empty {
    color: var(--reader-muted);
    font-size: 10px;
    line-height: 1.4;
}

.public-search-suggestion-empty {
    padding: 13px 12px;
    text-align: center;
}

.reader-action-liked {
    border-color: #c9a227;
    background: #fff9e8;
    color: #6f5814;
}

.reader-action-liked:hover:not(:disabled),
.reader-action-liked:focus-visible {
    border-color: #a9851a;
    background: #f8edc7;
    color: #513f0d;
}

@media (max-width: 760px) {
    .category-date-filter-panel {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .category-date-filter-form {
        align-items: stretch;
        flex-direction: column;
    }

    .category-date-filter-form label,
    .category-date-filter-actions {
        width: 100%;
    }

    .category-date-filter-apply,
    .category-date-filter-clear {
        flex: 1 1 auto;
    }

    .public-category-search-suggestions {
        left: 0;
        right: auto;
        width: min(430px, calc(100vw - 28px));
    }
}
