:root {
    --glm-primary: #274A9C;
    --glm-primary-light: #384CA6;
    --glm-primary-dark: #203D82;
    --glm-navy: #0B2F6B;

    --glm-accent: #76B9E6;
    --glm-accent-soft: #D9EEFA;

    --glm-surface: #FFFFFF;
    --glm-background: #FFFFFF;
    --glm-background-soft: #F5F7FB;

    --glm-text-primary: #303847;
    --glm-text-secondary: #8F98A8;
    --glm-text-on-dark: #FFFFFF;

    --glm-border: #E3E7EE;

    --glm-container: 1200px;

    --glm-space-xs: 8px;
    --glm-space-sm: 12px;
    --glm-space-md: 16px;
    --glm-space-lg: 24px;
    --glm-space-xl: 32px;
    --glm-space-2xl: 48px;
    --glm-space-3xl: 72px;
    --glm-space-4xl: 96px;

    --glm-radius-sm: 10px;
    --glm-radius-md: 14px;
    --glm-radius-lg: 18px;
    --glm-radius-pill: 999px;

    --glm-shadow-sm: 0 4px 18px rgba(32, 61, 130, 0.08);
    --glm-shadow-md: 0 12px 32px rgba(32, 61, 130, 0.10);
    --glm-z-header: 20;
    --glm-z-drawer-backdrop: 40;
    --glm-z-drawer: 41;
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--glm-text-primary);
    background: var(--glm-background);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.glm-drawer-open {
    overflow: hidden;
}

img,
svg,
video,
iframe,
embed,
object {
    max-width: 100%;
}

img,
video {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
input[type="submit"],
input[type="button"] {
    min-height: 44px;
}

button {
    cursor: pointer;
}

a {
    color: var(--glm-primary);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
    overflow-wrap: anywhere;
}

a:hover {
    color: var(--glm-primary-dark);
}

:focus-visible {
    outline: 3px solid var(--glm-accent);
    outline-offset: 3px;
}

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

.glm-container {
    width: min(calc(100% - 40px), var(--glm-container));
    margin-inline: auto;
}

.glm-skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 20px;
    padding: 10px 16px;
    color: var(--glm-text-on-dark);
    background: var(--glm-primary-dark);
    border-radius: var(--glm-radius-sm);
    transform: translateY(-180%);
}

.glm-skip-link:focus {
    color: var(--glm-text-on-dark);
    transform: translateY(0);
}

.glm-site-header {
    position: relative;
    z-index: var(--glm-z-header);
    background: var(--glm-surface);
    border-bottom: 1px solid var(--glm-border);
    box-shadow: 0 3px 16px rgba(32, 61, 130, 0.05);
}

.glm-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--glm-space-lg);
    min-height: 80px;
}

.glm-header__brand {
    min-width: 0;
}

.glm-logo {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: inherit;
    text-decoration: none;
}

.glm-logo:hover {
    color: inherit;
}

.glm-logo__image {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 58px;
    object-fit: contain;
}

.glm-primary-nav--desktop {
    justify-self: end;
}

.glm-primary-nav__menu,
.glm-mobile-nav__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.glm-primary-nav__menu a,
.glm-mobile-nav__menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 14px;
    color: var(--glm-text-primary);
    border-radius: var(--glm-radius-sm);
    text-decoration: none;
}

.glm-primary-nav__menu a:hover,
.glm-primary-nav__menu a:focus-visible,
.glm-mobile-nav__menu a:hover,
.glm-mobile-nav__menu a:focus-visible {
    color: var(--glm-primary);
    background: var(--glm-background-soft);
}

.glm-primary-nav__menu .current-menu-item > a,
.glm-primary-nav__menu .current_page_item > a,
.glm-mobile-nav__menu .current-menu-item > a,
.glm-mobile-nav__menu .current_page_item > a {
    color: var(--glm-primary);
    font-weight: 700;
}

