:root {
    --brand-primary: #990000;
    --brand-secondary: #010155;
    --ink: #292f36;
    --muted: #626872;
    --paper: #ffffff;
    --wash: #f5f1eb;
    --line: #ded7ce;
    --dark: #09090d;
    --focus: #f6bf26;
    --space: clamp(20px, 4vw, 64px);
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: absolute;
    left: 16px;
    top: 8px;
    z-index: 20;
    transform: translateY(-140%);
    background: var(--dark);
    color: #fff;
    padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px var(--space);
    background: var(--brand-secondary);
    color: #fff;
    font-size: 13px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
}
.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 var(--space);
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.brand img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    object-fit: contain;
}
.brand-mark {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: clamp(18px, 2vw, 24px); color: var(--brand-secondary); }
.brand small { color: var(--muted); font-size: 13px; max-width: 340px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a {
    padding: 12px 13px;
    color: var(--brand-secondary);
    font-weight: 700;
    font-size: 14px;
}
.nav-links a:hover { color: var(--brand-primary); }
.nav-cta {
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary) !important;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
}
.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--brand-secondary);
}

.hero {
    position: relative;
    min-height: calc(100vh - 132px);
    display: grid;
    align-items: end;
    padding: var(--space);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(1,1,85,.90), rgba(153,0,0,.70)),
        url("../img/campus-fallback.svg") center/cover;
}
.hero-media, .hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-media { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.12)); }
.hero-content {
    position: relative;
    max-width: 850px;
    padding-bottom: clamp(24px, 8vh, 88px);
}
.hero-identity {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
}
.hero-identity img {
    width: clamp(76px, 10vw, 128px);
    height: clamp(76px, 10vw, 128px);
    object-fit: contain;
}
.eyebrow {
    margin: 0 0 10px;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.hero .eyebrow { color: #fff; }
.hero h1, .listing-header h1, .page-hero h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 92px);
    line-height: .95;
    max-width: 920px;
}
.hero p {
    max-width: 650px;
    font-size: clamp(17px, 2vw, 22px);
}
.hero-actions, .admin-heading.row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer;
    border-radius: var(--radius);
}
.button.primary {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}
.button.ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
}
.section {
    padding: clamp(48px, 8vw, 110px) var(--space);
}
.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}
.section h2, .split-section h2 {
    margin: 0;
    color: var(--brand-secondary);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1;
}
.listing-grid, .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.news-card, .stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}
.news-card h3, .news-card h2 {
    color: var(--brand-secondary);
    margin: 12px 0 8px;
}
.news-card a { color: var(--brand-primary); font-weight: 800; }
.story-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    min-height: 360px;
    padding-top: 14px;
    background:
        linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.78)) top / 100% 52px no-repeat,
        linear-gradient(var(--brand-primary), var(--brand-primary)) 0 52px / 100% 5px no-repeat,
        #fff;
    overflow: hidden;
}
.story-tile {
    position: relative;
    min-height: 292px;
    overflow: hidden;
    isolation: isolate;
    transition: min-height .25s ease, box-shadow .25s ease, transform .25s ease;
}
.story-tile:hover,
.story-tile:focus-within {
    z-index: 2;
    min-height: 336px;
    border-top: 6px solid #d59b34;
    box-shadow: 0 22px 45px rgba(0,0,0,.28);
}
.story-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}
.story-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 15%, rgba(0,0,0,.66) 100%);
    z-index: 1;
}
.story-tile:hover .story-shade,
.story-tile:focus-within .story-shade {
    background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.70));
}
.story-copy {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 24px;
    color: #fff;
    text-align: center;
}
.story-copy h2 {
    max-width: 620px;
    margin: 0;
    color: #fff;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.18;
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.story-button {
    display: inline-flex;
    min-width: 136px;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.92);
    border-radius: 6px;
    padding: 12px 22px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 800;
    background: rgba(0,0,0,.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.story-tile:hover .story-button,
.story-tile:focus-within .story-button {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.story-button:hover {
    background: #fff;
    color: var(--brand-secondary);
}
.split-section {
    display: grid;
    grid-template-columns: minmax(240px, .8fr) 1.4fr;
    gap: 42px;
}
.news-showcase {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: stretch;
    background: #fff;
}
.news-feature {
    position: relative;
    min-height: 520px;
    border-top: 6px solid var(--brand-primary);
    overflow: hidden;
    isolation: isolate;
}
.news-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-feature-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.70));
}
.news-feature > div:last-child {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: end;
    min-height: 100%;
    padding: clamp(26px, 4vw, 46px);
    color: #fff;
}
.news-feature .eyebrow {
    color: #fff;
}
.news-feature h2 {
    margin: 0;
    max-width: 520px;
    color: #fff;
    font-size: clamp(36px, 5vw, 70px);
    line-height: .98;
    text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.news-carousel {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 22px;
}
.carousel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}
.carousel-head h2 {
    margin: 0;
    color: var(--brand-secondary);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
}
.carousel-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}
.carousel-actions button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--brand-secondary);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}
.carousel-actions button:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}
.news-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 44%);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    padding: 2px 2px 18px;
}
.news-slide {
    scroll-snap-align: start;
    display: grid;
    grid-template-rows: 190px 1fr;
    min-height: 430px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.news-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--wash);
}
.news-slide div {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px;
}
.news-slide small {
    color: var(--brand-primary);
    font-weight: 900;
}
.news-slide h3 {
    margin: 0;
    color: var(--brand-secondary);
    font-size: 24px;
    line-height: 1.18;
}
.news-slide p {
    margin: 0;
    color: #0f1b2d;
}
.news-list {
    display: grid;
    gap: 16px;
}
.news-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
}
.news-card.vertical { grid-template-columns: 1fr; }
.news-card img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    border-radius: 6px;
    background: var(--wash);
}
.news-card small { color: var(--brand-primary); font-weight: 900; }
.agenda-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(360px, .95fr);
    gap: clamp(34px, 5vw, 70px);
    padding: clamp(38px, 6vw, 70px) var(--space);
    background: #d7d8da;
}
.agenda-spotlight {
    position: relative;
    min-height: 540px;
    border-top: 6px solid var(--brand-primary);
    overflow: hidden;
    isolation: isolate;
}
.agenda-media {
    position: absolute;
    inset: 0;
}
.agenda-spotlight img,
.agenda-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.agenda-spotlight img {
    object-fit: cover;
}
.agenda-media iframe {
    z-index: 4;
    display: none;
    border: 0;
    background: #000;
}
.agenda-media.is-playing img,
.agenda-media.is-playing .agenda-spotlight-shade,
.agenda-media.is-playing .agenda-spotlight-copy {
    display: none;
}
.agenda-media.is-playing iframe {
    display: block;
}
.agenda-spotlight-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,.50), rgba(0,0,0,.05));
}
.agenda-spotlight-copy {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: start;
    align-content: center;
    min-height: 100%;
    width: min(520px, calc(100% - 64px));
    margin-left: clamp(32px, 7vw, 100px);
    color: #fff;
}
.agenda-spotlight-copy p,
.agenda-label {
    margin: 0 0 24px;
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.agenda-spotlight-copy p {
    position: relative;
    color: #fff;
}
.agenda-spotlight-copy p::after,
.agenda-label::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 7px;
    background: currentColor;
}
.agenda-spotlight-copy h2 {
    margin: 0 0 26px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 56px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.05;
    text-shadow: 0 2px 16px rgba(0,0,0,.38);
}
.spotlight-button,
.full-calendar,
.more-info {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 800;
}
.spotlight-button {
    display: inline-flex;
    min-width: 132px;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 6px;
    padding: 12px 20px;
    color: #fff;
    background: rgba(0,0,0,.12);
    cursor: pointer;
}
.spotlight-button:hover {
    background: #fff;
    color: var(--brand-secondary);
}
.upcoming-events {
    position: relative;
    padding-top: 66px;
}
.full-calendar {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #8b8f96;
    border-radius: 6px;
    padding: 14px 24px;
    color: #777b82;
    background: transparent;
}
.full-calendar:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}
.upcoming-list {
    display: grid;
    gap: 20px;
}
.upcoming-item,
.event-row {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 24px;
}
.upcoming-item time,
.event-row time {
    display: flex;
    align-items: baseline;
    justify-content: end;
    gap: 5px;
    min-height: 74px;
    padding-right: 18px;
    border-right: 2px solid #c9ccd1;
    color: #2c3442;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-style: italic;
    line-height: 1;
}
.upcoming-item time span + span::before,
.event-row time span + span::before {
    content: "\00B7";
    margin-right: 5px;
}
.upcoming-item h3,
.event-row h2 {
    margin: 0 0 4px;
    color: #071227;
    font-size: 22px;
    line-height: 1.15;
}
.upcoming-item p,
.event-row p {
    margin: 0 0 4px;
    color: #071227;
    font-size: 19px;
}
.upcoming-item a,
.more-info {
    color: #7d8289;
    font-size: 17px;
}
.page-hero, .listing-header {
    padding: clamp(54px, 9vw, 120px) var(--space);
    background: var(--wash);
}
.page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.page-hero img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
}
.content-body, .article {
    width: min(860px, calc(100% - 40px));
    margin: 48px auto;
    font-size: 18px;
}
.article header { margin-bottom: 24px; }
.article h1 {
    margin: 0 0 12px;
    color: var(--brand-secondary);
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1;
}
.article-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 28px;
}
.listing-grid { padding: 0 var(--space) 80px; }
.event-list {
    width: min(980px, calc(100% - 40px));
    margin: 40px auto 80px;
}
.event-row {
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}
.site-footer {
    display: grid;
    grid-template-columns: 1fr minmax(220px, .8fr) 1fr;
    align-items: center;
    gap: 24px;
    padding: clamp(28px, 4vw, 44px) var(--space);
    background: var(--dark);
    color: #fff;
}
.site-footer h2 {
    margin: 0;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.1;
}
.site-footer address { font-style: normal; color: #d7d7dc; }
.footer-school {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-school img {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    object-fit: contain;
}
.footer-school p,
.footer-manager p {
    margin: 8px 0 0;
    color: #fff;
}
.footer-manager {
    display: grid;
    justify-items: center;
    text-align: center;
}
.footer-manager img {
    width: 41px;
    height: 41px;
    object-fit: contain;
    margin-bottom: 8px;
}
.footer-manager h2 {
    font-size: clamp(20px, 1.8vw, 28px);
}
.footer-contact {
    display: grid;
    justify-items: end;
    gap: 10px;
    text-align: right;
}
.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 50%;
    color: #fff;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.social-links a:hover {
    background: #fff;
    border-color: #fff;
    color: var(--brand-secondary);
}
.social-links svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.auth-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
    background: var(--brand-secondary);
}
.auth-card {
    width: min(440px, 100%);
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
}
.auth-card h1 { color: var(--brand-secondary); margin-top: 0; }
label {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--brand-secondary);
}
input, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 13px;
    color: var(--ink);
    background: #fff;
}
textarea { resize: vertical; }
.flash {
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: #e9f7ef;
    color: #14532d;
}
.flash.error { background: #fff1f2; color: #991b1b; }

.admin-body {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px 1fr;
    background: #f7f7f8;
}
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background: var(--brand-secondary);
    color: #fff;
    padding: 22px;
}
.admin-brand {
    display: grid;
    gap: 4px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.admin-brand small { color: #cbd5e1; }
.admin-sidebar nav {
    display: grid;
    gap: 6px;
    margin-top: 22px;
}
.admin-sidebar nav a {
    padding: 12px 14px;
    border-radius: var(--radius);
}
.admin-sidebar nav a:hover { background: rgba(255,255,255,.12); }
.admin-main { min-width: 0; }
.admin-topbar {
    min-height: 68px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.icon-button {
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    width: 44px;
    height: 44px;
}
.admin-content { padding: 28px; }
.admin-heading {
    margin-bottom: 24px;
}
.admin-heading h1 {
    margin: 0;
    color: var(--brand-secondary);
    font-size: clamp(30px, 4vw, 44px);
}
.admin-heading.row { justify-content: space-between; }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card span {
    color: var(--brand-primary);
    font-size: 44px;
    font-weight: 900;
}
.admin-form, .table-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
}
.form-divider {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 22px 0;
}
.form-section-title {
    margin: 0 0 16px;
    color: var(--brand-secondary);
    font-size: 24px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.check {
    display: flex;
    align-items: center;
    gap: 10px;
}
.check input { width: auto; }
.table-wrap { overflow-x: auto; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}
.admin-table th, .admin-table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}
.admin-table th { color: var(--brand-secondary); }
.actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.actions a, .actions button {
    border: 0;
    background: none;
    color: var(--brand-primary);
    font-weight: 800;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 900px) {
    .topbar { display: none; }
    .navbar { min-height: 72px; }
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px var(--space) 22px;
        background: #fff;
        border-bottom: 1px solid var(--line);
    }
    .nav-links.is-open { display: flex; }
    .brand small { display: none; }
    .hero { min-height: calc(100vh - 72px); }
    .listing-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .agenda-showcase {
        grid-template-columns: 1fr;
    }
    .agenda-spotlight {
        min-height: 420px;
    }
    .upcoming-events {
        padding-top: 0;
    }
    .full-calendar {
        position: static;
        margin-bottom: 28px;
    }
    .story-rail {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 0;
        background:
            linear-gradient(var(--brand-primary), var(--brand-primary)) top / 100% 5px no-repeat,
            #fff;
    }
    .story-tile,
    .story-tile:hover,
    .story-tile:focus-within {
        min-height: 270px;
        border-top: 0;
        box-shadow: none;
    }
    .story-copy {
        left: 20px;
        right: 20px;
        bottom: 24px;
    }
    .split-section, .page-hero {
        grid-template-columns: 1fr;
    }
    .news-showcase {
        grid-template-columns: 1fr;
    }
    .news-feature {
        min-height: 380px;
    }
    .news-track {
        grid-auto-columns: minmax(260px, 72%);
    }
    .news-card { grid-template-columns: 1fr; }
    .upcoming-item,
    .event-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .upcoming-item time,
    .event-row time {
        justify-content: start;
        min-height: 0;
        padding-right: 0;
        border-right: 0;
    }
    .site-footer {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .footer-manager {
        justify-items: start;
        text-align: left;
    }
    .footer-contact {
        justify-items: start;
        text-align: left;
    }
    .social-links {
        justify-content: flex-start;
    }
    .admin-body { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(300px, 86vw);
        transform: translateX(-100%);
        transition: transform .25s ease;
        z-index: 30;
    }
    .admin-sidebar.is-open { transform: translateX(0); }
    .admin-topbar { justify-content: space-between; }
    .icon-button { display: inline-grid; place-items: center; }
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    :root { --space: 20px; }
    .brand strong { font-size: 16px; }
    .brand img {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }
    .brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }
    .hero-identity {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hero-identity img {
        width: 78px;
        height: 78px;
    }
    .hero h1, .listing-header h1, .page-hero h1 {
        font-size: 40px;
    }
    .carousel-head {
        align-items: start;
        flex-direction: column;
    }
    .news-track {
        grid-auto-columns: 86%;
    }
    .news-feature {
        min-height: 320px;
    }
    .agenda-spotlight {
        min-height: 340px;
    }
    .agenda-spotlight-copy {
        width: calc(100% - 40px);
        margin-left: 20px;
    }
    .agenda-spotlight-copy h2 {
        font-size: 34px;
    }
    .hero-actions .button { width: 100%; }
    .admin-content { padding: 18px; }
}
