@import url("theme_settings/theme_settings.css");
@import url("https://use.typekit.net/sxh7lwp.css");

:root {
    /* Theme tokens — every reference includes a diagnostic fallback so
       a missing theme_settings.css is visually obvious during review. */
    --color-1:        var(--color-1-theme, #00ff00);
    --color-2:        var(--color-2-theme, #ff00ff);
    --color-over-1:   var(--color-over-1-theme, #000000);
    --color-over-2:   var(--color-over-2-theme, #ffffff);
    --color-1-isDark: var(--color-1-theme-isDark, 0);
    --color-2-isDark: var(--color-2-theme-isDark, 0);

    /* Breakpoint tokens — media queries can't read custom properties,
       so the rem values repeat in @media (min-width: …) below. */
    --size-sm: 48rem;     /* tablet */
    --size-md: 64rem;     /* desktop */
    --size-lg: 85.375rem; /* large desktop */
    --size-xl: 120rem;    /* max content width */
}

html { height: 100%; }

body {
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "newnord", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
}

.site-header,
.site-footer { flex: none; }

#content_main {
    flex: 1 0 auto;
    width: 100%;
    box-sizing: border-box;
    max-width: var(--inside-content-max, var(--size-lg));
    padding: var(--inside-content-pad-y, 1.5rem) var(--inside-content-pad-x, clamp(0.5rem, 5%, 3rem));
    margin-inline: auto;
    background-color: #fff;
}

/* Homepage reset — the .site-homepage wrapper in index.jsp gates this. */
body:has(.site-homepage) #content_main {
    max-width: none;
    padding: 0;
    background-color: transparent;
}

/* CMS-rendered page title on inside pages. margin-block keeps the
   CMS-supplied inline margins (which center the title on wide
   viewports) intact. filter: brightness keeps a light theme color
   legible when --color-1 is itself the foreground. */
.pageTitle {
    color: var(--color-1);
    filter: brightness(var(--color-1-isDark));
    font-family: "industry", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.5;
    margin-block: 0 1.5rem;
}

.site-header .site-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: 0.5rem 1rem;
    background-color: var(--color-1);
    color: var(--color-over-1);
    text-decoration: none;
}
.site-header .site-skip-link:focus-visible {
    left: 0;
}

/* Screen-reader-only text. The CMS system stylesheet also defines
   .hidden-text with the same technique; declaring it here keeps the
   pattern available regardless of system-stylesheet load order. */
.hidden-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

/* ---------- Header ---------- */

/* Mobile-first: header stacks supplementary (topbar) → identity → nav.
   Desktop restores identity into the topbar row via grid placement.
   DOM order stays canonical (skip → identity → nav → supplementary per
   LAYOUT_STRUCTURE.md); CSS handles the visual rearrangement. */
.site-header {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--color-1);
    color: var(--color-over-1);
}
.site-header .site-header__supplementary { order: -1; }

@media (min-width: 64rem) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "contact identity socials"
            "nav     nav      nav";
        padding-left: max(12px, calc((100vw - 1342px) / 2));
        padding-right: max(12px, calc((100vw - 1342px) / 2));
    }
}