.glm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 20px;
    color: var(--glm-text-on-dark);
    background: var(--glm-primary);
    border: 1px solid var(--glm-primary);
    border-radius: var(--glm-radius-pill);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.glm-button:hover {
    color: var(--glm-text-on-dark);
    background: var(--glm-primary-dark);
    border-color: var(--glm-primary-dark);
    transform: translateY(-1px);
}

.glm-button:active {
    transform: translateY(1px);
}

.glm-button--secondary {
    color: var(--glm-text-on-dark);
    background: rgba(11, 47, 107, 0.28);
    border-color: rgba(255, 255, 255, 0.7);
}

.glm-button--secondary:hover {
    background: rgba(11, 47, 107, 0.58);
    border-color: var(--glm-text-on-dark);
}

.glm-header__cta--desktop {
    justify-self: end;
    white-space: nowrap;
}

.glm-mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    margin-left: auto;
    padding: 8px 12px;
    color: var(--glm-primary);
    background: var(--glm-surface);
    border: 1px solid var(--glm-border);
    border-radius: var(--glm-radius-sm);
    font-weight: 700;
}

.glm-mobile-menu-toggle:hover {
    background: var(--glm-background-soft);
}

.glm-mobile-drawer__backdrop,
.glm-mobile-drawer {
    position: fixed;
    inset: 0;
}

.glm-mobile-drawer__backdrop {
    z-index: var(--glm-z-drawer-backdrop);
    width: 100%;
    min-height: 100%;
    padding: 0;
    background: rgba(11, 47, 107, 0.46);
    border: 0;
}

.glm-mobile-drawer {
    z-index: var(--glm-z-drawer);
    pointer-events: none;
}

.glm-mobile-drawer[hidden],
.glm-mobile-drawer__backdrop[hidden] {
    display: none;
}

.glm-mobile-drawer__panel {
    width: min(100%, 420px);
    min-height: 100%;
    margin-left: auto;
    padding: var(--glm-space-md) 20px calc(var(--glm-space-xl) + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--glm-surface);
    box-shadow: -12px 0 32px rgba(32, 61, 130, 0.14);
    pointer-events: auto;
}

.glm-mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--glm-space-md);
    min-height: 56px;
    padding-bottom: var(--glm-space-md);
    border-bottom: 1px solid var(--glm-border);
}

.glm-mobile-drawer__close {
    display: inline-grid;
    place-items: center;
    width: 44px;
    min-width: 44px;
    padding: 0;
    color: var(--glm-primary);
    background: transparent;
    border: 1px solid var(--glm-border);
    border-radius: var(--glm-radius-sm);
    font-size: 1.6rem;
    line-height: 1;
}

.glm-mobile-nav {
    padding-block: var(--glm-space-lg);
}

.glm-mobile-nav__menu {
    display: grid;
    gap: 4px;
}

.glm-mobile-nav__menu a {
    width: 100%;
    padding-inline: 12px;
    border-bottom: 1px solid var(--glm-border);
    border-radius: 0;
}

.glm-mobile-drawer__cta {
    width: 100%;
}

.glm-site-main {
    min-height: 24rem;
}

.glm-landing-section {
    padding-block: clamp(56px, 7vw, 96px);
}

.glm-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: clamp(520px, 64vw, 720px);
    color: var(--glm-text-on-dark);
    background-color: var(--glm-navy);
    background-image: var(--glm-hero-image, none);
    background-position: center;
    background-size: cover;
}

.glm-hero::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 47, 107, 0.94) 0%, rgba(11, 47, 107, 0.78) 45%, rgba(11, 47, 107, 0.40) 100%);
    content: "";
}

.glm-hero__particles {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
}

.glm-hero__particles canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.glm-hero__inner {
    width: min(calc(100% - 40px), var(--glm-container));
}

.glm-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: end;
    gap: var(--glm-space-2xl) clamp(32px, 7vw, 96px);
}

.glm-hero h1 {
    grid-column: 1 / -1;
    max-width: 780px;
    margin: 0;
    color: var(--glm-text-on-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    text-wrap: balance;
}

.glm-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--glm-space-sm);
}

.glm-hero__countdown {
    align-self: end;
    width: 100%;
    max-width: 460px;
    padding: var(--glm-space-lg);
    background: rgba(11, 47, 107, 0.60);
    border: 1px solid rgba(217, 238, 250, 0.38);
    border-radius: var(--glm-radius-lg);
    box-shadow: var(--glm-shadow-md);
    backdrop-filter: blur(7px);
}

.glm-hero__countdown[hidden] {
    display: none;
}

.glm-hero__countdown-title {
    margin: 0 0 var(--glm-space-md);
    color: var(--glm-text-on-dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.glm-countdown__values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--glm-space-sm);
}

.glm-countdown__unit {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 12px 8px;
    color: var(--glm-text-on-dark);
    background: rgba(32, 61, 130, 0.72);
    border: 1px solid rgba(217, 238, 250, 0.22);
    border-radius: var(--glm-radius-sm);
    text-align: center;
}

.glm-countdown__unit > span:last-child {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
}

.glm-countdown__value {
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: 1.1;
}

.glm-about {
    background: var(--glm-background-soft);
}

.glm-about__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: clamp(40px, 8vw, 96px);
    align-items: start;
}

.glm-about__layout--accordions-only {
    display: block;
}

.glm-about h2,
.glm-timeline h2,
.glm-page-header h1,
.glm-page__header h1,
.glm-article__header h1,
.glm-not-found h1 {
    margin: 0;
    color: var(--glm-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.14;
    text-wrap: balance;
}

.glm-about h2,
.glm-timeline h2 {
    font-size: clamp(32px, 3vw, 46px);
}

.glm-content > :first-child,
.glm-rich-text > :first-child {
    margin-top: 0;
}

.glm-content > :last-child,
.glm-rich-text > :last-child {
    margin-bottom: 0;
}

.glm-about__description {
    max-width: 54ch;
    margin-top: var(--glm-space-lg);
}

.glm-about__accordions {
    display: grid;
    gap: var(--glm-space-sm);
}

.glm-accordion {
    overflow: hidden;
    background: var(--glm-surface);
    border: 1px solid var(--glm-border);
    border-radius: var(--glm-radius-md);
    box-shadow: var(--glm-shadow-sm);
}

.glm-accordion__heading {
    margin: 0;
}

.glm-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--glm-space-md);
    width: 100%;
    min-height: 68px;
    padding: 16px 20px;
    color: var(--glm-navy);
    background: transparent;
    border: 0;
    text-align: left;
    font-weight: 700;
}

.glm-accordion__trigger:hover {
    color: var(--glm-primary);
    background: var(--glm-background-soft);
}

.glm-accordion__icon {
    flex: 0 0 auto;
    color: var(--glm-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
}

.glm-accordion__description {
    padding: 0 20px 20px;
    border-top: 1px solid var(--glm-border);
}

.glm-timeline {
    background: var(--glm-surface);
}

.glm-timeline h2 {
    margin-bottom: var(--glm-space-2xl);
}

.glm-timeline__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: var(--glm-space-md);
    scrollbar-color: var(--glm-primary-light) var(--glm-background-soft);
    scrollbar-width: thin;
}

.glm-timeline__list {
    position: relative;
    display: flex;
    min-width: max-content;
    margin: 0;
    padding: 48px 0 16px;
    list-style: none;
}

.glm-timeline__list::before {
    position: absolute;
    top: 23px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--glm-accent);
    content: "";
}

.glm-timeline__item {
    position: relative;
    width: 300px;
    min-width: 300px;
    padding: 0 24px;
}

.glm-timeline__item:first-child {
    padding-left: 0;
}

.glm-timeline__node {
    position: absolute;
    z-index: 1;
    top: -32px;
    left: 24px;
    width: 16px;
    height: 16px;
    background: var(--glm-primary);
    border: 4px solid var(--glm-surface);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--glm-primary);
}

.glm-timeline__item:first-child .glm-timeline__node {
    left: 0;
}