.site-header .site-header__identity {
    align-self: center;
    justify-self: center;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-over-1);
    text-decoration: none;
    line-height: 1.1;
}
@media (min-width: 64rem) {
    .site-header .site-header__identity {
        grid-area: identity;
        padding: 1rem;
    }
}
.site-header .site-header__logo {
    height: 56px;
    width: auto;
    margin-bottom: 0.25rem;
}
.site-header .site-header__wordmark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: 0.02em;
}
.site-header .site-header__wordmark-line--lead {
    font-family: "industry", sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.1;
}
.site-header .site-header__wordmark-line:not(.site-header__wordmark-line--lead) {
    font-family: "newnord", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

/* Mobile: topbar row holds contact + socials at the left; the hamburger
   toggle is absolutely positioned in the header's top-right corner per
   knowledge/components/navigation.md [Structural]. Right padding clears
   the toggle's footprint (1rem offset + 2rem width). Min-height keeps
   the toggle vertically centered with symmetric 1rem padding. */
/* Mobile: supplementary is a flex row that holds contact + socials at
   the left; the hamburger toggle is absolutely positioned in the header's
   top-right corner per knowledge/components/navigation.md [Structural].
   Right padding clears the toggle's footprint (1rem offset + 2rem width).
   Min-height keeps the toggle vertically centered with symmetric 1rem
   padding. Desktop dissolves this element via display: contents in the
   parent grid so contact + socials sit in their own grid columns. */
.site-header .site-header__supplementary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 3rem 0.75rem 1rem;
    min-height: 4rem;
    box-sizing: border-box;
}
@media (min-width: 64rem) {
    .site-header .site-header__supplementary { display: contents; }
    .site-header .site-header__contact { grid-area: contact; justify-self: start; align-self: center; padding-left: 1rem; }
    .site-header .site-header__socials { grid-area: socials; justify-self: end; align-self: center; padding-right: 1rem; }
}
.site-header .site-header__contact-list,
.site-header .site-header__socials-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.site-header .site-header__socials-list { gap: 17px; }
.site-header .site-header__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-over-1);
    text-decoration: underline;
    text-transform: uppercase;
    font-family: "newnord", sans-serif;
    font-weight: 700;
    font-size: 1rem;
}
.site-header .site-header__contact-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
}
.site-header .site-header__contact-icon svg,
.site-header .site-header__contact-icon img {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (min-width: 64rem) {
    .site-header .site-header__socials-list { justify-content: flex-end; }
}
.site-header .site-header__social-link {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    color: var(--color-over-1);
    text-decoration: none;
}
.site-header .site-header__social-link svg,
.site-header .site-header__social-link img {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.site-header .site-header__social-link:focus-visible {
    outline: 2px solid var(--color-over-1);
    outline-offset: 2px;
}

.site-header .site-header__search-icon::before {
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 1;
    text-transform: none;
    content: 'search';
    font-size: 34px;
    line-height: 1;
}

/* Hamburger toggle — mobile only. [Structural] per knowledge/components/navigation.md:
   position: absolute against the .site-header (position: relative). Desktop hides it
   entirely since the nav band renders in-flow at that breakpoint. */
.site-header .site-header__menu-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    background: none;
    border: 0;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-over-1);
    cursor: pointer;
}
.site-header .site-header__menu-toggle-icon::before {
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 1;
    text-transform: none;
    content: 'menu';
    font-size: 1.75rem;
    line-height: 1;
}
.site-header .site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-icon::before {
    content: 'close';
}
.site-header .site-header__menu-toggle:hover,
.site-header .site-header__menu-toggle:focus-visible {
    opacity: 0.85;
}
@media (min-width: 64rem) {
    .site-header .site-header__menu-toggle { display: none; }
}

/* Icon color flattening — per knowledge/components/links.md */
.flat-icon-colors svg.color-flatten .color-fill         { fill: currentColor; }
.flat-icon-colors svg.color-flatten .transparency-change { fill: transparent; }
.flat-icon-colors svg:not(.color-flatten)               { fill: currentColor; }

/* ---------- Site nav (Links-driven — mobile: hamburger panel overlay; desktop: yellow band) ---------- */

/* Mobile: <nav> is in normal flow (not positioned) so the toggle inside it
   still resolves its position:absolute against .site-header. The menu itself
   is the overlay when .show is present. */
.site-nav {
    color: var(--color-over-2);
}

.site-nav .site-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background-color: var(--color-2);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
}
.site-nav .site-nav__menu.show {
    display: flex;
}