.glm-timeline__date {
    display: block;
    color: var(--glm-primary);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

.glm-timeline__item h3 {
    margin: 10px 0 0;
    color: var(--glm-navy);
    font-size: 1.2rem;
    line-height: 1.25;
}

.glm-timeline__description {
    margin-top: 12px;
    color: var(--glm-text-secondary);
    font-size: 0.95rem;
}

.glm-page,
.glm-posts-index,
.glm-single-post,
.glm-index,
.glm-category-archive,
.glm-not-found {
    padding-block: clamp(56px, 7vw, 96px);
}

.glm-breadcrumbs {
    margin-bottom: var(--glm-space-xl);
    color: var(--glm-text-secondary);
    font-size: 0.85rem;
}

.glm-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.glm-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.glm-breadcrumbs li:not(:last-child)::after {
    color: var(--glm-text-secondary);
    content: "/";
}

.glm-breadcrumbs a {
    color: var(--glm-text-secondary);
}

.glm-breadcrumbs [aria-current="page"] {
    color: var(--glm-text-primary);
}

.glm-page-header,
.glm-page__header,
.glm-article__header {
    margin-bottom: var(--glm-space-2xl);
}

.glm-page-header h1,
.glm-page__header h1 {
    font-size: clamp(36px, 4vw, 56px);
}

.glm-page-header__intro {
    max-width: 68ch;
    margin-top: var(--glm-space-lg);
    color: var(--glm-text-secondary);
}

.glm-archive-intro {
    max-width: 780px;
    padding: var(--glm-space-2xl);
    background: var(--glm-background-soft);
    border-radius: var(--glm-radius-lg);
}

.glm-archive-controls {
    display: grid;
    gap: var(--glm-space-lg);
    margin-bottom: var(--glm-space-2xl);
}

.glm-search-form {
    position: relative;
    width: min(100%, 520px);
}

.glm-search-form input[type="search"] {
    width: 100%;
    min-height: 52px;
    padding: 12px 56px 12px 16px;
    color: var(--glm-text-primary);
    background: var(--glm-surface);
    border: 1px solid var(--glm-border);
    border-radius: var(--glm-radius-sm);
}

.glm-search-form input[type="search"]::placeholder {
    color: var(--glm-text-secondary);
}

.glm-search-form__submit {
    position: absolute;
    top: 4px;
    right: 4px;
    display: grid;
    place-items: center;
    width: 44px;
    min-height: 44px;
    padding: 0;
    color: var(--glm-primary);
    background: transparent;
    border: 0;
    border-radius: var(--glm-radius-sm);
}

.glm-search-form__submit:hover {
    background: var(--glm-accent-soft);
}

.glm-search-form__submit svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.glm-archive-tabs__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
}

.glm-archive-tabs__list {
    display: flex;
    gap: 6px;
    min-width: max-content;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid var(--glm-border);
}

.glm-archive-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 8px 14px;
    color: var(--glm-text-secondary);
    border-bottom: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.glm-archive-tabs a:hover,
.glm-archive-tabs a.is-active {
    color: var(--glm-primary);
}

.glm-archive-tabs a.is-active {
    border-bottom-color: var(--glm-primary);
    font-weight: 700;
}

.glm-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--glm-space-lg);
}

.glm-post-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    background: var(--glm-surface);
    border: 1px solid var(--glm-border);
    border-radius: var(--glm-radius-md);
    box-shadow: var(--glm-shadow-sm);
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.glm-post-card:hover {
    border-color: var(--glm-accent);
    box-shadow: var(--glm-shadow-md);
    transform: translateY(-2px);
}

.glm-post-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--glm-background-soft);
}

.glm-post-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glm-post-card__body {
    display: flex;
    min-height: 248px;
    flex: 1;
    flex-direction: column;
    gap: var(--glm-space-sm);
    padding: var(--glm-space-lg);
}

.glm-post-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.glm-post-card__date {
    color: var(--glm-text-secondary);
    font-size: 0.84rem;
}

.glm-category-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 9px;
    color: var(--glm-primary);
    background: var(--glm-accent-soft);
    border: 1px solid rgba(118, 185, 230, 0.6);
    border-radius: var(--glm-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.glm-category-badge:hover {
    color: var(--glm-primary-dark);
    background: #c6e4f5;
}

.glm-post-card__title {
    margin: 0;
    color: var(--glm-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.2;
    text-wrap: balance;
}

.glm-post-card__title a {
    color: inherit;
    text-decoration: none;
}

.glm-post-card__title a:hover {
    color: var(--glm-primary);
}

.glm-post-card__excerpt {
    color: var(--glm-text-secondary);
    font-size: 0.95rem;
}

.glm-post-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: var(--glm-space-md);
    color: var(--glm-primary);
    border-top: 1px solid var(--glm-border);
    font-weight: 700;
    text-decoration: none;
}

.glm-post-card__read-more:hover {
    color: var(--glm-primary-dark);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: var(--glm-space-3xl);
}

.nav-links .page-numbers {
    display: inline-grid;
    min-width: 44px;
    min-height: 44px;
    place-items: center;
    padding: 8px 12px;
    color: var(--glm-primary);
    background: var(--glm-surface);
    border: 1px solid var(--glm-border);
    border-radius: var(--glm-radius-sm);
    text-decoration: none;
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
    color: var(--glm-text-on-dark);
    background: var(--glm-primary);
    border-color: var(--glm-primary);
}

.glm-empty-state {
    margin: 0;
    padding: var(--glm-space-lg);
    color: var(--glm-text-secondary);
    background: var(--glm-background-soft);
    border: 1px solid var(--glm-border);
    border-radius: var(--glm-radius-md);
}

.glm-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: clamp(48px, 8vw, 96px);
    align-items: start;
}

.glm-article__header h1 {
    margin-top: var(--glm-space-lg);
    font-size: clamp(36px, 4vw, 58px);
}

.glm-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--glm-space-md);
    color: var(--glm-text-secondary);
    font-size: 0.9rem;
}

.glm-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--glm-space-sm) var(--glm-space-md);
    margin-bottom: var(--glm-space-2xl);
    padding-block: var(--glm-space-md);
    border-top: 1px solid var(--glm-border);
    border-bottom: 1px solid var(--glm-border);
}

.glm-share__label {
    color: var(--glm-navy);
    font-weight: 700;
}

.glm-share__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.glm-share__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 7px 12px;
    color: var(--glm-primary);
    background: var(--glm-surface);
    border: 1px solid var(--glm-border);
    border-radius: var(--glm-radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

.glm-share__link:hover,
.glm-share__link[data-copied="true"] {
    color: var(--glm-primary-dark);
    background: var(--glm-accent-soft);
    border-color: var(--glm-accent);
}

.glm-article__featured-media {
    margin: 0 0 var(--glm-space-2xl);
}

.glm-article__featured-media img {
    display: block;
    width: 100%;
    border-radius: var(--glm-radius-md);
}

.glm-article__content {
    font-size: 1.05rem;
}

.glm-single__sidebar {
    display: grid;
    gap: var(--glm-space-2xl);
}

.glm-sidebar-section {
    padding-top: var(--glm-space-lg);
    border-top: 2px solid var(--glm-primary);
}

.glm-sidebar-section h2 {
    margin: 0;
    color: var(--glm-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.2;
}

.glm-sidebar-section__heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--glm-space-md);
}

.glm-sidebar-section__heading a {
    flex: 0 0 auto;
    font-size: 0.84rem;
    font-weight: 700;
}

.glm-latest-posts,
.glm-category-list {
    display: grid;
    gap: var(--glm-space-md);
    margin: var(--glm-space-lg) 0 0;
    padding: 0;
    list-style: none;
}

.glm-latest-post {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: var(--glm-space-sm);
    align-items: start;
}

.glm-latest-post--no-media {
    grid-template-columns: minmax(0, 1fr);
}

.glm-latest-post:not(:first-child) {
    padding-top: var(--glm-space-md);
    border-top: 1px solid var(--glm-border);
}

.glm-latest-post__media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--glm-radius-sm);
    background: var(--glm-background-soft);
}