@media (min-width: 64rem) {
    .site-nav {
        grid-area: nav;
        position: static;
        display: block;
        background-color: var(--color-2);
        margin-left: calc(0px - max(12px, calc((100vw - 1342px) / 2)));
        margin-right: calc(0px - max(12px, calc((100vw - 1342px) / 2)));
        padding-left: max(12px, calc((100vw - 1342px) / 2));
        padding-right: max(12px, calc((100vw - 1342px) / 2));
    }
    .site-nav .site-nav__menu,
    .site-nav .site-nav__menu.show {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem 1rem;
        min-height: 3.75rem;
        position: static;
        background-color: transparent;
    }
}
.site-nav .site-nav__item { display: flex; }
.site-nav .site-nav__link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-1);
    filter: brightness(var(--color-1-isDark));
    text-decoration: underline;
    text-transform: uppercase;
    font-family: "newnord", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
}
.site-nav .site-nav__icon {
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
}
.site-nav .site-nav__icon svg,
.site-nav .site-nav__icon img {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ---------- Hero shuffle ---------- */

.site-hero { position: relative; }

.site-hero .swiper-container,
.site-hero.swiper-container { position: relative; }

.site-hero .swiper { width: 100%; }

.site-hero .swiper-slide figure {
    margin: 0;
    position: relative;
}
.site-hero .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

/* [Structural] caption: mobile in flow, desktop overlay */
.site-hero figcaption {
    background-color: rgba(0,0,0,0.85);
    color: #fff;
    padding: 0.75rem 1rem;
}
@media (min-width: 48rem) {
    .site-hero figcaption {
        position: absolute;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,0.75);
    }
    .site-hero figcaption.caption-position-top    { top: 0; }
    .site-hero figcaption.caption-position-bottom { bottom: 0; }
}

/* [Structural] Navigation position vars and caption offsets — desktop only */
@media (min-width: 48rem) {
    .site-hero .navigation-position-top    { --swiper-pagination-top: 0.5rem; --swiper-pagination-bottom: auto; }
    .site-hero .navigation-position-bottom { --swiper-pagination-bottom: 0.5rem; --swiper-pagination-top: auto; }
    .site-hero .navigation-position-left   { --swiper-pagination-left: 0.5rem; --swiper-pagination-right: auto; }
    .site-hero .navigation-position-right  { --swiper-pagination-right: 0.5rem; --swiper-pagination-left: auto; }

    .site-hero .navigation-position-top    figcaption.caption-position-top    { padding-top:    calc(var(--swiper-pagination-bullet-size, 1rem) + 1rem); }
    .site-hero .navigation-position-bottom figcaption.caption-position-bottom { padding-bottom: calc(var(--swiper-pagination-bullet-size, 1rem) + 1rem); }
    .site-hero .navigation-position-left   figcaption                         { padding-left:   calc(var(--swiper-pagination-bullet-size, 1rem) + 1rem); }
    .site-hero .navigation-position-right  figcaption                         { padding-right:  calc(var(--swiper-pagination-bullet-size, 1rem) + 1rem); }

    .site-hero .navigation-type-1 figcaption {
        padding-left:  calc(var(--swiper-navigation-size, 44px) + 0.5rem);
        padding-right: calc(var(--swiper-navigation-size, 44px) + 0.5rem);
    }
}

/* [Structural] Mobile pagination — restore horizontal layout when left/right nav position stacked bullets vertically */
@media (max-width: 47.9375rem) {
    .site-hero .swiper-pagination-vertical {
        display: flex;
        flex-direction: row;
        width: auto;
    }
}

/* [Structural] Hide prev/next for all navigation types except arrows (type 1) */
.site-hero:not(:has(.navigation-type-1)) .swiper-button-prev,
.site-hero:not(:has(.navigation-type-1)) .swiper-button-next {
    display: none;
}

/* Material Symbols chevrons replace Swiper's default font glyphs */
.site-hero .swiper-button-prev,
.site-hero .swiper-button-next {
    --swiper-navigation-color: #fff;
    --swiper-navigation-bg: rgba(0, 0, 0, 0.5);
}
.site-hero .swiper-button-prev::after,
.site-hero .swiper-button-next::after {
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 1;
    text-transform: none;
    font-size: var(--swiper-navigation-size);
}
.site-hero .swiper-button-prev::after { content: 'chevron_left'; }
.site-hero .swiper-button-next::after { content: 'chevron_right'; }

/* Autoplay toggle button — color-1 blue 44x44, top-right overlay */
.site-hero .swiper-autoplay-toggle-button {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    background-color: var(--color-1);
    color: var(--color-over-1);
    cursor: pointer;
    z-index: 2;
}
@media (min-width: 48rem) {
    .site-hero .swiper-autoplay-toggle-button { display: inline-flex; align-items: center; justify-content: center; }
}
.site-hero .swiper-autoplay-toggle-button::after {
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 1;
    text-transform: none;
    font-size: 1.5rem;
}
.site-hero .swiper-autoplay-toggle-button.playing::after { content: 'pause'; }
.site-hero .swiper-autoplay-toggle-button.paused::after  { content: 'play_arrow'; }
.site-hero .swiper-autoplay-toggle-button:hover,
.site-hero .swiper-autoplay-toggle-button:focus-visible { opacity: 0.85; }