.glm-latest-post__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glm-latest-post h3 {
    margin: 0;
    color: var(--glm-text-primary);
    font-size: 0.95rem;
    line-height: 1.35;
}

.glm-latest-post h3 a {
    color: inherit;
    text-decoration: none;
}

.glm-latest-post time {
    display: block;
    margin-top: 5px;
    color: var(--glm-text-secondary);
    font-size: 0.78rem;
}

.glm-category-list li + li {
    border-top: 1px solid var(--glm-border);
}

.glm-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--glm-space-md);
    min-height: 44px;
    color: var(--glm-text-primary);
    text-decoration: none;
}

.glm-category-list a:hover {
    color: var(--glm-primary);
}

.glm-category-list a > span:last-child {
    color: var(--glm-text-secondary);
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}

.glm-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--glm-space-sm);
    margin-top: var(--glm-space-2xl);
}

.glm-page-links__label {
    font-weight: 700;
}

.glm-rich-text {
    color: var(--glm-text-primary);
}

.glm-rich-text p {
    max-width: 68ch;
    margin-block: 0 var(--glm-space-lg);
}

.glm-rich-text a {
    color: var(--glm-primary);
    text-decoration: underline;
}

.glm-rich-text strong {
    font-weight: 700;
}

.glm-rich-text em {
    font-style: italic;
}

.glm-rich-text u {
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.14em;
}

.glm-rich-text h1,
.glm-rich-text h2,
.glm-rich-text h3,
.glm-rich-text h4,
.glm-rich-text h5,
.glm-rich-text h6 {
    max-width: 68ch;
    margin: var(--glm-space-2xl) 0 var(--glm-space-md);
    color: var(--glm-navy);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.2;
}

.glm-rich-text h1 {
    font-size: clamp(32px, 4vw, 48px);
}

.glm-rich-text h2 {
    font-size: clamp(28px, 3vw, 40px);
}

.glm-rich-text h3 {
    font-size: 1.5rem;
}

.glm-rich-text ul,
.glm-rich-text ol {
    max-width: 68ch;
    margin: 0 0 var(--glm-space-lg);
    padding-left: 1.5em;
}

.glm-rich-text li + li {
    margin-top: 6px;
}

.glm-rich-text blockquote {
    max-width: 68ch;
    margin: var(--glm-space-2xl) 0;
    padding: 4px 0 4px var(--glm-space-lg);
    color: var(--glm-navy);
    border-left: 4px solid var(--glm-accent);
}

.glm-rich-text img,
.glm-rich-text video,
.glm-rich-text iframe {
    max-width: 100%;
}

.glm-rich-text figure {
    margin: var(--glm-space-2xl) 0;
}

.glm-rich-text figcaption {
    margin-top: var(--glm-space-sm);
    color: var(--glm-text-secondary);
    font-size: 0.85rem;
}

.glm-rich-text table {
    display: block;
    width: 100%;
    margin: var(--glm-space-2xl) 0;
    overflow-x: auto;
    border-collapse: collapse;
}

.glm-rich-text th,
.glm-rich-text td {
    min-width: 140px;
    padding: 10px 12px;
    border: 1px solid var(--glm-border);
    text-align: left;
}

.glm-rich-text th {
    color: var(--glm-navy);
    background: var(--glm-background-soft);
}

.glm-rich-text hr {
    margin: var(--glm-space-2xl) 0;
    border: 0;
    border-top: 1px solid var(--glm-border);
}

.glm-site-footer {
    padding-block: var(--glm-space-4xl) var(--glm-space-xl);
    color: var(--glm-text-on-dark);
    background: var(--glm-navy);
}

.glm-site-footer .glm-logo {
    color: var(--glm-text-on-dark);
}

.glm-site-footer .glm-logo__image {
    max-width: 240px;
}

.glm-footer__content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--glm-space-3xl);
}

.glm-footer__identity,
.glm-footer__group {
    min-width: 0;
}

.glm-footer__organization {
    margin-top: var(--glm-space-lg);
}

.glm-footer__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.glm-footer__organization-name {
    max-width: 30ch;
    margin: 5px 0 0;
    color: var(--glm-text-on-dark);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
}