/* ---------- Quick Links (sits at the bottom of the hero, overlapping by 100px) ---------- */

.site-quicklinks {
    position: relative;
    margin-top: -100px;
    padding: 0 clamp(0.75rem, 3vw, 2.5rem) 3.5rem;
    z-index: 1;
}
.site-quicklinks .site-quicklinks__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
    gap: 12px;
    max-width: calc(4 * 220px + 3 * 56px);
}
@media (min-width: 64rem) {
    .site-quicklinks .site-quicklinks__list { gap: 21px; }
}
@media (min-width: 85.375rem) {
    .site-quicklinks .site-quicklinks__list { gap: 56px; }
}
.site-quicklinks .site-quicklinks__item {
    aspect-ratio: 1 / 1;
}
.site-quicklinks .site-quicklinks__card {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 6px;
    box-sizing: border-box;
    color: var(--color-over-1);
    text-decoration: none;
    background-color: var(--color-1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: padding 0.2s ease, color 0.2s ease;
}
.site-quicklinks .site-quicklinks__card:hover,
.site-quicklinks .site-quicklinks__card:focus-visible {
    padding: 0;
    color: var(--color-over-2);
}
.site-quicklinks .site-quicklinks__card:hover .site-quicklinks__panel,
.site-quicklinks .site-quicklinks__card:focus-visible .site-quicklinks__panel {
    background-color: color-mix(in srgb, var(--color-2) 75%, transparent);
    color: var(--color-over-2);
}
.site-quicklinks .site-quicklinks__card:hover .site-quicklinks__title,
.site-quicklinks .site-quicklinks__card:focus-visible .site-quicklinks__title,
.site-quicklinks .site-quicklinks__card:hover .site-quicklinks__icon,
.site-quicklinks .site-quicklinks__card:focus-visible .site-quicklinks__icon {
    color: var(--color-over-2);
}
.site-quicklinks .site-quicklinks__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, var(--color-1) 75%, transparent);
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.site-quicklinks .site-quicklinks__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    color: var(--color-over-1);
}
.site-quicklinks .site-quicklinks__icon svg,
.site-quicklinks .site-quicklinks__icon img {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.site-quicklinks .site-quicklinks__title {
    font-family: "newnord", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--color-over-1);
}
@media (min-width: 64rem) {
    .site-quicklinks .site-quicklinks__title { font-size: 1.25rem; }
}

/* ---------- Mission + Principal's Message composite (MonUI tabs) ---------- */

.site-spotlights {
    background-color: var(--color-2);
    color: var(--color-over-2);
    padding: 3rem clamp(0.75rem, 5vw, 6rem);
}
.site-spotlights .site-spotlights__inner {
    position: relative;
    overflow: hidden;
    max-width: 1266px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "tabs"
        "panels";
}
.site-spotlights .site-spotlights__tabs { grid-area: tabs; }
.site-spotlights .site-spotlights__panels { grid-area: panels; }
@media (min-width: 64rem) {
    .site-spotlights .site-spotlights__inner {
        grid-template-columns: minmax(0, 1fr) 220px;
        grid-template-areas: "panels tabs";
        align-items: stretch;
    }
}

/* Panel stack — active panel drives height; hidden panels are removed from flow. */
.site-spotlights .site-spotlights__panels {
    position: relative;
    background-color: #fff;
    color: #000;
    padding: 1.5rem;
    box-sizing: border-box;
}
.site-spotlights .site-spotlights__panels > .monui-panel {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.site-spotlights .site-spotlights__panels > .monui-panel[aria-hidden="true"] {
    display: none;
    visibility: hidden;
}
.site-spotlights .site-spotlights__image {
    display: block;
    width: 100%;
    height: auto;
}
.site-spotlights .site-spotlights__body {
    font-size: 1rem;
    line-height: 1.5;
}
.site-spotlights .site-spotlights__more {
    align-self: flex-start;
}

/* Tab strip — vertical column of 212×212 card-shaped handles */
.site-spotlights .site-spotlights__tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));
    gap: 1rem;
    max-width: calc(2 * 212px + 1rem);
    justify-self: center;
    width: 100%;
}
.site-spotlights .site-spotlights__tabs > li {
    aspect-ratio: 1 / 1;
}
@media (min-width: 64rem) {
    .site-spotlights .site-spotlights__tabs {
        grid-template-columns: 212px;
        grid-auto-rows: 212px;
        gap: 3.5rem;
        max-width: none;
        justify-self: initial;
        align-self: start;
        width: auto;
    }
    .site-spotlights .site-spotlights__tabs > li {
        aspect-ratio: initial;
    }
}
.site-spotlights .site-spotlights__tab {
    position: relative;
    border: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 6px;
    box-sizing: border-box;
    background-color: var(--color-2);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.site-spotlights .site-spotlights__tab[aria-selected="true"]::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 28px;
    height: 2rem;
    background-color: var(--color-1);
    pointer-events: none;
    z-index: 0;
}
@media (min-width: 64rem) {
    .site-spotlights .site-spotlights__tab[aria-selected="true"]::before {
        left: auto;
        top: 50%;
        right: 100%;
        transform: translateY(-50%);
        width: 2rem;
        height: 28px;
    }
}
.site-spotlights .site-spotlights__tab-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    background-color: color-mix(in srgb, var(--color-1) 75%, transparent);
    color: var(--color-over-1);
    text-transform: uppercase;
    font-family: "newnord", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
}
.site-spotlights .site-spotlights__tab[aria-selected="true"] .site-spotlights__tab-label {
    background-color: color-mix(in srgb, var(--color-2) 75%, transparent);
    color: var(--color-over-2);
}
.site-spotlights .site-spotlights__tab:hover .site-spotlights__tab-label,
.site-spotlights .site-spotlights__tab:focus-visible .site-spotlights__tab-label {
    background-color: color-mix(in srgb, var(--color-1) 90%, transparent);
}
.site-spotlights .site-spotlights__tab[aria-selected="true"]:hover .site-spotlights__tab-label,
.site-spotlights .site-spotlights__tab[aria-selected="true"]:focus-visible .site-spotlights__tab-label {
    background-color: color-mix(in srgb, var(--color-2) 90%, transparent);
}

/* Shared CTA button shapes — Button Secondary (yellow) is default; --primary is the blue Button Primary. */
.site-homepage .site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    background-color: var(--color-2);
    color: var(--color-over-2);
    text-decoration: none;
    font-family: "newnord", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 24px;
    border: 0;
    cursor: pointer;
}
.site-homepage .site-cta:hover,
.site-homepage .site-cta:focus-visible {
    background-color: #fff;
    color: var(--color-over-2);
}
.site-homepage .site-cta--primary {
    background-color: var(--color-1);
    color: var(--color-over-1);
}
.site-homepage .site-cta--primary:hover,
.site-homepage .site-cta--primary:focus-visible {
    background-color: color-mix(in srgb, var(--color-2) 90%, white);
    color: var(--color-over-2);
}
.site-homepage .site-cta--sm {
    padding: 8px 40px;
}
@media (min-width: 64rem) {
    .site-homepage .site-cta {
        min-width: 330px;
    }
    .site-homepage .site-cta--sm {
        min-width: 0;
    }
}

/* ---------- News ---------- */

.site-news {
    background-color: var(--color-1);
    color: var(--color-over-1);
    padding: 3rem clamp(0.75rem, 5vw, 100px);
    position: relative;
    overflow: hidden;
}
.site-news .site-news__inner {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
}
.site-news .site-news__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% + 177px);
    width: 245px;
    height: 300px;
    background-image: url("/pics/school_logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}
.site-news .site-news__inner > * {
    position: relative;
    z-index: 1;
}
.site-news .site-news__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.site-news .site-news__heading {
    margin: 0;
    font-family: "industry", sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-over-1);
}
.site-news .site-news__instagram { /* uses .site-cta base */ }

.site-news .swiper { width: 100%; }