.glm-footer__cta {
    margin-top: var(--glm-space-xl);
    color: var(--glm-primary);
    background: var(--glm-surface);
    border-color: var(--glm-surface);
}

.glm-footer__cta:hover {
    color: var(--glm-primary-dark);
    background: var(--glm-accent-soft);
    border-color: var(--glm-accent-soft);
}

.glm-footer__group h2 {
    margin: 0 0 var(--glm-space-md);
    color: var(--glm-text-on-dark);
    font-size: 1rem;
}

.glm-footer__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.glm-site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.glm-site-footer a:hover {
    color: var(--glm-text-on-dark);
}

.glm-site-footer .glm-footer__cta {
    color: var(--glm-primary);
}

.glm-site-footer .glm-footer__cta:hover {
    color: var(--glm-primary-dark);
}

.glm-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    text-decoration: none;
}

.glm-social-link__icon {
    display: block;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.glm-footer__copyright {
    margin-top: var(--glm-space-3xl);
    padding-top: var(--glm-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.glm-footer__copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

@media (max-width: 63.99rem) {
    .glm-footer__content,
    .glm-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .glm-single__layout {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
        gap: var(--glm-space-2xl);
    }
}

@media (max-width: 47.99rem) {
    .glm-container,
    .glm-hero__inner {
        width: min(calc(100% - 32px), var(--glm-container));
    }

    .glm-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 72px;
    }

    .glm-primary-nav--desktop,
    .glm-header__cta--desktop {
        display: none;
    }

    .glm-mobile-menu-toggle {
        display: inline-flex;
    }

    .glm-landing-section,
    .glm-page,
    .glm-posts-index,
    .glm-single-post,
    .glm-index,
    .glm-category-archive,
    .glm-not-found {
        padding-block: 48px;
    }

    .glm-hero {
        min-height: 0;
    }

    .glm-hero::before {
        background: linear-gradient(180deg, rgba(11, 47, 107, 0.88) 0%, rgba(11, 47, 107, 0.76) 100%);
    }

    .glm-hero__content {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--glm-space-xl);
    }

    .glm-hero h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .glm-hero__actions,
    .glm-hero__actions .glm-button {
        width: 100%;
    }

    .glm-hero__countdown {
        max-width: none;
    }

    .glm-about__layout,
    .glm-single__layout,
    .glm-footer__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: var(--glm-space-2xl);
    }

    .glm-footer__content > * + * {
        padding-top: var(--glm-space-2xl);
        border-top: 1px solid rgba(255, 255, 255, 0.24);
    }

    .glm-about__layout--accordions-only {
        display: block;
    }

    .glm-timeline__viewport {
        overflow: visible;
        padding-bottom: 0;
    }

    .glm-timeline__list {
        display: grid;
        min-width: 0;
        gap: 0;
        padding: 0 0 0 32px;
    }

    .glm-timeline__list::before {
        top: 0;
        right: auto;
        bottom: 0;
        left: 7px;
        width: 2px;
        height: auto;
    }

    .glm-timeline__item,
    .glm-timeline__item:first-child {
        width: auto;
        min-width: 0;
        padding: 0 0 var(--glm-space-2xl);
    }

    .glm-timeline__item:last-child {
        padding-bottom: 0;
    }

    .glm-timeline__node,
    .glm-timeline__item:first-child .glm-timeline__node {
        top: 5px;
        left: -32px;
        width: 16px;
        height: 16px;
    }

    .glm-archive-intro {
        padding: var(--glm-space-xl);
    }

    .glm-post-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .glm-post-card__body {
        min-height: 0;
    }

    .glm-share {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 29.99rem) {
    .glm-countdown__values {
        gap: 6px;
    }

    .glm-countdown__unit {
        padding-inline: 4px;
    }

    .glm-countdown__unit > span:last-child {
        font-size: 0.7rem;
    }

    .glm-share__actions {
        width: 100%;
    }

    .glm-share__link {
        flex: 1 1 auto;
    }
}

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

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