.site-news .site-news__card {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}
.site-news .site-news__photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 351 / 263;
    object-fit: cover;
}
.site-news .site-news__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #000;
}
@media (min-width: 64rem) {
    .site-news .site-news__card {
        aspect-ratio: 276 / 368;
    }
    .site-news .site-news__photo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: initial;
    }
    .site-news .site-news__card::after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1;
        pointer-events: none;
    }
    .site-news .site-news__content {
        position: relative;
        z-index: 2;
        margin-top: auto;
        padding: 12px;
        background-color: transparent;
    }
}
.site-news .site-news__title {
    margin: 0;
    font-family: "industry", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
    text-transform: uppercase;
}
.site-news .site-news__link {
    color: #fff;
    text-decoration: none;
}
.site-news .site-news__link:hover,
.site-news .site-news__link:focus-visible { text-decoration: underline; }
.site-news .site-news__summary {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #fff;
}

.site-news .site-news__controls {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.site-news .site-news__controls .swiper-button-prev,
.site-news .site-news__controls .swiper-button-next {
    --swiper-navigation-color: var(--color-2);
    --swiper-navigation-size: 2rem;
    position: static;
    margin: 0;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    background: transparent;
}
.site-news .site-news__controls .swiper-button-prev::after,
.site-news .site-news__controls .swiper-button-next::after {
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 1, 'wght' 700;
    text-transform: none;
}
.site-news .site-news__controls .swiper-button-prev::after { content: 'chevron_left'; }
.site-news .site-news__controls .swiper-button-next::after { content: 'chevron_right'; }

/* ---------- Events ---------- */

.site-events {
    background-color: #fff;
    color: #000;
    padding: 3rem clamp(0.75rem, 5vw, 100px);
    position: relative;
}
.site-events .site-events__inner {
    max-width: 1366px;
    margin: 0 auto;
}
.site-events .site-events__heading {
    margin: 0 0 2rem;
    font-family: "industry", sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-1);
    filter: brightness(var(--color-1-isDark));
}

.site-events .swiper { width: 100%; }

.site-events .site-events__card {
    display: flex;
    flex-direction: column;
    color: #000;
    height: 100%;
}
.site-events .site-events__badge {
    display: grid;
    grid-template-columns: 1fr auto;
    text-align: center;
    font-family: "newnord", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
}
.site-events .site-events__badge-month {
    background-color: var(--color-2);
    color: var(--color-over-2);
    padding: 16px 20px;
}
.site-events .site-events__badge-day {
    background-color: var(--color-1);
    color: var(--color-over-1);
    padding: 16px 20px;
    min-width: 53px;
    box-sizing: border-box;
}
.site-events .site-events__body {
    background-color: #F2F2F2;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.site-events .site-events__title {
    margin: 0;
    font-family: "newnord", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}
.site-events .site-events__link {
    color: #000;
    text-decoration: none;
}
.site-events .site-events__link:hover,
.site-events .site-events__link:focus-visible { text-decoration: underline; }
.site-events .site-events__meta {
    margin: 0;
    font-family: "newnord", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.site-events .site-events__meta-label {
    font-weight: 400;
    margin-right: 0.25rem;
}

.site-events .site-events__controls {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.site-events .site-events__controls .swiper-button-prev,
.site-events .site-events__controls .swiper-button-next {
    --swiper-navigation-color: var(--color-1);
    --swiper-navigation-size: 2rem;
    position: static;
    margin: 0;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    background: transparent;
}
.site-events .site-events__controls .swiper-button-prev::after,
.site-events .site-events__controls .swiper-button-next::after {
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 1, 'wght' 700;
    text-transform: none;
}
.site-events .site-events__controls .swiper-button-prev::after { content: 'chevron_left'; }
.site-events .site-events__controls .swiper-button-next::after { content: 'chevron_right'; }

/* ---------- Infographics ---------- */

.site-infographics {
    background-color: var(--color-2);
    color: var(--color-over-2);
    padding: 3rem clamp(0.75rem, 5vw, 100px);
    position: relative;
}
.site-infographics .site-infographics__inner {
    max-width: 1366px;
    margin: 0 auto;
}
.site-infographics .site-infographics__heading {
    margin: 0 0 2rem;
    font-family: "industry", sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-1);
    filter: brightness(var(--color-1-isDark));
}
.site-infographics .site-infographics__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.site-infographics .swiper {
    flex: 1;
    width: 100%;
}
.site-infographics .site-infographics__row .swiper-button-prev,
.site-infographics .site-infographics__row .swiper-button-next {
    --swiper-navigation-color: var(--color-1);
    --swiper-navigation-size: 2rem;
    position: static;
    margin: 0;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    background: transparent;
    flex: 0 0 auto;
}
.site-infographics .site-infographics__row .swiper-button-prev::after,
.site-infographics .site-infographics__row .swiper-button-next::after {
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 1, 'wght' 700;
    text-transform: none;
}
.site-infographics .site-infographics__row .swiper-button-prev::after { content: 'chevron_left'; }
.site-infographics .site-infographics__row .swiper-button-next::after { content: 'chevron_right'; }
.site-infographics .site-infographics__tile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}
.site-infographics .site-infographics__photo {
    width: 100%;
    aspect-ratio: 220 / 124;
    padding: 6px;
    box-sizing: border-box;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--color-1);
}
.site-infographics .site-infographics__photo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    padding: 4px;
    box-sizing: border-box;
    background-color: color-mix(in srgb, var(--color-1) 80%, transparent);
}
.site-infographics .site-infographics__icon {
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
    color: var(--color-over-1);
}
.site-infographics .site-infographics__icon svg,
.site-infographics .site-infographics__icon img {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.site-infographics .site-infographics__value {
    font-family: "industry", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 39px;
    color: var(--color-over-1);
}
.site-infographics .site-infographics__label {
    margin: 0;
    font-family: "newnord", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--color-1);
}

/* ---------- Social Media row (brand colors — no .flat-icon-colors) ---------- */

.site-social {
    background-color: #fff;
    padding: 1.5rem clamp(0.75rem, 5vw, 6rem);
}
.site-social .site-social__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.site-social .site-social__link {
    display: inline-flex;
    width: 72px;
    height: 72px;
    padding: 6px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}
.site-social .site-social__link svg,
.site-social .site-social__link img {
    width: 100%;
    height: 100%;
}
.site-social .site-social__link:hover,
.site-social .site-social__link:focus-visible {
    opacity: 0.85;
}

/* ---------- Footer ---------- */

.site-footer {
    display: flex;
    flex-direction: column;
}
.site-footer .site-footer__top {
    background-color: var(--color-1);
    color: var(--color-over-1);
    padding: 2.5rem clamp(0.75rem, 5vw, 100px);
}
.site-footer .site-footer__top-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
}
@media (min-width: 48rem) {
    .site-footer .site-footer__top-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.site-footer .site-footer__identity {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--color-over-1);
    text-decoration: none;
}
.site-footer .site-footer__logo {
    height: 88px;
    width: auto;
}
.site-footer .site-footer__wordmark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.site-footer .site-footer__wordmark-line--lead {
    font-family: "industry", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 39px;
}
.site-footer .site-footer__wordmark-line:not(.site-footer__wordmark-line--lead) {
    font-family: "newnord", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.site-footer .site-footer__contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    color: var(--color-over-1);
    font-family: "newnord", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: inherit;
}
.site-footer .site-footer__address,
.site-footer .site-footer__contact-link {
    color: var(--color-over-1);
    text-decoration: underline;
}
.site-footer .site-footer__address:hover,
.site-footer .site-footer__address:focus-visible,
.site-footer .site-footer__contact-link:hover,
.site-footer .site-footer__contact-link:focus-visible {
    text-decoration: none;
}
.site-footer .site-footer__contact-label {
    margin-right: 0.25rem;
}

/* Edlio attribution strip — color-2 yellow band */
.site-footer .site-footer__edlio {
    background-color: var(--color-2);
    color: var(--color-over-2);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.site-footer .site-footer__edlio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-over-2);
    text-decoration: none;
}
.site-footer .site-footer__edlio-link:hover,
.site-footer .site-footer__edlio-link:focus-visible {
    text-decoration: underline;
}
.site-footer .site-footer__edlio-link svg {
    fill: currentColor;
}
/* Edlio brand-standard sizes */
.site-footer .site-footer__edlio-link:nth-of-type(1) svg { width: 140px; height: 20px; }
.site-footer .site-footer__edlio-link:nth-of-type(2) svg { height: 1.5rem; width: auto; }
