/* Foundations */
:root {
    --nsh-bg: #f4f8fb;
    --nsh-surface: #ffffff;
    --nsh-surface-soft: #eef6ff;
    --nsh-ink: #0f172a;
    --nsh-copy: #4b5563;
    --nsh-line: rgba(15, 23, 42, 0.1);
    --nsh-primary: #1d4ed8;
    --nsh-primary-deep: #0f3fae;
    --nsh-accent: #14b8a6;
    --nsh-warm: #f59e0b;
    --nsh-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
    --nsh-radius: 28px;
    --nsh-radius-sm: 18px;
    --nsh-container: min(1180px, calc(100vw - 32px));
    --nsh-focus-ring: 3px solid rgba(29, 78, 216, 0.35);
    --nsh-focus-offset: 3px;
    --nsh-transition-fast: 0.2s ease;
    --nsh-transition-medium: 0.22s ease;
    --nsh-transition-panel: 0.24s ease;
}

/* Reset and document flow */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.nsh-body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--nsh-ink);
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 30%),
        radial-gradient(circle at top left, rgba(29, 78, 216, 0.12), transparent 34%),
        var(--nsh-bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
iframe { width: 100%; border: 0; }
[hidden] { display: none !important; }
.nsh-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.nsh-container { width: var(--nsh-container); margin: 0 auto; }
.nsh-main { overflow: clip; }
.nsh-site-shell { min-height: 100vh; }
.nsh-section[id], .nsh-page-hero[id], .nsh-trust-band[id] { scroll-margin-top: 110px; }
.nsh-display-xl, .nsh-display-lg, .nsh-display-md, .nsh-display-sm { font-family: "Plus Jakarta Sans", sans-serif; line-height: 1.02; letter-spacing: -0.03em; margin: 0; }
.nsh-display-xl { font-size: clamp(3rem, 5vw, 5.8rem); }
.nsh-display-lg { font-size: clamp(2.3rem, 3.4vw, 4rem); }
.nsh-display-md { font-size: clamp(1.8rem, 2.4vw, 2.8rem); }
.nsh-display-sm { font-size: clamp(1.5rem, 2vw, 2rem); }
.nsh-copy-lg { font-size: 1.05rem; line-height: 1.8; color: var(--nsh-copy); margin: 0; }

/* Shared interaction primitives */
.nsh-eyebrow, .nsh-panel-pill, .nsh-service-card__eyebrow, .nsh-story-card__meta, .nsh-detail-article__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nsh-primary);
    font-weight: 800;
}
.nsh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition:
        transform var(--nsh-transition-fast),
        box-shadow var(--nsh-transition-fast),
        background-color var(--nsh-transition-fast),
        border-color var(--nsh-transition-fast);
}
.nsh-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12); }
.nsh-btn:focus-visible,
.nsh-nav__link:focus-visible,
.nsh-nav__toggle:focus-visible,
.nsh-nav__dropdown-link:focus-visible,
.nsh-mobile-link:focus-visible,
.nsh-mobile-toggle:focus-visible,
.nsh-mobile-sublink:focus-visible,
.nsh-banner-carousel__button:focus-visible,
.nsh-banner-carousel__dot:focus-visible,
.nsh-link-arrow:focus-visible,
.nsh-story-card a:focus-visible,
.nsh-gallery-card a:focus-visible,
.nsh-team-card a:focus-visible,
.hudnews-download-item > a:focus-visible,
.hudnews-footer-links a:focus-visible,
.hudnews-footer-social a:focus-visible,
.nsh-partner-chip:focus-visible {
    outline: var(--nsh-focus-ring);
    outline-offset: var(--nsh-focus-offset);
}
.nsh-btn--primary { background: linear-gradient(135deg, var(--nsh-primary), #3b82f6); color: #fff; }
.nsh-btn--ghost { background: rgba(255,255,255,.85); border-color: rgba(15,23,42,.08); color: var(--nsh-ink); }
.nsh-link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--nsh-primary); font-weight: 800; }
.nsh-link-arrow--light { color: #bfdbfe; }

/* Navigation shell */
.nsh-nav__caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; }
.nsh-nav__toggle[aria-expanded="true"] .nsh-nav__caret,
.nsh-mobile-toggle[aria-expanded="true"] .nsh-nav__caret {
    transform: rotate(225deg);
    margin-top: 2px;
}
.nsh-menu-toggle, .nsh-mobile-close {
    display: none; width: 48px; height: 48px; border-radius: 16px; border: 1px solid var(--nsh-line);
    background: rgba(255,255,255,.88); cursor: pointer; position: relative;
}
.nsh-menu-toggle span, .nsh-mobile-close span {
    position: absolute; left: 14px; right: 14px; height: 2px; background: var(--nsh-ink); border-radius: 999px;
}
.nsh-menu-toggle span:nth-child(1) { top: 16px; } .nsh-menu-toggle span:nth-child(2) { top: 23px; } .nsh-menu-toggle span:nth-child(3) { top: 30px; }
.nsh-mobile-close span:first-child { transform: rotate(45deg); top: 23px; }
.nsh-mobile-close span:last-child { transform: rotate(-45deg); top: 23px; }
.nsh-mobile-backdrop { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.46); z-index: 39; }
.nsh-mobile-panel {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 100vw); padding: 24px; z-index: 40;
    background: #fff; transform: translateX(100%); transition: transform var(--nsh-transition-panel);
    display: grid; grid-template-rows: auto minmax(0, 1fr) auto; gap: 24px; box-shadow: var(--nsh-shadow);
    height: 100dvh; min-height: 100dvh; overscroll-behavior: contain;
}
.nsh-mobile-panel.is-open { transform: translateX(0); }
.nsh-mobile-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.nsh-mobile-panel__head strong, .nsh-mobile-panel__head small { display: block; }
.nsh-mobile-panel__head small { color: var(--nsh-copy); margin-top: 4px; }
.nsh-mobile-panel__body { display: grid; gap: 16px; overflow: auto; min-height: 0; align-content: start; }
.nsh-mobile-group { display: grid; gap: 8px; }
.nsh-mobile-group.has-children { gap: 12px; }
.nsh-mobile-group__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}
.nsh-mobile-link, .nsh-mobile-sublink {
    display: block; padding: 12px 14px; border-radius: 14px; background: var(--nsh-surface-soft); font-weight: 800;
}
.nsh-mobile-link.is-active { background: rgba(29, 78, 216, 0.1); color: var(--nsh-primary); }
.nsh-mobile-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--nsh-copy);
    cursor: pointer;
    transition:
        background-color var(--nsh-transition-fast),
        color var(--nsh-transition-fast),
        border-color var(--nsh-transition-fast);
}
.nsh-mobile-toggle:hover {
    background: rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.18);
    color: var(--nsh-primary);
}
.nsh-mobile-submenu {
    display: grid;
    gap: 6px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
}
.nsh-mobile-sublink { background: transparent; color: var(--nsh-copy); font-weight: 700; padding-left: 20px; }
.nsh-mobile-sublink.is-active {
    color: var(--nsh-primary);
    background: rgba(29, 78, 216, 0.08);
}
.nsh-mobile-cta { width: 100%; margin-top: auto; }
.nsh-menu-toggle,
.nsh-mobile-close,
.nsh-nav__toggle,
.nsh-mobile-toggle,
.nsh-btn,
.nsh-banner-carousel__button,
.nsh-banner-carousel__dot,
.hudnews-download-item > a { touch-action: manipulation; }

/* Hero and page shells */
.nsh-banner, .nsh-page-hero { padding: 24px 0 24px; }
.nsh-page-hero__inner, .nsh-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center; }
.nsh-hero__content, .nsh-page-hero__copy, .nsh-copy-block { display: grid; gap: 24px; }
.nsh-hero__actions, .nsh-page-hero__actions, .nsh-contact-callout__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.nsh-hero__meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--nsh-copy); }
.nsh-hero__meta span, .nsh-contact-list li {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.74); border: 1px solid rgba(15,23,42,.06);
}
.nsh-hero__poster, .nsh-page-hero__visual, .nsh-contact-callout__map, .nsh-info-card, .nsh-form-card, .nsh-panel-column, .nsh-publication-lead, .nsh-detail-article, .nsh-detail-sidebar__panel, .nsh-gallery-video-list, .nsh-footer__brand {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--nsh-radius);
    box-shadow: var(--nsh-shadow);
}
.nsh-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity .7s ease, transform 1s ease, visibility .7s ease;
}
.nsh-banner-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}
.nsh-banner-slide__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nsh-banner-slide__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.6) 38%, rgba(2, 8, 23, 0.2) 68%, rgba(2, 8, 23, 0.15) 100%),
        linear-gradient(180deg, rgba(2, 8, 23, 0.1) 0%, rgba(2, 8, 23, 0.44) 100%);
}
.nsh-banner-slide__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    align-content: end;
    padding: clamp(28px, 4vw, 56px);
}
.nsh-banner-slide__copy {
    display: grid;
    gap: 22px;
    max-width: min(720px, 100%);
    color: #ffffff;
}
.nsh-banner-slide__copy .nsh-eyebrow,
.nsh-banner-slide__status .nsh-panel-pill {
    color: #dbeafe;
}
.nsh-banner-slide__copy .nsh-copy-lg {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.84);
}
.nsh-banner-slide__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
}
.nsh-banner-slide__status {
    display: grid;
    gap: 8px;
}
.nsh-banner-slide__status strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    letter-spacing: -0.03em;
}
.nsh-banner-slide__facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
}
.nsh-banner-slide__facts span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
}
.nsh-banner-carousel__controls {
    position: absolute;
    right: clamp(18px, 3vw, 32px);
    bottom: clamp(18px, 3vw, 28px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}
.nsh-banner-carousel__buttons,
.nsh-banner-carousel__dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.nsh-banner-carousel__button,
.nsh-banner-carousel__dot {
    border: 0;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, opacity .2s ease, width .2s ease;
}
.nsh-banner-carousel__button {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(2, 8, 23, 0.24);
}
.nsh-banner-carousel__button:hover,
.nsh-banner-carousel__dot:hover {
    transform: translateY(-1px);
}
.nsh-banner-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}
.nsh-banner-carousel__dot.is-active {
    width: 34px;
    background: #ffffff;
}
.nsh-hero__poster { position: relative; overflow: hidden; min-height: 520px; }
.nsh-hero__poster-image, .nsh-page-hero__visual img, .nsh-detail-article__lead, .nsh-publication-lead > img, .nsh-achievement-card img, .nsh-team-card img, .nsh-story-card img, .nsh-gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.nsh-hero__floating {
    position: absolute; max-width: 260px; padding: 18px 20px; display: grid; gap: 6px;
    background: rgba(255,255,255,.92); border: 1px solid rgba(15,23,42,.08); border-radius: 20px;
}
.nsh-hero__floating strong { font-size: 1rem; } .nsh-hero__floating span { color: var(--nsh-copy); font-size: .92rem; line-height: 1.6; }
.nsh-hero__floating--top { top: 20px; left: 20px; } .nsh-hero__floating--bottom { right: 20px; bottom: 20px; }
.nsh-hero__stack { margin-top: 18px; display: grid; gap: 16px; }
.nsh-mini-card {
    display: grid; grid-template-columns: 116px 1fr; gap: 16px; align-items: center;
    padding: 16px; border-radius: 24px; background: rgba(255,255,255,.86); border: 1px solid rgba(15,23,42,.08); box-shadow: 0 18px 40px rgba(15,23,42,.08);
}
.nsh-mini-card img { width: 100%; height: 100px; object-fit: cover; border-radius: 18px; }
.nsh-mini-card strong { display: block; margin-bottom: 6px; font-size: 1rem; } .nsh-mini-card p { margin: 0; color: var(--nsh-copy); line-height: 1.65; }

.nsh-trust-band { padding: 14px 0 34px; }
.nsh-trust-band__inner, .nsh-section__heading, .nsh-footer__bottom { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.nsh-trust-band__inner { padding: 18px 22px; border: 1px solid var(--nsh-line); border-radius: 999px; background: rgba(255,255,255,.74); }
.nsh-trust-band__logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.nsh-partner-chip { min-height: 48px; min-width: 120px; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--nsh-line); display: inline-flex; justify-content: center; align-items: center; background: #fff; }
.nsh-partner-chip img { max-height: 26px; width: auto; }

.nsh-section { padding: 44px 0; }
.nsh-anchor { display: block; position: relative; top: -110px; visibility: hidden; height: 0; }
.nsh-section--about, .nsh-section--panel, .nsh-section--gallery, .nsh-section--contact { padding-top: 24px; }
.nsh-section__heading { margin-bottom: 24px; align-items: flex-end; }
.nsh-section__heading > div { display: grid; gap: 10px; max-width: 760px; }
.nsh-media-mosaic { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.nsh-media-mosaic figure { margin: 0; overflow: hidden; border-radius: 24px; min-height: 180px; }
.nsh-media-mosaic__primary { grid-row: span 2; min-height: 520px; }
.nsh-media-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.nsh-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.nsh-checklist li { position: relative; padding-left: 28px; color: var(--nsh-copy); line-height: 1.75; }
.nsh-checklist li::before { content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--nsh-primary), var(--nsh-accent)); }
.nsh-metric-grid, .nsh-service-grid, .nsh-publication-grid, .nsh-story-grid, .nsh-team-grid, .nsh-gallery-grid, .nsh-achievement-grid { display: grid; gap: 18px; }
.nsh-metric-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.nsh-metric-card, .nsh-service-card, .nsh-story-card, .nsh-team-card, .nsh-gallery-card {
    position: relative; overflow: hidden; background: rgba(255,255,255,.84); border: 1px solid rgba(15,23,42,.08); border-radius: 24px;
}
.nsh-metric-card { padding: 22px; display: grid; gap: 10px; box-shadow: 0 18px 40px rgba(15,23,42,.06); }
.nsh-metric-card strong { font-family: "Plus Jakarta Sans", sans-serif; font-size: 2rem; } .nsh-metric-card span { color: var(--nsh-copy); }
.nsh-metric-card__icon { width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: 14px; background: rgba(29, 78, 216, 0.12); color: var(--nsh-primary); }
.nsh-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nsh-service-card { padding: 24px; display: grid; gap: 14px; box-shadow: 0 18px 42px rgba(15,23,42,.06); }
.nsh-service-card__icon { width: 54px; height: 54px; display: inline-grid; place-items: center; border-radius: 18px; font-size: 1.1rem; }
.nsh-service-card.tone-blue .nsh-service-card__icon { background: rgba(59,130,246,.14); color: #2563eb; }
.nsh-service-card.tone-emerald .nsh-service-card__icon { background: rgba(20,184,166,.14); color: #0f766e; }
.nsh-service-card.tone-amber .nsh-service-card__icon { background: rgba(245,158,11,.18); color: #b45309; }
.nsh-service-card h3, .nsh-story-card h3, .nsh-team-card h3, .nsh-gallery-card h3, .nsh-achievement-card h3, .nsh-publication-lead h3, .nsh-detail-sidebar__panel h3, .nsh-panel-column__head h3, .nsh-video-card strong, .nsh-info-card h3, .nsh-form-card h3 { margin: 0; font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.4rem; }
.nsh-service-card p, .nsh-story-card p, .nsh-team-card p, .nsh-gallery-card p, .nsh-achievement-card p, .nsh-publication-lead p, .nsh-list-card p, .nsh-video-card p, .nsh-info-card p, .nsh-form-card p { margin: 0; color: var(--nsh-copy); line-height: 1.7; }
.nsh-service-card__index { position: absolute; right: 18px; top: 18px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 3rem; color: rgba(15, 23, 42, 0.06); font-weight: 800; }

.nsh-panel-grid, .nsh-detail-layout, .nsh-gallery-layout, .nsh-contact-grid, .nsh-publication-layout { display: grid; gap: 22px; }
.nsh-panel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nsh-panel-column, .nsh-detail-sidebar__panel, .nsh-gallery-video-list, .nsh-info-card, .nsh-form-card { padding: 24px; }
.nsh-panel-column__head { display: grid; gap: 8px; margin-bottom: 16px; }
.nsh-list-card, .nsh-sidebar-link, .nsh-video-card {
    display: grid; gap: 10px; padding: 16px 0; border-bottom: 1px solid rgba(15,23,42,.08);
}
.nsh-list-card:last-child, .nsh-sidebar-link:last-child, .nsh-video-card:last-child { border-bottom: 0; padding-bottom: 0; }
.nsh-list-card span, .nsh-sidebar-link span, .nsh-achievement-card__body span, .nsh-publication-lead__meta { color: #64748b; font-size: .92rem; line-height: 1.6; }
.nsh-list-card a, .nsh-sidebar-link strong, .nsh-sidebar-link a, .nsh-video-card a { font-weight: 800; color: var(--nsh-primary); }

.nsh-publication-layout { grid-template-columns: 1.05fr .95fr; }
.nsh-publication-lead { overflow: hidden; }
.nsh-publication-lead > img { aspect-ratio: 16 / 11; }
.nsh-publication-lead__content, .nsh-story-card__body, .nsh-team-card__body, .nsh-gallery-card__body, .nsh-achievement-card__body { padding: 24px; display: grid; gap: 14px; }
.nsh-publication-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nsh-story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nsh-story-card img { aspect-ratio: 16 / 10; }
.nsh-story-card a, .nsh-gallery-card a, .nsh-team-card a { font-weight: 800; color: var(--nsh-primary); }

.nsh-section--dark { background: linear-gradient(180deg, #0f172a, #16233b); color: #f8fafc; }
.nsh-section--dark .nsh-achievement-card { background: rgba(15,23,42,.4); border-color: rgba(148,163,184,.2); box-shadow: none; }
.nsh-section--dark .nsh-achievement-card__body span, .nsh-section--dark p { color: #cbd5e1; }
.nsh-section--dark .nsh-achievement-card a { color: #bfdbfe; }
.nsh-achievement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nsh-achievement-card { overflow: hidden; }
.nsh-achievement-card img { aspect-ratio: 16 / 10; }

.nsh-team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.nsh-team-card img { aspect-ratio: 4 / 5; }
.nsh-team-card__body span { color: var(--nsh-primary); font-size: .9rem; font-weight: 800; }
.nsh-gallery-layout { grid-template-columns: 1.25fr .75fr; align-items: start; }
.nsh-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nsh-gallery-card img { aspect-ratio: 16 / 12; }

.nsh-contact-callout, .nsh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nsh-contact-callout { padding: 28px; border-radius: var(--nsh-radius); background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(239,246,255,.92)); border: 1px solid rgba(15,23,42,.08); box-shadow: var(--nsh-shadow); }
.nsh-contact-callout__copy { display: grid; gap: 22px; }
.nsh-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.nsh-contact-list li a { color: inherit; }
.nsh-contact-callout__map, .nsh-info-card iframe { overflow: hidden; min-height: 360px; }
.nsh-contact-callout__map iframe, .nsh-info-card iframe { height: 100%; min-height: 360px; }
.nsh-form-card, .nsh-info-card { display: grid; gap: 16px; }
.nsh-info-card .nsh-detail-article__lead { margin: 0; }
.nsh-contact-form { display: grid; gap: 16px; }
.nsh-contact-form label { display: grid; gap: 8px; font-weight: 700; }
.nsh-contact-form input, .nsh-contact-form textarea {
    width: 100%; border-radius: 16px; border: 1px solid rgba(15,23,42,.12); background: #fff;
    padding: 14px 16px; font: inherit; color: var(--nsh-ink);
}
.nsh-contact-form input:focus, .nsh-contact-form textarea:focus { outline: 0; border-color: rgba(29,78,216,.4); box-shadow: 0 0 0 4px rgba(59,130,246,.12); }
.nsh-contact-form small, .nsh-alert { font-size: .92rem; line-height: 1.6; }
.nsh-alert { padding: 14px 16px; border-radius: 14px; font-weight: 700; }
.nsh-alert.success { background: rgba(16,185,129,.12); color: #047857; }
.nsh-alert.error { background: rgba(239,68,68,.12); color: #b91c1c; }

.nsh-page-hero__visual { overflow: hidden; min-height: 420px; }
.nsh-page-hero__visual img { min-height: 420px; }
.nsh-detail-layout { grid-template-columns: 1.1fr .55fr; align-items: start; }
.nsh-detail-article { padding: 28px; }
.nsh-detail-article__lead { margin: 18px 0 24px; border-radius: 24px; aspect-ratio: 16 / 9; }
.nsh-richtext { color: var(--nsh-copy); font-family: "Plus Jakarta Sans", sans-serif; line-height: 1.72; }
.nsh-richtext::after { content: ""; display: block; clear: both; }
.nsh-richtext > :is(p, h1, h2, h3, h4, h5, h6, blockquote, ul, ol, table, pre, figure, hr, img, iframe) { margin-top: 0; margin-bottom: 0.72rem; }
.nsh-richtext > :last-child { margin-bottom: 0; }
.nsh-richtext h1, .nsh-richtext h2, .nsh-richtext h3, .nsh-richtext h4, .nsh-richtext h5, .nsh-richtext h6 { color: var(--nsh-ink); font-family: "Plus Jakarta Sans", sans-serif; margin: 0; }
.nsh-richtext p, .nsh-richtext li, .nsh-richtext blockquote { line-height: inherit; }
.nsh-richtext img, .nsh-richtext iframe { border-radius: 18px; overflow: hidden; max-width: 100%; }
.nsh-richtext img.note-float-left { float: left; margin: 0 1rem 0.75rem 0; }
.nsh-richtext img.note-float-right { float: right; margin: 0 0 0.75rem 1rem; }
.nsh-richtext img.note-float-none { float: none; margin-left: 0; margin-right: 0; }
.nsh-richtext a { color: var(--nsh-primary); font-weight: 700; }
.nsh-single-column { max-width: 900px; }
.nsh-video-embed iframe { min-height: 480px; border-radius: 24px; overflow: hidden; background: #0f172a; }

.nsh-footer { padding: 56px 0 28px; color: #dbeafe; background: #071120; margin-top: 32px; }
.nsh-footer__grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 24px; }
.nsh-footer__brand { padding: 28px; background: linear-gradient(145deg, rgba(15,23,42,.9), rgba(29,78,216,.18)); }
.nsh-footer__brand p, .nsh-footer__meta, .nsh-footer__links a { color: #bfdbfe; line-height: 1.8; }
.nsh-footer__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.nsh-footer__stats div { padding: 14px; border-radius: 18px; background: rgba(255,255,255,.06); }
.nsh-footer__stats strong { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.4rem; margin-bottom: 4px; }
.nsh-footer h2, .nsh-footer h3 { margin: 0 0 12px; font-family: "Plus Jakarta Sans", sans-serif; color: #fff; }
.nsh-footer__links, .nsh-footer__meta { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.nsh-footer__bottom { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(191,219,254,.14); color: #93c5fd; }

html.nsh-reveal [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .5s ease, transform .5s ease; transition-delay: var(--nsh-delay, 0ms); }
html.nsh-reveal [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
body.nsh-menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hudnews-marquee__track {
        animation: none;
    }

    html.nsh-reveal [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 1080px) {
    .nsh-nav, .nsh-header__actions .nsh-btn { display: none; }
    .nsh-menu-toggle, .nsh-mobile-close { display: inline-block; }
    .nsh-page-hero__inner, .nsh-split, .nsh-publication-layout, .nsh-gallery-layout, .nsh-detail-layout, .nsh-contact-callout, .nsh-contact-grid, .nsh-footer__grid { grid-template-columns: 1fr; }
    .nsh-service-grid, .nsh-panel-grid, .nsh-team-grid, .nsh-achievement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .nsh-publication-grid, .nsh-gallery-grid, .nsh-metric-grid, .nsh-footer__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .nsh-media-mosaic__primary { min-height: 420px; }
    .nsh-banner-carousel { width: min(100vw - 20px, 1240px); }
    .nsh-banner-carousel__viewport { min-height: clamp(520px, calc(100svh - 132px), 700px); }
}

@media (max-width: 720px) {
    .nsh-header__bar { min-height: 82px; }
    .nsh-brand__copy small { display: none; }
    .nsh-banner, .nsh-page-hero, .nsh-section, .nsh-footer { padding-top: 28px; padding-bottom: 28px; }
    .nsh-trust-band__inner, .nsh-section__heading, .nsh-footer__bottom { flex-direction: column; align-items: flex-start; }
    .nsh-service-grid, .nsh-panel-grid, .nsh-publication-grid, .nsh-story-grid, .nsh-team-grid, .nsh-gallery-grid, .nsh-achievement-grid, .nsh-metric-grid, .nsh-footer__stats { grid-template-columns: 1fr; }
    .nsh-banner-carousel { width: calc(100vw - 14px); border-radius: 26px; }
    .nsh-banner-carousel__viewport { min-height: clamp(480px, 72svh, 620px); }
    .nsh-banner-slide__inner { padding: 22px 18px 86px; }
    .nsh-banner-slide__copy { gap: 18px; }
    .nsh-banner-slide__footer { align-items: flex-start; }
    .nsh-banner-slide__facts { gap: 10px; }
    .nsh-banner-slide__facts span { min-height: 42px; padding: 0 14px; }
    .nsh-banner-carousel__controls {
        left: 18px;
        right: 18px;
        bottom: 18px;
        justify-content: space-between;
    }
    .nsh-hero__poster { min-height: 360px; }
    .nsh-mini-card { grid-template-columns: 1fr; }
    .nsh-mini-card img { height: 170px; }
    .nsh-hero__floating { position: static; max-width: none; margin: 12px; }
    .nsh-page-hero__visual, .nsh-contact-callout__map, .nsh-info-card iframe, .nsh-video-embed iframe { min-height: 280px; }
    .nsh-detail-article, .nsh-panel-column, .nsh-detail-sidebar__panel, .nsh-gallery-video-list, .nsh-info-card, .nsh-form-card, .nsh-footer__brand, .nsh-contact-callout { padding: 20px; }
    .nsh-mobile-panel { width: 100vw; }
}

.nsh-display-xl,
.nsh-display-lg,
.nsh-display-md,
.nsh-display-sm {
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.04em;
}

.nsh-display-xl {
    font-size: clamp(3.2rem, 5.8vw, 6.5rem);
    line-height: 0.94;
}

.nsh-display-lg {
    font-size: clamp(2.5rem, 3.9vw, 4.4rem);
    line-height: 0.98;
}

.nsh-copy-lg {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--nsh-copy);
}

.nsh-eyebrow,
.nsh-panel-pill,
.nsh-service-card__eyebrow,
.nsh-story-card__meta,
.nsh-detail-article__meta {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(124, 90, 68, 0.1);
    border: 1px solid rgba(124, 90, 68, 0.12);
    color: var(--nsh-primary);
    letter-spacing: 0.16em;
}

.nsh-nav__dropdown,
.nsh-mobile-panel {
    background: rgba(255, 249, 241, 0.96);
    border-color: rgba(76, 54, 41, 0.1);
}

.nsh-mobile-link,
.nsh-mobile-sublink {
    background: rgba(124, 90, 68, 0.06);
}

.nsh-banner,
.nsh-page-hero {
    padding: 34px 0 46px;
}

.nsh-banner-slide__media {
    filter: saturate(0.9) contrast(1.04) brightness(0.8);
    transform: scale(1.02);
}

.nsh-banner-slide__shade {
    background:
        linear-gradient(92deg, rgba(29, 18, 12, 0.78) 0%, rgba(29, 18, 12, 0.46) 38%, rgba(29, 18, 12, 0.08) 100%),
        linear-gradient(180deg, rgba(29, 18, 12, 0.05), rgba(29, 18, 12, 0.24));
}

.nsh-banner-slide__inner {
    height: 100%;
    display: grid;
    align-items: center;
    padding: 84px 0;
}

.nsh-banner-slide {
    transition: opacity 0.45s ease, transform 0.7s ease, visibility 0.45s ease;
}

.nsh-banner-slide__copy {
    position: relative;
    max-width: min(560px, 100%);
    padding: 36px;
    gap: 22px;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 246, 236, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 32px;
    box-shadow: 0 22px 60px rgba(29, 18, 12, 0.2);
    overflow: hidden;
    color: var(--nsh-ink);
}

.nsh-banner-slide__copy::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, #cb8a47, #7c5a44);
}

.nsh-banner-slide__copy .nsh-display-xl,
.nsh-banner-slide__copy h1,
.nsh-banner-slide__copy strong {
    color: var(--nsh-ink);
}

.nsh-banner-slide__copy .nsh-eyebrow,
.nsh-banner-slide__status .nsh-panel-pill {
    color: var(--nsh-primary);
    background: rgba(124, 90, 68, 0.09);
    border-color: rgba(124, 90, 68, 0.12);
}

.nsh-banner-slide__copy .nsh-copy-lg {
    max-width: 52ch;
    color: #5f5248;
}

.nsh-banner-slide__footer {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(76, 54, 41, 0.1);
    gap: 16px;
    align-items: flex-end;
}

.nsh-banner-slide__status {
    gap: 12px;
    color: var(--nsh-ink);
    align-items: center;
}

.nsh-banner-slide__status strong {
    color: var(--nsh-primary);
}

.nsh-banner-slide__facts {
    gap: 10px;
}

.nsh-banner-slide__facts span,
.nsh-hero__meta span,
.nsh-contact-list li {
    background: rgba(255, 248, 239, 0.72);
    border: 1px solid rgba(76, 54, 41, 0.1);
    color: #5f5248;
}

.nsh-banner-carousel__controls {
    left: 30px;
    right: 30px;
    bottom: 28px;
}

.nsh-banner-carousel__button,
.nsh-banner-carousel__dot {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 249, 241, 0.14);
}

.nsh-banner-carousel__button:hover,
.nsh-banner-carousel__dot.is-active {
    background: rgba(255, 249, 241, 0.3);
}

.nsh-trust-band {
    padding: 4px 0 72px;
}

.nsh-trust-band__inner {
    padding: 22px 24px;
    border-radius: 999px;
    background: rgba(255, 248, 240, 0.75);
    border: 1px solid rgba(76, 54, 41, 0.1);
    box-shadow: 0 18px 44px rgba(76, 54, 41, 0.08);
}

.nsh-trust-band__label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nsh-primary);
}

.nsh-partner-chip {
    background: rgba(255, 250, 244, 0.96);
    border: 1px solid rgba(76, 54, 41, 0.08);
}

.nsh-section {
    padding: 92px 0;
}

.nsh-section__heading {
    margin-bottom: 38px;
}

.nsh-section__heading > div {
    gap: 14px;
    max-width: 840px;
}

.nsh-copy-block,
.nsh-page-hero__copy,
.nsh-contact-callout__copy {
    gap: 26px;
}

.nsh-page-hero__visual,
.nsh-contact-callout__map,
.nsh-info-card,
.nsh-form-card,
.nsh-panel-column,
.nsh-publication-lead,
.nsh-detail-article,
.nsh-detail-sidebar__panel,
.nsh-gallery-video-list,
.nsh-footer__brand,
.nsh-contact-callout,
.nsh-media-mosaic__primary,
.nsh-media-mosaic__secondary,
.nsh-media-mosaic__accent {
    background: rgba(255, 249, 241, 0.88);
    border: 1px solid rgba(76, 54, 41, 0.1);
    box-shadow: 0 24px 60px rgba(76, 54, 41, 0.11);
}

.nsh-service-card,
.nsh-story-card,
.nsh-team-card,
.nsh-gallery-card,
.nsh-list-card,
.nsh-video-card {
    background: rgba(255, 249, 241, 0.86);
    border: 1px solid rgba(76, 54, 41, 0.1);
    box-shadow: 0 18px 42px rgba(76, 54, 41, 0.08);
}

.nsh-service-card {
    min-height: 280px;
    padding: 26px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(245, 234, 222, 0.92));
}

.nsh-service-card.tone-blue {
    border-color: rgba(124, 90, 68, 0.12);
}

.nsh-service-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(124, 90, 68, 0.1);
    color: var(--nsh-primary);
    font-size: 1.2rem;
}

.nsh-service-card__index {
    color: rgba(124, 90, 68, 0.2);
}

.nsh-story-card,
.nsh-team-card,
.nsh-gallery-card,
.nsh-achievement-card {
    border-radius: 30px;
    overflow: hidden;
}

.nsh-story-card img,
.nsh-gallery-card img,
.nsh-achievement-card img {
    aspect-ratio: 4 / 3;
}

.nsh-team-card img {
    aspect-ratio: 4 / 5;
}

.nsh-story-card__body,
.nsh-team-card__body,
.nsh-gallery-card__body,
.nsh-achievement-card__body,
.nsh-panel-column,
.nsh-detail-article,
.nsh-form-card,
.nsh-info-card,
.nsh-gallery-video-list {
    padding: 26px;
}

.nsh-story-card__body,
.nsh-team-card__body,
.nsh-gallery-card__body,
.nsh-achievement-card__body,
.nsh-publication-card__body {
    display: grid;
    gap: 14px;
}

.nsh-achievement-card {
    background: #2b1c15;
    border: 1px solid rgba(255, 240, 225, 0.08);
    box-shadow: 0 26px 50px rgba(22, 12, 8, 0.28);
}

.nsh-achievement-card__body span,
.nsh-achievement-card__body p,
.nsh-achievement-card__body a {
    color: #e8d9ca;
}

.nsh-achievement-card__body h3 {
    color: #fff6ee;
}

.nsh-section--dark {
    background:
        radial-gradient(circle at top left, rgba(203, 138, 71, 0.18), transparent 24%),
        linear-gradient(180deg, #241711, #321f17);
    color: #f7eee6;
}

.nsh-section--panel {
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.42), rgba(255, 245, 236, 0.75));
}

.nsh-list-card {
    padding: 20px 22px;
    border-radius: 22px;
}

.nsh-list-card strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.12rem;
}

.nsh-list-card p {
    margin: 0;
    color: var(--nsh-copy);
    line-height: 1.8;
}

.nsh-list-card span {
    color: #8d7a6e;
    font-size: 0.92rem;
}

.nsh-page-hero__visual,
.nsh-detail-article__lead,
.nsh-publication-lead > img {
    border-radius: 28px;
}

.nsh-page-hero__visual {
    padding: 14px;
}

.nsh-page-hero__visual img,
.nsh-detail-article__lead,
.nsh-publication-lead > img {
    box-shadow: 0 20px 46px rgba(76, 54, 41, 0.12);
}

.nsh-detail-sidebar__panel ul,
.nsh-footer__links,
.nsh-footer__meta {
    gap: 12px;
}

.nsh-form-card input,
.nsh-form-card textarea {
    background: rgba(255, 252, 247, 0.9);
    border: 1px solid rgba(76, 54, 41, 0.12);
}

.nsh-contact-callout {
    padding: 28px;
    background: linear-gradient(145deg, rgba(255, 249, 241, 0.94), rgba(241, 232, 220, 0.92));
}

.nsh-contact-callout__map,
.nsh-info-card iframe {
    border-radius: 28px;
    overflow: hidden;
}

.nsh-footer {
    margin-top: 40px;
    padding: 78px 0 30px;
    background:
        radial-gradient(circle at top right, rgba(203, 138, 71, 0.16), transparent 24%),
        linear-gradient(180deg, #221611, #312018);
    color: #e8dccf;
}

.nsh-footer__brand {
    background: linear-gradient(145deg, rgba(255, 251, 245, 0.06), rgba(255, 223, 185, 0.08));
}

.nsh-footer__brand p,
.nsh-footer__meta,
.nsh-footer__links a {
    color: #d8cabd;
}

.nsh-footer__stats div {
    background: rgba(255, 249, 241, 0.05);
    border: 1px solid rgba(255, 231, 207, 0.08);
}

.nsh-footer h2,
.nsh-footer h3 {
    color: #fff7ef;
}

.nsh-footer__bottom {
    border-top-color: rgba(255, 231, 207, 0.12);
    color: #c8b8a9;
}

@media (max-width: 1080px) {
    .nsh-banner-carousel {
        width: min(100vw - 20px, 1280px);
    }

    .nsh-banner-slide__copy {
        max-width: min(640px, 100%);
    }

    .nsh-service-grid,
    .nsh-team-grid,
    .nsh-achievement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.nsh-banner-slide__shade {
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.68) 0%, rgba(45, 90, 142, 0.62) 45%, rgba(30, 58, 95, 0.72) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.nsh-banner-slide__inner {
    align-content: center;
    text-align: center;
    padding: 32px 16px;
}

.nsh-banner-slide__copy {
    max-width: min(900px, 100%);
    margin: 0 auto;
    color: #fff;
    gap: 16px;
}

.nsh-banner-slide__copy .nsh-eyebrow,
.nsh-banner-slide__copy .nsh-copy-lg {
    color: rgba(255, 255, 255, 0.92);
}

.nsh-banner-slide__copy .nsh-copy-lg {
    margin: 0 auto;
    max-width: 760px;
}

.nsh-hero__actions {
    justify-content: center;
}

.nsh-banner-slide__footer {
    display: none;
}

.nsh-banner-carousel__controls {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    gap: 14px;
}

.nsh-banner-carousel__button {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

.nsh-banner-carousel__dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
}

.nsh-banner-carousel__dot.is-active {
    width: 10px;
    background: #fff;
}

.hudnews-marquee {
    background: var(--nsh-primary);
    padding: 12px 0;
}

.hudnews-marquee__inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hudnews-marquee__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--nsh-warm);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.hudnews-marquee__track-wrap {
    overflow: hidden;
    flex: 1;
}

.hudnews-marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    min-width: max-content;
    animation: hudnewsMarquee 36s linear infinite;
    color: #dbeafe;
    font-size: 0.9rem;
}

.hudnews-marquee__item::after {
    content: "|";
    margin-left: 32px;
    color: rgba(219, 234, 254, 0.6);
}

.hudnews-marquee__track:hover {
    animation-play-state: paused;
}

@keyframes hudnewsMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.nsh-section {
    padding: 24px 0;
}

.nsh-section:nth-of-type(even) {
    background: #fff;
}

.nsh-trust-band {
    padding: 24px 0 16px;
}

.nsh-trust-band__inner {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.nsh-trust-band__label {
    color: var(--nsh-primary);
}

.nsh-partner-chip {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.nsh-service-card,
.nsh-story-card,
.nsh-team-card,
.nsh-gallery-card,
.nsh-list-card,
.nsh-video-card,
.nsh-panel-column,
.nsh-page-hero__visual,
.nsh-contact-callout,
.nsh-form-card,
.nsh-info-card,
.nsh-detail-article,
.nsh-detail-sidebar__panel,
.nsh-gallery-video-list {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.nsh-metric-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.nsh-metric-card__icon {
    background: #e8f0fe;
    color: var(--nsh-primary);
}

.nsh-service-card__icon {
    background: rgba(30, 58, 95, 0.1);
    color: var(--nsh-primary);
}

.nsh-section--dark {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
}

.nsh-achievement-card {
    background: #fff;
    border: 1px solid #dbeafe;
}

.nsh-achievement-card__body span,
.nsh-achievement-card__body p,
.nsh-achievement-card__body a {
    color: #4b5563;
}

.nsh-achievement-card__body h3 {
    color: var(--nsh-primary);
}

.nsh-footer {
    margin-top: 0;
    background: #102944;
    color: #cbd5e1;
}

.nsh-footer__brand {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nsh-footer h2,
.nsh-footer h3 {
    color: #fff;
}

.nsh-footer__brand p,
.nsh-footer__meta,
.nsh-footer__links a,
.nsh-footer__bottom {
    color: #cbd5e1;
}

@media (max-width: 900px) {
    .nsh-main {
        padding-top: 72px;
    }

    .nsh-banner-carousel__viewport {
        min-height: 420px;
    }

    .hudnews-marquee__inner {
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .nsh-main {
        padding-top: 68px;
    }

    .nsh-header__bar {
        min-height: 68px;
    }

    .nsh-banner-carousel__viewport {
        min-height: 380px;
    }

    .nsh-banner-slide__copy {
        gap: 12px;
    }

    .hudnews-marquee__badge {
        font-size: 0.66rem;
    }

    .hudnews-marquee__track {
        font-size: 0.82rem;
    }
}

/* Hudnews section flow and component alignment to uploaded reference */
.hudnews-home-flow {
    display: block;
}

.hudnews-home-flow #statistik {
    background: linear-gradient(180deg, #f0f5fa 0%, #ffffff 100%);
}

#statistik .nsh-metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}

#statistik .nsh-metric-card {
    --metric-accent: #4338ca;
    --metric-surface: #eef2ff;
    --metric-surface-strong: #ffffff;
    --metric-border: rgba(67, 56, 202, 0.18);
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 16px;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 9px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid var(--metric-border);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, var(--metric-surface-strong) 0%, var(--metric-surface) 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    isolation: isolate;
}

#statistik .nsh-metric-card::before {
    content: "";
    position: absolute;
    inset: auto -24px -34px auto;
    width: 100px;
    height: 100px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

#statistik .nsh-metric-card::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--metric-accent), rgba(255, 255, 255, 0));
}

#statistik .nsh-metric-card strong {
    font-size: clamp(1.7rem, 3.3vw, 2.35rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--metric-accent);
}

#statistik .nsh-metric-card__label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

#statistik .nsh-metric-card__summary {
    margin: 0 auto;
    max-width: 28ch;
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.45;
}

#statistik .nsh-metric-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.98rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

@media (max-width: 720px) {
    #statistik .nsh-metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    #statistik .nsh-metric-card {
        padding: 12px;
        border-radius: 15px;
        gap: 7px;
    }

    #statistik .nsh-metric-card strong {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

    #statistik .nsh-metric-card__icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 0.86rem;
    }
}

@media (max-width: 420px) {
    #statistik .nsh-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

#statistik .nsh-metric-card--indigo {
    --metric-accent: #4f46e5;
    --metric-surface: #eef2ff;
    --metric-border: rgba(79, 70, 229, 0.2);
}

#statistik .nsh-metric-card--indigo .nsh-metric-card__icon {
    background: rgba(79, 70, 229, 0.14);
    color: #4338ca;
}

#statistik .nsh-metric-card--amber {
    --metric-accent: #d97706;
    --metric-surface: #fff4dd;
    --metric-border: rgba(217, 119, 6, 0.2);
}

#statistik .nsh-metric-card--amber .nsh-metric-card__icon {
    background: rgba(245, 158, 11, 0.16);
    color: #b45309;
}

#statistik .nsh-metric-card--emerald {
    --metric-accent: #059669;
    --metric-surface: #e9fbf3;
    --metric-border: rgba(5, 150, 105, 0.18);
}

#statistik .nsh-metric-card--emerald .nsh-metric-card__icon {
    background: rgba(16, 185, 129, 0.16);
    color: #047857;
}

#statistik .nsh-metric-card--rose {
    --metric-accent: #e11d48;
    --metric-surface: #fff1f4;
    --metric-border: rgba(225, 29, 72, 0.18);
}

#statistik .nsh-metric-card--rose .nsh-metric-card__icon {
    background: rgba(244, 63, 94, 0.16);
    color: #be123c;
}

.hudnews-home-flow #sambutan,
.hudnews-home-flow #berita,
.hudnews-home-flow #fasilitas,
.hudnews-home-flow #gtk,
.hudnews-home-flow #kontak {
    background: #ffffff;
}

.hudnews-home-flow #sambutan {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(125, 211, 252, 0.22), transparent 30%),
        radial-gradient(circle at bottom right, rgba(253, 186, 116, 0.2), transparent 26%),
        radial-gradient(circle at 78% 18%, rgba(196, 181, 253, 0.18), transparent 22%),
        linear-gradient(180deg, #fdfefe 0%, #fff8f4 100%);
}

.hudnews-home-flow #sambutan::before {
    content: "";
    position: absolute;
    inset: 18px 28px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.38);
    pointer-events: none;
}

.hudnews-home-flow #sambutan .nsh-container {
    position: relative;
    z-index: 1;
}

.hudnews-home-flow #artikel,
.hudnews-home-flow #ekskul,
.hudnews-home-flow #agenda,
.hudnews-home-flow #galeri-foto,
.hudnews-home-flow #galeri,
.hudnews-home-flow #video,
.hudnews-home-flow #mitra {
    background: #f8fafc;
}

.hudnews-home-flow #unduhan {
    background: #ffffff;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-heading {
    align-items: flex-start;
    gap: 18px;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-heading__copy {
    min-width: 0;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-heading__title {
    margin: 0;
    color: var(--nsh-primary);
    font-size: clamp(2.1rem, 3.2vw, 3.5rem);
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-heading__title::after {
    content: "";
    display: block;
    width: 82px;
    height: 5px;
    border-radius: 999px;
    margin-top: 14px;
    background: #b8860b;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-heading__more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    border: 1px solid #1e3a5f;
    border-radius: 12px;
    color: #1e3a5f;
    font-weight: 700;
    background: #ffffff;
    white-space: nowrap;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.hudnews-home-flow #artikel .hudnews-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__media {
    position: relative;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__category-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__category-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    border-radius: 10px;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__body {
    padding: 22px 24px 24px;
    display: grid;
    gap: 12px;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__meta .hudnews-news-card__badge {
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    box-shadow: none;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.2);
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__badge.tone-indigo {
    background: #e8eefc;
    color: #1e3a8a;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__badge.tone-amber {
    background: #fef3e2;
    color: #b45309;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__badge.tone-emerald {
    background: #e8f5e9;
    color: #2e7d32;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__badge.tone-slate {
    background: #eef2f7;
    color: #475569;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 0.82rem;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 0.82rem;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card h3 {
    margin: 0;
    color: var(--nsh-primary);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(0.98rem, 1vw, 1.14rem);
    line-height: 1.4;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card h3 a:hover,
.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card h3 a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.5;
}

.hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b8860b;
    font-weight: 700;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-block {
    display: grid;
    gap: 14px;
}

.hudnews-home-flow #galeri .nsh-section__heading h2 {
    max-width: none;
    white-space: nowrap;
    text-wrap: nowrap;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-block + .hudnews-gallery-home-block {
    margin-top: 28px;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-block__title {
    margin: 0;
    color: var(--nsh-primary);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.1rem, 1.2vw, 1.35rem);
}

.hudnews-home-flow #galeri .hudnews-gallery-home-block__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1d4ed8;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-block__more:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.hudnews-home-flow #galeri .hudnews-gallery-home-card__link {
    display: grid;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-card__media {
    position: relative;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-card__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    min-height: 24px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f97352;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-card--video .hudnews-gallery-home-card__badge {
    background: #2563eb;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-card__play {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    color: #ffffff;
    font-size: 0.84rem;
}

.hudnews-home-flow #galeri .hudnews-gallery-home-card h4 {
    margin: 0;
    padding: 0 12px 14px;
    text-align: center;
    color: #1e3a8a;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(0.98rem, 1vw, 1.14rem);
    line-height: 1.4;
}

.nsh-body #gtk .hudnews-gtk-slider {
    --gtk-columns: 4;
    --gtk-gap: 20px;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.nsh-body #gtk .hudnews-gtk-slider__viewport {
    overflow: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nsh-body #gtk .hudnews-gtk-slider__viewport::-webkit-scrollbar {
    display: none;
}

.nsh-body #gtk .hudnews-gtk-slider__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--gtk-columns) - 1) * var(--gtk-gap)) / var(--gtk-columns));
    gap: var(--gtk-gap);
}

.nsh-body #gtk .hudnews-gtk-slide {
    scroll-snap-align: start;
}

.nsh-body #gtk .hudnews-gtk-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    background: #ffffff;
}

.nsh-body #gtk .hudnews-gtk-card img {
    width: 100%;
    height: auto !important;
    flex: 0 0 auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.nsh-body #gtk .hudnews-gtk-card__link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.nsh-body #gtk .hudnews-gtk-card__body {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    padding: 18px 14px 16px;
    display: grid;
    gap: 6px;
    text-align: center;
    justify-items: center;
}

.nsh-body #gtk .hudnews-gtk-card__name {
    margin: 0;
    color: var(--nsh-primary);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(0.96rem, 1vw, 1.16rem);
    line-height: 1.35;
}

.nsh-body #gtk .hudnews-gtk-card__role {
    display: block;
    color: #94a3b8;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.45;
}

.nsh-body #gtk .hudnews-gtk-slider__nav {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #1e3a8a;
    display: grid;
    place-items: center;
    transition:
        transform var(--nsh-transition-fast),
        border-color var(--nsh-transition-fast),
        background-color var(--nsh-transition-fast),
        color var(--nsh-transition-fast),
        opacity var(--nsh-transition-fast);
}

.nsh-body #gtk .hudnews-gtk-slider__nav:hover:not(:disabled) {
    border-color: #1d4ed8;
    color: #1d4ed8;
    transform: translateY(-1px);
}

.nsh-body #gtk .hudnews-gtk-slider__nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nsh-gallery-layout :is(#album-foto, #video-youtube) {
    scroll-margin-top: 110px;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-page-section + .hudnews-gallery-page-section {
    margin-top: 34px;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .nsh-gallery-photo-page {
    padding-top: 28px;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #244d87;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-head::before,
:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-head::after {
    content: "";
    height: 1px;
    background: rgba(36, 77, 135, 0.45);
    flex: 1;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-head span {
    font-size: clamp(1.2rem, 1.6vw, 2rem);
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-card {
    min-width: 0;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-card__link {
    display: grid;
    gap: 10px;
    color: #2f55b9;
    text-decoration: none;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-card__media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #d7e6f3;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-card__media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    display: block;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-card__count {
    position: absolute;
    top: 10px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f26f4c;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-card h3 {
    margin: 0;
    text-align: center;
    color: #3557bb;
    font-size: clamp(1rem, 1.05vw, 1.9rem);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.35;
    font-weight: 500;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-pagination {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-pagination__item {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 6px;
    border: 1px solid #c7d2fe;
    text-decoration: none;
    font-weight: 700;
    color: #1d4ed8;
    background: #ffffff;
}

:is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-pagination__item.is-active {
    background: #264de4;
    border-color: #264de4;
    color: #ffffff;
}

.nsh-page-gallery-detail .hudnews-gallery-album-detail {
    padding-top: 20px;
}

.nsh-page-gallery-detail .hudnews-gallery-photo-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #244d87;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
}

.nsh-page-gallery-detail .hudnews-gallery-photo-head::before,
.nsh-page-gallery-detail .hudnews-gallery-photo-head::after {
    content: "";
    height: 1px;
    background: rgba(36, 77, 135, 0.45);
    flex: 1;
}

.nsh-page-gallery-detail .hudnews-gallery-photo-head span {
    font-size: clamp(1.2rem, 1.6vw, 2rem);
}

.nsh-page-gallery-detail .hudnews-gallery-photo-grid--detail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.nsh-page-gallery-detail .hudnews-gallery-detail-photo {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #d7e6f3;
}

.nsh-page-gallery-detail .hudnews-gallery-detail-photo__button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    cursor: zoom-in;
    background: transparent;
}

.nsh-page-gallery-detail .hudnews-gallery-detail-photo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.nsh-page-gallery-detail .hudnews-gallery-detail-back {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.nsh-page-gallery-detail .hudnews-gallery-detail-back__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 8px;
    background: #14a9e0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.nsh-page-gallery-detail .hudnews-gallery-detail-back__button:hover {
    background: #0f95c7;
}

.nsh-page-gallery-detail .hudnews-gallery-lightbox[hidden] {
    display: none;
}

.nsh-page-gallery-detail .hudnews-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.nsh-page-gallery-detail .hudnews-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.84);
}

.nsh-page-gallery-detail .hudnews-gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 30px;
}

.nsh-page-gallery-detail .hudnews-gallery-lightbox__image {
    width: 100%;
    max-width: min(1200px, 90vw);
    max-height: 86vh;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
}

.nsh-page-gallery-detail .hudnews-gallery-lightbox__nav,
.nsh-page-gallery-detail .hudnews-gallery-lightbox__close {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(15, 23, 42, 0.58);
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.nsh-page-gallery-detail .hudnews-gallery-lightbox__close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .nsh-section {
    padding-top: 28px;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #244d87;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-head::before,
:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-head::after {
    content: "";
    height: 1px;
    background: rgba(36, 77, 135, 0.45);
    flex: 1;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-head span {
    font-size: clamp(1.2rem, 1.6vw, 2rem);
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 18px;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-card__link {
    display: grid;
    gap: 10px;
    color: #2f55b9;
    text-decoration: none;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-card__media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #dbeafe;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-card__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 58px;
    border-radius: 16px;
    background: #ff0000;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 1.85rem;
    opacity: 0.96;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-card__watch {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 10px;
    min-height: 54px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.46);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-card h3 {
    margin: 0;
    text-align: center;
    color: #3557bb;
    font-size: clamp(0.98rem, 1vw, 1.2rem);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.35;
    font-weight: 500;
    text-transform: uppercase;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-pagination {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-pagination__item {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 6px;
    border: 1px solid #c7d2fe;
    text-decoration: none;
    font-weight: 700;
    color: #1d4ed8;
    background: #ffffff;
}

:is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-pagination__item.is-active {
    background: #264de4;
    border-color: #264de4;
    color: #ffffff;
}

.hudnews-home-flow #fasilitas {
    background: #ffffff;
}

.hudnews-home-flow #fasilitas .hudnews-facility-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.hudnews-home-flow #fasilitas .hudnews-facility-card__link {
    min-height: 176px;
    padding: 24px 18px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 12px;
    text-align: center;
    color: inherit;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    background: #eff6ff;
    color: #1d4ed8;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card:nth-child(8n + 1) .hudnews-facility-card__icon {
    background: #e8f0fe;
    color: #1d4ed8;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card:nth-child(8n + 2) .hudnews-facility-card__icon {
    background: #fef3e2;
    color: #b45309;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card:nth-child(8n + 3) .hudnews-facility-card__icon {
    background: #e8f5e9;
    color: #2e7d32;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card:nth-child(8n + 4) .hudnews-facility-card__icon {
    background: #fce7f3;
    color: #dc2626;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card:nth-child(8n + 5) .hudnews-facility-card__icon {
    background: #ede9fe;
    color: #6d28d9;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card:nth-child(8n + 6) .hudnews-facility-card__icon {
    background: #cffafe;
    color: #0e7490;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card:nth-child(8n + 7) .hudnews-facility-card__icon {
    background: #ffedd5;
    color: #ea580c;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card:nth-child(8n + 8) .hudnews-facility-card__icon {
    background: #e0e7ff;
    color: #3730a3;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.08rem, 1.2vw, 1.4rem);
    color: var(--nsh-primary);
    line-height: 1.35;
}

.hudnews-home-flow #fasilitas .hudnews-facility-card p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hudnews-home-flow #fasilitas .hudnews-facility-more {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.hudnews-home-flow #fasilitas .hudnews-facility-more .nsh-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(29, 78, 216, 0.25);
    background: rgba(29, 78, 216, 0.06);
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
}

.hudnews-home-flow #fasilitas .hudnews-facility-more .nsh-link-arrow:hover {
    background: rgba(29, 78, 216, 0.12);
    border-color: rgba(29, 78, 216, 0.35);
}

.hudnews-home-flow #ekskul .hudnews-ekskul__intro {
    margin: 14px auto 0;
    max-width: 640px;
    color: #64748b;
    font-size: clamp(1rem, 1.6vw, 1.08rem);
    line-height: 1.6;
}

.hudnews-home-flow #ekskul .nsh-display-lg {
    text-align: center;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card__link {
    min-height: 114px;
    padding: 18px 14px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 10px;
    text-align: center;
    color: inherit;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    color: #1e3a8a;
    background: #eff6ff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card__icon i {
    filter: saturate(1.15);
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.22rem);
    font-weight: 700;
    color: var(--nsh-primary);
    line-height: 1.3;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card:nth-child(6n + 1) .hudnews-ekskul-card__icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card:nth-child(6n + 2) .hudnews-ekskul-card__icon {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #c2410c;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card:nth-child(6n + 3) .hudnews-ekskul-card__icon {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card:nth-child(6n + 4) .hudnews-ekskul-card__icon {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card:nth-child(6n + 5) .hudnews-ekskul-card__icon {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #15803d;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-card:nth-child(6n + 6) .hudnews-ekskul-card__icon {
    background: linear-gradient(135deg, #fef9c3, #fde68a);
    color: #b45309;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-more {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-more .nsh-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(29, 78, 216, 0.25);
    background: rgba(29, 78, 216, 0.06);
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
}

.hudnews-home-flow #ekskul .hudnews-ekskul-more .nsh-link-arrow:hover {
    background: rgba(29, 78, 216, 0.12);
    border-color: rgba(29, 78, 216, 0.35);
}

.hudnews-home-flow #prestasi.nsh-section--dark {
    background: #f8fafc;
    color: var(--nsh-ink);
}

.hudnews-home-flow #prestasi .nsh-link-arrow--light {
    color: var(--nsh-primary);
}

.hudnews-home-flow #prestasi .nsh-achievement-card {
    background: #ffffff;
    border: 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hudnews-home-flow #prestasi .nsh-achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.hudnews-home-flow #prestasi .nsh-achievement-card:nth-child(3n + 1) {
    background: linear-gradient(180deg, #fff9e8 0%, #ffffff 100%);
    border-top: 4px solid #f59e0b;
}

.hudnews-home-flow #prestasi .nsh-achievement-card:nth-child(3n + 2) {
    background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
    border-top: 4px solid #3b82f6;
}

.hudnews-home-flow #prestasi .nsh-achievement-card:nth-child(3n + 3) {
    background: linear-gradient(180deg, #fff0f7 0%, #ffffff 100%);
    border-top: 4px solid #ec4899;
}

.hudnews-home-flow #prestasi .nsh-achievement-card__body span,
.hudnews-home-flow #prestasi .nsh-achievement-card__body p,
.hudnews-home-flow #prestasi .nsh-achievement-card__body a {
    color: #6b7280;
}

.hudnews-home-flow #prestasi .nsh-achievement-card__body h3 {
    color: var(--nsh-primary);
}

.hudnews-home-flow #prestasi .nsh-achievement-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hudnews-home-flow #prestasi .nsh-achievement-card__body {
    padding: 24px;
    display: grid;
    gap: 16px;
}

.hudnews-home-flow #prestasi .hudnews-achievement-card__head {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    gap: 14px;
}

.hudnews-home-flow #prestasi .hudnews-achievement-card__thumb {
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.hudnews-home-flow #prestasi .hudnews-achievement-card__title-wrap {
    min-width: 0;
}

.hudnews-home-flow #prestasi .nsh-achievement-card__body .hudnews-achievement-card__title {
    margin: 0;
    font-size: clamp(0.9rem, 0.96vw, 1rem) !important;
    font-weight: 700;
    line-height: 1.35;
    color: #0f2f55;
}

.hudnews-home-flow #prestasi .hudnews-achievement-card__meta {
    display: block;
    margin-top: 2px;
    font-size: 0.82rem;
    color: #4b5a7a;
    line-height: 1.45;
}

.hudnews-home-flow #prestasi .hudnews-achievement-card__summary {
    margin: 0;
    color: #334155;
    line-height: 1.6;
    font-size: 0.97rem;
}

.hudnews-home-flow #prestasi .hudnews-prestasi-more {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.hudnews-home-flow #prestasi .hudnews-prestasi-more .nsh-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

@media (max-width: 1080px) {
    .hudnews-agenda-list {
        grid-template-columns: 1fr;
    }

    .hudnews-home-flow :is(#berita, #artikel) .hudnews-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hudnews-home-flow #galeri .hudnews-gallery-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nsh-body #gtk .hudnews-gtk-slider {
        --gtk-columns: 2;
    }

    :is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 16px;
    }

    :is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 16px;
    }

    .nsh-page-gallery-detail .hudnews-gallery-photo-grid--detail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .hudnews-home-flow #fasilitas .hudnews-facility-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hudnews-home-flow #ekskul .hudnews-ekskul-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hudnews-home-flow #prestasi .nsh-achievement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hudnews-home-flow :is(#berita, #artikel) .hudnews-news-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .hudnews-home-flow :is(#berita, #artikel) .hudnews-news-heading__more {
        padding: 10px 16px;
        border-radius: 10px;
    }

    .hudnews-home-flow #galeri .hudnews-gallery-home-block__head {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .hudnews-home-flow :is(#berita, #artikel) .hudnews-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card__body {
        padding: 18px 16px 20px;
    }

    .hudnews-home-flow :is(#berita, #artikel) .hudnews-news-card h3 {
        font-size: 1rem;
    }

    .hudnews-home-flow #galeri .hudnews-gallery-home-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nsh-body #gtk .hudnews-gtk-slider {
        --gtk-columns: 2;
        --gtk-gap: 12px;
        grid-template-columns: 1fr;
    }

    .nsh-body #gtk .hudnews-gtk-slider__nav {
        display: none;
    }

    :is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }

    :is(.nsh-page-gallery-photo, .nsh-page-gallery) .hudnews-gallery-photo-card__count {
        min-height: 28px;
        padding: 0 12px;
        font-size: 0.74rem;
    }

    :is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nsh-page-gallery-detail .hudnews-gallery-photo-grid--detail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    :is(.nsh-page-gallery-video, .nsh-page-gallery) .hudnews-gallery-video-card__watch {
        left: 12px;
        right: 12px;
        min-height: 46px;
        font-size: 0.86rem;
    }

    .nsh-body #gtk .hudnews-gtk-card__body {
        padding: 12px 8px 12px;
        gap: 4px;
    }

    .nsh-body #gtk .hudnews-gtk-card__name {
        font-size: 0.9rem;
    }

    .nsh-body #gtk .hudnews-gtk-card__role {
        font-size: 0.76rem;
    }

    .hudnews-home-flow #fasilitas .hudnews-facility-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .hudnews-home-flow #fasilitas .hudnews-facility-card__link {
        min-height: 150px;
        padding: 18px 10px;
    }

    .hudnews-home-flow #fasilitas .hudnews-facility-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .hudnews-home-flow #fasilitas .hudnews-facility-card h3 {
        font-size: 1.02rem;
    }

    .hudnews-home-flow #fasilitas .hudnews-facility-card p {
        font-size: 0.9rem;
    }

    .hudnews-home-flow #fasilitas .hudnews-facility-more {
        margin-top: 14px;
    }

    .hudnews-home-flow #ekskul .hudnews-ekskul-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .hudnews-home-flow #ekskul .hudnews-ekskul-card__link {
        min-height: 102px;
        padding: 14px 10px;
    }

    .hudnews-home-flow #ekskul .hudnews-ekskul-card__icon {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
    }

    .hudnews-home-flow #ekskul .hudnews-ekskul-card h3 {
        font-size: 1rem;
    }

    .hudnews-home-flow #ekskul .hudnews-ekskul-more {
        margin-top: 14px;
    }

    .hudnews-home-flow #prestasi .nsh-achievement-grid {
        grid-template-columns: 1fr;
    }
}

.hudnews-home-flow #program-unggulan {
    position: relative;
    overflow: hidden;
    padding-top: 34px;
    padding-bottom: 38px;
    background:
        radial-gradient(circle at 12% 12%, rgba(125, 211, 252, 0.14), transparent 24%),
        radial-gradient(circle at 88% 86%, rgba(167, 139, 250, 0.12), transparent 22%),
        linear-gradient(180deg, #04203f 0%, #0a3158 52%, #0c355f 100%);
}

.hudnews-home-flow #program-unggulan::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.28) 0 2px, transparent 3px),
        radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.24) 0 2px, transparent 3px),
        radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
        radial-gradient(circle at 10% 86%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px);
    pointer-events: none;
    opacity: 0.45;
}

.hudnews-home-flow #program-unggulan::after {
    display: none;
}

.hudnews-home-flow #program-unggulan .nsh-container {
    position: relative;
    z-index: 1;
}

.hudnews-home-flow #program-unggulan .nsh-section__heading {
    margin-bottom: 18px;
}

.hudnews-home-flow #program-unggulan .nsh-display-lg {
    color: #ffffff;
    font-size: clamp(1.8rem, 3.1vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hudnews-home-flow #program-unggulan .nsh-display-lg::after {
    display: none;
}

.hudnews-home-flow #program-unggulan .nsh-service-grid {
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    z-index: 1;
}

.hudnews-home-flow #program-unggulan .nsh-service-grid::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0), rgba(167, 243, 208, 0.88), rgba(125, 211, 252, 0));
    box-shadow: 0 0 20px rgba(125, 211, 252, 0.55);
    pointer-events: none;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(219, 234, 254, 0.28);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(3, 19, 38, 0.28);
    backdrop-filter: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card::before {
    display: none;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(3, 19, 38, 0.36);
    border-color: rgba(191, 219, 254, 0.56);
}

.hudnews-home-flow #program-unggulan .hudnews-program-card__link {
    position: relative;
    isolation: isolate;
    min-height: 232px;
    padding: 24px 20px 20px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 10px;
    text-align: center;
    color: inherit;
    text-decoration: none;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.hudnews-home-flow #program-unggulan .hudnews-program-card__link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(6, 27, 48, 0.22) 0%, rgba(8, 29, 52, 0.76) 66%, rgba(8, 29, 52, 0.9) 100%);
}

.hudnews-home-flow #program-unggulan .hudnews-program-card__link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.45);
    outline-offset: -3px;
    border-radius: 18px;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.05rem, 1.2vw, 1.28rem);
    font-weight: 700;
    line-height: 1.32;
    color: #f8fafc;
    max-width: 15ch;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.44);
}

.hudnews-home-flow #program-unggulan .hudnews-program-card p {
    margin: 0;
    color: #f0f6ff;
    font-size: clamp(0.9rem, 0.92vw, 1rem);
    line-height: 1.5;
    max-width: 26ch;
    text-wrap: pretty;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hudnews-home-flow #program-unggulan .nsh-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(120, 170, 214, 0.36);
    border: 1px solid rgba(191, 219, 254, 0.46);
    color: #fef3c7;
    font-size: 1.08rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.hudnews-home-flow #program-unggulan .nsh-service-card__index,
.hudnews-home-flow #program-unggulan .nsh-service-card__eyebrow,
.hudnews-home-flow #program-unggulan .hudnews-program-card .nsh-link-arrow {
    display: none;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card:nth-child(4n + 1) .nsh-service-card__icon {
    color: #7dd3fc;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card:nth-child(4n + 2) .nsh-service-card__icon {
    color: #fde68a;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card:nth-child(4n + 3) .nsh-service-card__icon {
    color: #86efac;
}

.hudnews-home-flow #program-unggulan .hudnews-program-card:nth-child(4n + 4) .nsh-service-card__icon {
    color: #f9a8d4;
}

.hudnews-home-flow #program-unggulan .nsh-service-card h3,
.hudnews-home-flow #program-unggulan .nsh-service-card p,
.hudnews-home-flow #program-unggulan .nsh-service-card a {
    color: #dbeafe;
}

.hudnews-home-flow #program-unggulan .hudnews-program-more {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.hudnews-home-flow #program-unggulan .hudnews-program-more .nsh-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.38);
    background: rgba(255, 255, 255, 0.08);
    color: #e6f0ff;
    text-decoration: none;
    font-weight: 600;
}

.hudnews-home-flow #program-unggulan .hudnews-program-more .nsh-link-arrow:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(191, 219, 254, 0.58);
}

@media (max-width: 1080px) {
    .hudnews-home-flow #program-unggulan .nsh-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .hudnews-home-flow #program-unggulan .nsh-service-grid::before {
        left: 12%;
        right: 12%;
        top: 66px;
    }

    .hudnews-home-flow #program-unggulan .hudnews-program-card__link {
        min-height: 220px;
    }
}

@media (max-width: 720px) {
    .hudnews-home-flow #program-unggulan {
        padding-top: 20px;
        padding-bottom: 22px;
    }

    .hudnews-home-flow #program-unggulan .nsh-container {
        width: min(420px, calc(100vw - 20px));
    }

    .hudnews-home-flow #program-unggulan .nsh-section__heading {
        margin-bottom: 12px;
    }

    .hudnews-home-flow #program-unggulan .nsh-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hudnews-home-flow #program-unggulan .nsh-service-grid::before {
        display: none;
    }

    .hudnews-home-flow #program-unggulan .hudnews-program-card {
        aspect-ratio: 1 / 1;
        width: 100%;
        max-width: 190px;
        margin-inline: auto;
        border-radius: 14px;
        padding: 0;
        gap: 0;
        display: block;
    }

    .hudnews-home-flow #program-unggulan .hudnews-program-card__link {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
        padding: 12px 10px;
        gap: 8px;
    }

    .hudnews-home-flow #program-unggulan .hudnews-program-card p {
        display: none;
    }

    .hudnews-home-flow #program-unggulan .nsh-service-card__icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 0.88rem;
    }

    .hudnews-home-flow #program-unggulan .hudnews-program-card h3 {
        font-size: 1rem;
        line-height: 1.26;
        max-width: 11ch;
    }

    .hudnews-home-flow #program-unggulan .nsh-display-lg {
        font-size: clamp(1.6rem, 6.4vw, 1.95rem);
    }

    .hudnews-home-flow #program-unggulan .hudnews-program-more {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .hudnews-home-flow #program-unggulan .nsh-container {
        width: calc(100vw - 18px);
    }

    .hudnews-home-flow #program-unggulan .hudnews-program-card {
        max-width: 168px;
    }

    .hudnews-home-flow #program-unggulan .hudnews-program-card h3 {
        font-size: 0.95rem;
    }
}

.hudnews-principal-caption {
    margin: -4px 0 0;
    color: #94a3b8;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}

.hudnews-greeting__layout {
    display: grid;
    grid-template-columns: minmax(220px, 264px) minmax(0, 760px);
    gap: clamp(28px, 4.5vw, 60px);
    align-items: center;
    justify-content: start;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 251, 247, 0.88));
    box-shadow: 0 24px 48px rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
}

.hudnews-greeting-card {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 34%),
        linear-gradient(155deg, #7eaee7 0%, #93c5fd 34%, #b6b4f7 68%, #f3c4a6 100%);
    border-radius: 28px;
    padding: 24px 22px 26px;
    color: #153b66;
    text-align: center;
    box-shadow: 0 20px 44px rgba(96, 112, 138, 0.2);
    display: grid;
    justify-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    position: relative;
    overflow: hidden;
}

.hudnews-greeting-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.36), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.hudnews-greeting-card__avatar {
    width: 182px;
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    padding: 0;
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 18px 34px rgba(71, 85, 105, 0.16);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.42);
    position: relative;
    z-index: 1;
}

.hudnews-greeting-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    background: transparent;
}

.hudnews-greeting-card__name {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    letter-spacing: -0.01em;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.hudnews-greeting-card__role {
    margin: 0;
    color: rgba(21, 59, 102, 0.78);
    font-size: 1.02rem;
    position: relative;
    z-index: 1;
}

.hudnews-greeting__content {
    display: grid;
    gap: 16px;
    align-content: center;
    max-width: 760px;
    padding: 24px 28px;
    border-left: 0;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 239, 0.78));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.hudnews-greeting__content .nsh-display-md {
    color: #1f3f66;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.04;
}

.hudnews-greeting__body {
    display: block;
    max-width: 62ch;
}

.hudnews-greeting__body p {
    margin: 0;
    color: #475569;
    line-height: 1.82;
    text-align: left;
    text-wrap: pretty;
}

.hudnews-greeting__content .nsh-link-arrow {
    margin-top: 4px;
    justify-self: start;
}

.hudnews-greeting__signature {
    margin: 0;
    color: #64748b;
    font-style: italic;
    font-size: 1.04rem;
}

.hudnews-article-detail {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 48%);
}

.hudnews-article-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(290px, 0.56fr);
    gap: clamp(18px, 2.6vw, 34px);
    align-items: start;
}

.hudnews-article-detail__article {
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 22px 42px -18px rgba(15, 23, 42, 0.16);
    padding: clamp(20px, 2.2vw, 32px);
    display: grid;
    gap: 18px;
}

.hudnews-article-detail__head {
    display: grid;
    gap: 14px;
}

.hudnews-article-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hudnews-article-detail__topic {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #dbe5ff;
    background: #eef2ff;
    color: #4338ca;
    text-decoration: none;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hudnews-article-detail__meta-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hudnews-article-detail__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.83rem;
    font-weight: 600;
}

.hudnews-article-detail__meta-item i {
    color: #6366f1;
    font-size: 0.8rem;
}

.hudnews-article-detail__meta-divider {
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 700;
}

.hudnews-article-detail__title {
    margin: 0;
    color: #0f172a;
    font-family: "Playfair Display", "Plus Jakarta Sans", serif;
    font-size: clamp(1.7rem, 3.2vw, 2.86rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
}

.hudnews-article-detail__cover {
    border-radius: 24px;
    overflow: hidden;
    background: #e2e8f0;
}

.hudnews-article-detail__cover .nsh-detail-article__lead {
    margin: 0;
    border-radius: 0;
    aspect-ratio: 16 / 9;
}

.hudnews-article-detail__content {
    color: #334155;
    font-size: 1.03rem;
    line-height: 1.84;
}

.hudnews-article-detail__content p {
    margin-bottom: 1.2rem;
}

.hudnews-article-detail__content h2 {
    font-size: clamp(1.34rem, 2vw, 1.82rem);
    margin-top: 2rem;
    margin-bottom: 0.9rem;
}

.hudnews-article-detail__content h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.38rem);
    margin-top: 1.64rem;
    margin-bottom: 0.76rem;
}

.hudnews-article-detail__content blockquote {
    margin: 1.52rem 0;
    padding: 16px 18px;
    border-left: 4px solid #6366f1;
    border-radius: 0 14px 14px 0;
    background: #eef2ff;
    color: #3730a3;
    font-style: italic;
    font-weight: 500;
}

.hudnews-article-detail__foot {
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.hudnews-article-detail__tags {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hudnews-article-detail__tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}

.hudnews-article-detail__share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Shared share-action chrome for article and news detail */
.hudnews-article-detail__share > span,
.hudnews-news-detail__share > span {
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 700;
}

.hudnews-article-detail__share a,
.hudnews-news-detail__share a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    transition:
        transform var(--nsh-transition-medium),
        border-color var(--nsh-transition-medium),
        background-color var(--nsh-transition-medium),
        color var(--nsh-transition-medium);
}

.hudnews-article-detail__share a:hover,
.hudnews-article-detail__share a:focus-visible,
.hudnews-news-detail__share a:hover,
.hudnews-news-detail__share a:focus-visible {
    border-color: #c7d2fe;
    background: #eef2ff;
    color: #4f46e5;
}

.hudnews-article-detail__aside {
    position: sticky;
    top: 104px;
    align-self: start;
    display: grid;
    gap: 12px;
}

.hudnews-article-detail__panel {
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 18px 34px -18px rgba(15, 23, 42, 0.14);
    padding: 16px;
    display: grid;
    gap: 12px;
}

.hudnews-article-detail__panel--author {
    text-align: center;
    justify-items: center;
    gap: 8px;
}

.hudnews-article-detail__author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #ffffff;
    display: inline-grid;
    place-items: center;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hudnews-article-detail__panel--author h3 {
    margin: 0;
    font-size: 1.08rem;
    color: #0f172a;
}

.hudnews-article-detail__panel--author p {
    margin: 0;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.7;
}

.hudnews-article-detail__panel--author .nsh-btn {
    margin-top: 2px;
}

.hudnews-article-detail__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hudnews-article-detail__panel-head h3 {
    margin: 0;
    font-size: 1.03rem;
    color: #0f172a;
}

.hudnews-article-detail__panel-head span {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
    display: inline-grid;
    place-items: center;
    font-size: 0.79rem;
}

.hudnews-article-detail__related-list {
    display: grid;
    gap: 8px;
}

.hudnews-article-detail__related-item {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.hudnews-article-detail__related-item:hover,
.hudnews-article-detail__related-item:focus-visible {
    background: #f8fafc;
}

.hudnews-article-detail__related-thumb {
    display: inline-block;
    width: 80px;
    height: 45px;
    border-radius: 12px;
    overflow: hidden;
    background: #e2e8f0;
}

.hudnews-article-detail__related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hudnews-article-detail__related-copy {
    display: grid;
    gap: 3px;
}

.hudnews-article-detail__related-category {
    color: #4f46e5;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hudnews-article-detail__related-copy strong {
    color: #1f2937;
    font-size: 0.83rem;
    line-height: 1.4;
}

.hudnews-article-detail__related-empty {
    border-radius: 12px;
    border: 1px dashed #dbe3ef;
    background: #f8fafc;
    padding: 12px;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.6;
}

.hudnews-article-detail__categories {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.hudnews-article-detail__categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition:
        border-color var(--nsh-transition-fast),
        background-color var(--nsh-transition-fast),
        color var(--nsh-transition-fast);
}

.hudnews-article-detail__categories li a:hover,
.hudnews-article-detail__categories li a:focus-visible {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.hudnews-article-detail__categories li a span:last-child {
    min-width: 26px;
    min-height: 24px;
    padding: 0 7px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #475569;
    display: inline-grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.hudnews-article-detail__categories li a.is-active {
    border-color: #4338ca;
    background: #4f46e5;
    color: #ffffff;
}

.hudnews-article-detail__categories li a.is-active span:last-child {
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.hudnews-news-detail .nsh-detail-layout {
    grid-template-columns: minmax(0, 1.24fr) minmax(290px, 0.56fr);
    gap: clamp(18px, 2.6vw, 34px);
}

.hudnews-news-detail .nsh-detail-sidebar {
    position: sticky;
    top: 104px;
    align-self: start;
    display: grid;
    gap: 12px;
}

.hudnews-reading-progress {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(15, 23, 42, 0.08);
    z-index: 70;
    pointer-events: none;
}

.hudnews-reading-progress__bar {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #1d4ed8 0%, #22c55e 100%);
    transition: width 0.15s ease;
}

.hudnews-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0 0 12px;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 600;
}

.hudnews-breadcrumb a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d6e3f7;
    color: #1f3f66;
    text-decoration: none;
}

.hudnews-breadcrumb a:hover,
.hudnews-breadcrumb a:focus-visible {
    border-color: #93c5fd;
    background: #eef5ff;
}

.hudnews-breadcrumb span:not([aria-current]) {
    color: #94a3b8;
    font-weight: 700;
}

.hudnews-breadcrumb span[aria-current] {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #d6e3f7;
    color: #1e3a5f;
    max-width: min(100%, 520px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hudnews-news-detail__head {
    display: grid;
    gap: 12px;
    margin-bottom: 10px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #dce7f8;
    background: linear-gradient(135deg, #f8fbff 0%, #edf5ff 44%, #fff7eb 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hudnews-news-detail__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.hudnews-news-detail__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4f5f77;
    font-size: 0.83rem;
    font-weight: 600;
}

.hudnews-news-detail__meta-item i {
    color: #1e63c5;
    font-size: 0.8rem;
}

.hudnews-news-detail__meta-item--link {
    text-decoration: none;
    color: #1f4d90;
}

.hudnews-news-detail__meta-item--link:hover,
.hudnews-news-detail__meta-item--link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hudnews-news-detail__meta-sep {
    color: #9aa8bc;
    font-weight: 700;
    font-size: 0.82rem;
}

.hudnews-news-detail__title {
    margin: 0;
    color: #153c70;
    font-family: "Playfair Display", "Plus Jakarta Sans", serif;
    font-size: clamp(1.44rem, 2vw, 2rem);
    line-height: 1.24;
}

.hudnews-news-detail__summary {
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.7;
}

.hudnews-news-detail__panel {
    display: grid;
    gap: 12px;
    content-visibility: auto;
    contain-intrinsic-size: 320px;
}

.hudnews-news-side-link {
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.hudnews-news-side-link__thumb {
    display: inline-block;
    width: 80px;
    height: 45px;
    border-radius: 10px;
    overflow: hidden;
    background: #e2e8f0;
}

.hudnews-news-side-link__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hudnews-news-side-link__copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.hudnews-news-side-link__copy strong {
    font-size: 0.9rem;
    line-height: 1.32;
}

.hudnews-news-side-link__copy span {
    font-size: 0.8rem;
    line-height: 1.35;
}

.hudnews-news-detail__quickfacts {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.hudnews-news-detail__quickfacts li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.hudnews-news-detail__quickfacts li span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.78rem;
}

.hudnews-news-detail__quickfacts li span i {
    color: #2f67bf;
    font-size: 0.75rem;
}

.hudnews-news-detail__quickfacts li strong {
    color: #1f3f66;
    font-size: 0.82rem;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.hudnews-news-detail__actions {
    display: grid;
    gap: 9px;
}

.hudnews-news-detail__actions .nsh-btn {
    justify-content: center;
}

.hudnews-news-detail__share {
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hudnews-news-detail__pager {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hudnews-news-detail__pager-link {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dbe3ef;
    background: #f8fafc;
    text-decoration: none;
    color: #1f3f66;
}

.hudnews-news-detail__pager-link span {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #64748b;
}

.hudnews-news-detail__pager-link strong {
    font-size: 0.92rem;
    line-height: 1.45;
}

.hudnews-news-detail__pager-link.is-next {
    text-align: right;
}

.nsh-page-news #berita .hudnews-news-heading__title,
.nsh-page-articles #artikel .hudnews-news-heading__title {
    font-size: clamp(1.58rem, 2.3vw, 2.3rem);
}

.nsh-page-news #berita .hudnews-news-heading__title::after,
.nsh-page-articles #artikel .hudnews-news-heading__title::after {
    width: 68px;
    height: 4px;
    margin-top: 10px;
}

.nsh-page-news #berita .hudnews-news-card h3,
.nsh-page-articles #artikel .hudnews-news-card h3 {
    font-size: clamp(0.9rem, 0.95vw, 1.02rem);
}

.nsh-page-news #berita .hudnews-news-card__meta,
.nsh-page-articles #artikel .hudnews-news-card__meta {
    gap: 8px;
}

.nsh-page-news #berita .hudnews-news-card__meta .hudnews-news-card__badge,
.nsh-page-articles #artikel .hudnews-news-card__meta .hudnews-news-card__badge {
    font-size: 0.69rem;
}

@media (max-width: 920px) {
    .hudnews-news-detail .nsh-detail-layout {
        grid-template-columns: 1fr;
    }

    .hudnews-article-detail__layout {
        grid-template-columns: 1fr;
    }

    .hudnews-article-detail__aside {
        position: static;
        top: auto;
    }

    .hudnews-article-detail__article {
        border-radius: 22px;
        padding: 16px;
    }

    .hudnews-article-detail__topic {
        min-height: 30px;
        padding: 0 11px;
        font-size: 0.67rem;
    }

    .hudnews-article-detail__meta-item {
        font-size: 0.77rem;
    }

    .hudnews-article-detail__meta-divider {
        display: none;
    }

    .hudnews-article-detail__foot {
        align-items: flex-start;
        gap: 12px;
    }

    .hudnews-reading-progress {
        top: 66px;
    }

    .hudnews-news-detail .nsh-detail-sidebar {
        position: static;
        top: auto;
    }

    .hudnews-news-detail__head {
        padding: 14px;
    }

    .hudnews-breadcrumb a,
    .hudnews-breadcrumb span[aria-current] {
        min-height: 28px;
        padding: 0 10px;
        font-size: 0.73rem;
    }

    .hudnews-breadcrumb span[aria-current] {
        max-width: 100%;
        white-space: normal;
    }

    .hudnews-news-detail__meta-item {
        font-size: 0.77rem;
    }

    .hudnews-news-detail__meta-sep {
        display: none;
    }

    .hudnews-news-detail__quickfacts li {
        padding: 8px 9px;
    }

    .hudnews-news-detail__actions .nsh-btn {
        width: 100%;
    }

    .hudnews-news-detail__pager {
        grid-template-columns: 1fr;
    }

    .hudnews-news-detail__pager-link.is-next {
        text-align: left;
    }

    .hudnews-news-side-link {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .hudnews-news-side-link__thumb {
        width: 72px;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .hudnews-news-side-link__copy strong {
        font-size: 0.8rem;
    }

    .hudnews-news-side-link__copy span {
        font-size: 0.76rem;
    }
}

.hudnews-heading-center {
    justify-content: center;
    text-align: center;
}

.hudnews-heading-center > div {
    max-width: 720px;
}

.hudnews-agenda-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
}

.hudnews-agenda-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.hudnews-agenda-item__date {
    width: 64px;
    min-height: 64px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    align-content: center;
    background: var(--nsh-primary);
    color: #ffffff;
    text-align: center;
}

.hudnews-agenda-item__date strong {
    display: block;
    font-size: 1.22rem;
    line-height: 1;
}

.hudnews-agenda-item__date span {
    display: block;
    font-size: 0.72rem;
    margin-top: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hudnews-agenda-item:nth-child(2) .hudnews-agenda-item__date {
    background: #b8860b;
}

.hudnews-agenda-item:nth-child(3) .hudnews-agenda-item__date {
    background: #2e7d32;
}

.hudnews-agenda-item__body h3 {
    margin: 0;
    color: var(--nsh-primary);
    font-size: 1rem;
    font-weight: 700;
}

.hudnews-agenda-item__meta {
    margin: 6px 0 8px;
    font-size: 0.78rem;
    color: #94a3b8;
}

.hudnews-agenda-item__body p {
    margin: 0;
    color: #6b7280;
    line-height: 1.68;
}

.hudnews-agenda-item__body a {
    display: inline-flex;
    margin-top: 10px;
    color: var(--nsh-primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.hudnews-download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.hudnews-download-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hudnews-download-item:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.hudnews-download-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #e8f0fe;
    color: var(--nsh-primary);
}

.hudnews-download-item:nth-child(2) .hudnews-download-item__icon {
    background: #fef3e0;
    color: #b8860b;
}

.hudnews-download-item:nth-child(3) .hudnews-download-item__icon {
    background: #e8f5e9;
    color: #2e7d32;
}

.hudnews-download-item__body {
    min-width: 0;
}

.hudnews-download-item__body strong {
    display: block;
    color: var(--nsh-primary);
    font-size: 0.88rem;
    line-height: 1.4;
}

.hudnews-download-item__body span {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-size: 0.72rem;
}

.hudnews-download-item__body p {
    margin: 5px 0 0;
    color: #6b7280;
    font-size: 0.76rem;
    line-height: 1.52;
}

.hudnews-download-item > a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #94a3b8;
}

.hudnews-download-item > a:hover {
    color: var(--nsh-primary);
}

.hudnews-home-flow #mitra.hudnews-partners-section {
    background: #ffffff;
}

.hudnews-home-flow #mitra .hudnews-partners-marquee {
    position: relative;
    overflow: hidden;
}

.hudnews-home-flow #mitra .hudnews-partners-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: max-content;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.hudnews-home-flow #mitra .hudnews-partners-marquee.is-animated .hudnews-partners-track {
    animation: hudnewsPartnersMarquee 28s linear infinite;
}

.hudnews-home-flow #mitra .hudnews-partners-marquee.is-animated:hover .hudnews-partners-track,
.hudnews-home-flow #mitra .hudnews-partners-marquee.is-animated:focus-within .hudnews-partners-track {
    animation-play-state: paused;
}

.hudnews-home-flow #mitra .hudnews-partner-card {
    min-height: 104px;
    min-width: clamp(240px, 22vw, 320px);
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #cbe9db;
    background: #eaf8f1;
    color: #17613f;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hudnews-home-flow #mitra .hudnews-partner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
    border-color: #b6dfce;
}

.hudnews-home-flow #mitra .hudnews-partner-card__logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: #15803d;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    overflow: hidden;
}

.hudnews-home-flow #mitra .hudnews-partner-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    padding: 6px;
}

.hudnews-home-flow #mitra .hudnews-partner-card__name {
    font-weight: 700;
    color: inherit;
    font-size: 1.06rem;
    line-height: 1.35;
}

.hudnews-home-flow #mitra .hudnews-partner-card.tone-1 .hudnews-partner-card__logo {
    background: #ca8a04;
}

.hudnews-home-flow #mitra .hudnews-partner-card.tone-2 .hudnews-partner-card__logo {
    background: #15803d;
}

.hudnews-home-flow #mitra .hudnews-partner-card.tone-3 .hudnews-partner-card__logo {
    background: #65a30d;
}

.hudnews-home-flow #mitra .hudnews-partner-card.tone-4 .hudnews-partner-card__logo {
    background: #16a34a;
}

.hudnews-home-flow #mitra .hudnews-partner-card.tone-5 .hudnews-partner-card__logo {
    background: #0f766e;
}

.hudnews-home-flow #mitra .hudnews-partner-card.tone-6 .hudnews-partner-card__logo {
    background: #2563eb;
}

@media (max-width: 1080px) {
    .hudnews-home-flow #mitra .hudnews-partners-track {
        gap: 14px;
    }

    .hudnews-home-flow #mitra .hudnews-partner-card {
        min-width: clamp(220px, 36vw, 280px);
    }
}

@media (max-width: 720px) {
    .hudnews-home-flow #mitra .hudnews-partners-track {
        gap: 12px;
        animation-duration: 24s;
    }

    .hudnews-home-flow #mitra .hudnews-partner-card {
        min-height: 80px;
        min-width: clamp(190px, 72vw, 240px);
        padding: 10px;
        gap: 10px;
    }

    .hudnews-home-flow #mitra .hudnews-partner-card__logo {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .hudnews-home-flow #mitra .hudnews-partner-card__name {
        min-width: 0;
        font-size: clamp(0.78rem, 2.9vw, 0.9rem);
        line-height: 1.25;
        letter-spacing: 0;
        overflow-wrap: anywhere;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hudnews-home-flow #mitra .hudnews-partners-marquee.is-animated .hudnews-partners-track {
        animation: none;
    }
}

@keyframes hudnewsPartnersMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(calc(-50% - 9px), 0, 0);
    }
}

.hudnews-video-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.hudnews-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 16px;
}

.hudnews-footer-grid--cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hudnews-footer-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hudnews-footer-grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hudnews-footer-grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hudnews-footer-brand {
    display: grid;
    gap: 12px;
}

.hudnews-footer-column {
    display: grid;
    align-content: start;
    justify-items: center;
    text-align: center;
    gap: 14px;
}

.hudnews-footer-group {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 8px;
}

.hudnews-footer-group h4 {
    margin: 0;
}

.hudnews-footer-brand__head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hudnews-footer-brand__mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #b8860b;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
}

.hudnews-footer-brand__name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.hudnews-footer-brand p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.7;
    color: #bfdbfe;
}

.hudnews-footer-column h4 {
    margin: 0;
    color: #fef3c7;
    font-size: 0.84rem;
    font-weight: 700;
}

.hudnews-footer-links,
.hudnews-footer-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.hudnews-footer-links a,
.hudnews-footer-meta li {
    color: #bfdbfe;
    font-size: 0.76rem;
    line-height: 1.55;
}
.hudnews-footer-copy {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.55;
    text-align: center;
    white-space: pre-line;
}

.hudnews-footer-links a:hover {
    color: #ffffff;
}

.hudnews-footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.hudnews-social-link {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    border: 1px solid transparent;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.hudnews-social-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    color: #ffffff;
}

.hudnews-social-link.is-youtube {
    background: #ff0000;
    border-color: #ff4d4d;
}

.hudnews-social-link.is-facebook {
    background: #1877f2;
    border-color: #5b9cff;
}

.hudnews-social-link.is-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
    border-color: #f9a45e;
}

.hudnews-social-link.is-x {
    background: #111827;
    border-color: #374151;
}

.hudnews-social-link.is-tiktok {
    background: linear-gradient(135deg, #25f4ee 0%, #000000 45%, #000000 55%, #fe2c55 100%);
    border-color: #4ee8e2;
}

.hudnews-social-link.is-whatsapp {
    background: #25d366;
    border-color: #53e08a;
}

/* Font Awesome subset does not include TikTok by default. */
.fa-tiktok:before {
    content: "\e07b";
}

.hudnews-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: #cbd5e1;
    font-size: 0.74rem;
}

@media (max-width: 1080px) {
    .hudnews-download-grid {
        grid-template-columns: 1fr;
    }

    .hudnews-greeting__layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 22px;
    }

    .hudnews-greeting__content {
        padding: 22px 20px;
    }

    .hudnews-greeting-card {
        max-width: 320px;
    }

    .hudnews-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hudnews-greeting-card {
        max-width: 100%;
    }

    .hudnews-greeting-card__avatar {
        width: 148px;
    }

    .hudnews-greeting__content {
        gap: 14px;
        padding: 18px 16px;
    }

    .hudnews-greeting__signature {
        font-size: 0.98rem;
    }

    .hudnews-agenda-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hudnews-agenda-item__date {
        width: 68px;
    }

    .hudnews-agenda-item__body > p:not(.hudnews-agenda-item__meta) {
        display: none;
    }

    .hudnews-agenda-item__body a {
        margin-top: 8px;
    }

    .hudnews-footer-grid {
        grid-template-columns: 1fr;
    }

    .hudnews-footer-bottom {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 720px) {
    .nsh-header {
        background: rgba(249, 242, 234, 0.9);
    }

    .nsh-header__bar {
        min-height: 84px;
    }

    .nsh-banner,
    .nsh-page-hero {
        padding-top: 20px;
    }

    .nsh-banner-carousel {
        width: calc(100vw - 14px);
        border-radius: 28px;
    }

    .nsh-banner-carousel__viewport {
        min-height: clamp(540px, 78svh, 700px);
    }

    .nsh-banner-slide__inner {
        padding: 22px 0 94px;
    }

    .nsh-banner-slide__copy {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .nsh-trust-band__inner {
        border-radius: 26px;
        padding: 20px;
    }

    .nsh-service-card,
    .nsh-story-card__body,
    .nsh-team-card__body,
    .nsh-gallery-card__body,
    .nsh-achievement-card__body,
    .nsh-panel-column,
    .nsh-detail-article,
    .nsh-detail-sidebar__panel,
    .nsh-gallery-video-list,
    .nsh-info-card,
    .nsh-form-card,
    .nsh-contact-callout,
    .nsh-footer__brand {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nsh-banner-carousel {
        width: calc(100vw - 12px);
        border-radius: 24px;
    }

    .nsh-banner-carousel__controls {
        bottom: 10px;
    }

    .nsh-banner-carousel__buttons {
        gap: 8px;
    }

    .nsh-banner-carousel__button {
        width: 38px;
        height: 38px;
    }

    .nsh-banner-carousel__dot {
        width: 10px;
        height: 10px;
    }
}

/* Contextual redesign: ekstrakurikuler, prestasi, pengumuman, agenda, unduhan */
.nsh-context-shell {
    position: relative;
}

.nsh-context-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 20px;
    background: #ffffff;
    border: 1px solid #d8e2f0;
    border-radius: 26px;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
    padding: 28px;
    margin-bottom: 22px;
}

.nsh-context-hero__copy {
    display: grid;
    gap: 12px;
}

.nsh-context-hero__copy p {
    margin: 0;
    color: #425466;
    line-height: 1.75;
}

.nsh-context-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 11px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.nsh-context-hero__stats {
    display: grid;
    gap: 10px;
}

.nsh-context-hero__stat {
    background: #f8fafc;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    padding: 14px 15px;
    display: grid;
    gap: 4px;
}

.nsh-context-hero__stat strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #0f172a;
    font-size: 1.3rem;
    line-height: 1.2;
}

.nsh-context-hero__stat span {
    color: #475569;
    font-size: 0.86rem;
}

/* Ekstrakurikuler */
.nsh-page-extracurriculars .nsh-context-shell--ekskul {
    background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 55%);
}

.nsh-exkul-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nsh-exkul-card {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 22px;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: grid;
}

.nsh-exkul-card__media {
    position: relative;
    display: block;
}

.nsh-exkul-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.nsh-exkul-card__chip {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.84);
    color: #f8fafc;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
}

.nsh-exkul-card__body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.nsh-exkul-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
}

.nsh-exkul-card__body h3 {
    margin: 0;
    font-size: 1.18rem;
}

.nsh-exkul-card__body p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.nsh-exkul-card--empty {
    border-style: dashed;
    border-width: 2px;
    box-shadow: none;
}

/* Prestasi */
.nsh-page-achievements .nsh-context-shell--prestasi {
    background: var(--nsh-theme-footer-bg);
}

.nsh-page-achievements .nsh-context-shell--prestasi .nsh-context-hero__eyebrow {
    background: var(--nsh-theme-pill-bg);
    border-color: var(--nsh-theme-pill-border);
    color: var(--nsh-theme-pill-color);
}

.nsh-prestasi-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 18px;
    margin-bottom: 18px;
}

.nsh-prestasi-spotlight {
    background: var(--nsh-theme-footer-panel-bg);
    border: 1px solid var(--nsh-theme-footer-panel-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--nsh-theme-card-shadow);
}

.nsh-prestasi-spotlight img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8.8;
    object-fit: cover;
}

.nsh-prestasi-spotlight__body {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.nsh-prestasi-spotlight__meta {
    color: var(--nsh-theme-pill-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.nsh-prestasi-spotlight__body h3 {
    margin: 0;
    color: var(--nsh-theme-on-accent);
    font-size: 1.42rem;
}

.nsh-prestasi-spotlight__body p {
    margin: 0;
    color: var(--nsh-theme-footer-copy);
    line-height: 1.7;
}

.nsh-prestasi-levels {
    background: var(--nsh-theme-footer-panel-bg);
    border: 1px solid var(--nsh-theme-footer-panel-border);
    border-radius: 24px;
    padding: 18px;
    display: grid;
    gap: 12px;
}

.nsh-prestasi-levels h3 {
    margin: 0;
    color: var(--nsh-theme-on-accent);
}

.nsh-prestasi-levels__list {
    display: grid;
    gap: 8px;
}

.nsh-prestasi-levels__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 12px;
    background: var(--nsh-theme-footer-panel-bg);
    border: 1px solid var(--nsh-theme-footer-panel-border);
    padding: 10px 12px;
}

.nsh-prestasi-levels__item span {
    color: var(--nsh-theme-footer-copy);
    font-size: 0.84rem;
}

.nsh-prestasi-levels__item strong {
    color: var(--nsh-theme-on-accent);
    font-size: 1rem;
}

.nsh-prestasi-levels__note {
    margin: 0;
    color: var(--nsh-theme-footer-copy);
    font-size: 0.86rem;
    line-height: 1.65;
}

.nsh-prestasi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.nsh-prestasi-card {
    background: var(--nsh-theme-footer-panel-bg);
    border: 1px solid var(--nsh-theme-footer-panel-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--nsh-theme-card-shadow-soft);
}

.nsh-prestasi-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.nsh-prestasi-card__body {
    padding: 16px;
    display: grid;
    gap: 9px;
}

.nsh-prestasi-card__meta {
    color: var(--nsh-theme-pill-color);
    font-size: 0.78rem;
    font-weight: 600;
}

.nsh-prestasi-card__body h3 {
    margin: 0;
    color: var(--nsh-theme-on-accent);
    font-size: 1.08rem;
}

.nsh-prestasi-card__body p {
    margin: 0;
    color: var(--nsh-theme-footer-copy);
    line-height: 1.65;
}

/* Pengumuman */
.nsh-page-announcements .nsh-context-shell--announcement {
    background: linear-gradient(180deg, #fff9ed 0%, #ffffff 100%);
}

.nsh-bulletin-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 16px;
}

.nsh-bulletin-summary {
    background: #fffdf8;
    border: 1px solid #f3dfb7;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 18px 42px rgba(146, 64, 14, 0.12);
    display: grid;
    align-content: start;
    gap: 10px;
}

.nsh-bulletin-summary h3 {
    margin: 0;
    font-size: 1.22rem;
}

.nsh-bulletin-summary p {
    margin: 0;
    color: #5b4c39;
    line-height: 1.72;
}

.nsh-bulletin-summary__stat {
    border-radius: 14px;
    border: 1px solid #f5dca7;
    background: #fff8eb;
    padding: 11px 12px;
    display: grid;
    gap: 4px;
}

.nsh-bulletin-summary__stat strong {
    font-size: 1.2rem;
    color: #7c2d12;
}

.nsh-bulletin-summary__stat span {
    font-size: 0.82rem;
    color: #7c5f37;
}

.nsh-bulletin-list {
    display: grid;
    align-content: start;
    gap: 12px;
}

.nsh-bulletin-card {
    background: #ffffff;
    border: 1px solid #f1d7a4;
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(146, 64, 14, 0.1);
    padding: 16px 18px;
    display: grid;
    gap: 8px;
}

.nsh-bulletin-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.nsh-bulletin-card__status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nsh-bulletin-card__status.is-active {
    background: #dcfce7;
    color: #166534;
}

.nsh-bulletin-card__status.is-upcoming {
    background: #e0f2fe;
    color: #0c4a6e;
}

.nsh-bulletin-card__status.is-ended {
    background: #fee2e2;
    color: #991b1b;
}

.nsh-bulletin-card__range {
    color: #7a5a2f;
    font-size: 0.78rem;
    font-weight: 600;
}

.nsh-bulletin-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.nsh-bulletin-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.nsh-bulletin-card__note {
    color: #7c2d12;
    font-size: 0.82rem;
    font-weight: 600;
}

.nsh-bulletin-card--empty {
    border-style: dashed;
    box-shadow: none;
}

/* Agenda */
.nsh-page-events .nsh-context-shell--agenda {
    background: radial-gradient(circle at top right, rgba(186, 230, 253, 0.42), transparent 58%);
}

.nsh-agenda-timeline {
    display: grid;
    gap: 12px;
}

.nsh-agenda-line-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    background: #ffffff;
    border: 1px solid #d8e4f2;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.nsh-agenda-line-item__date {
    border-radius: 15px;
    background: linear-gradient(180deg, #0f172a, #1e293b);
    color: #f8fafc;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 10px 6px;
}

.nsh-agenda-line-item__date strong {
    font-size: 1.45rem;
    line-height: 1;
}

.nsh-agenda-line-item__date span {
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.nsh-agenda-line-item__body {
    display: grid;
    gap: 8px;
}

.nsh-agenda-line-item__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #4b5563;
    font-size: 0.82rem;
}

.nsh-agenda-line-item__status {
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nsh-agenda-line-item__status.is-upcoming {
    background: #dcfce7;
    color: #166534;
}

.nsh-agenda-line-item__status.is-ended {
    background: #f1f5f9;
    color: #475569;
}

.nsh-agenda-line-item__body h3 {
    margin: 0;
    font-size: 1.07rem;
}

.nsh-agenda-line-item__body p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.nsh-agenda-line-item--empty {
    border-style: dashed;
    box-shadow: none;
}

/* Unduhan */
.nsh-page-downloads .nsh-context-shell--downloads {
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.nsh-download-library {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
    gap: 16px;
}

.nsh-download-library__summary {
    background: #ffffff;
    border: 1px solid #d7e6f2;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 20px;
    display: grid;
    align-content: start;
    gap: 10px;
}

.nsh-download-library__summary h3 {
    margin: 0;
    font-size: 1.2rem;
}

.nsh-download-library__summary p {
    margin: 0;
    color: #475569;
    line-height: 1.72;
}

.nsh-download-library__stats {
    display: grid;
    gap: 8px;
}

.nsh-download-library__stat {
    border-radius: 14px;
    border: 1px solid #dbe8f5;
    background: #f8fbff;
    padding: 10px 11px;
    display: grid;
    gap: 4px;
}

.nsh-download-library__stat strong {
    color: #0f172a;
    font-size: 1.16rem;
}

.nsh-download-library__stat span {
    color: #475569;
    font-size: 0.82rem;
}

.nsh-download-library__list {
    display: grid;
    gap: 11px;
}

.nsh-download-doc {
    background: #ffffff;
    border: 1px solid #d8e6f3;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
    padding: 14px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.nsh-download-doc__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #e0f2fe;
    color: #075985;
    display: inline-grid;
    place-items: center;
    font-size: 1.45rem;
}

.nsh-download-doc__body {
    display: grid;
    gap: 7px;
}

.nsh-download-doc__meta {
    color: #475569;
    font-size: 0.79rem;
    font-weight: 600;
}

.nsh-download-doc__body h3 {
    margin: 0;
    font-size: 1.04rem;
}

.nsh-download-doc__body p {
    margin: 0;
    color: #475569;
    line-height: 1.68;
}

.nsh-download-doc__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.nsh-download-doc__foot > span {
    color: #64748b;
    font-size: 0.79rem;
    font-weight: 600;
}

.nsh-download-doc__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nsh-download-doc__actions .nsh-btn {
    padding: 7px 12px;
    border-radius: 10px;
    font-size: 0.79rem;
}

.nsh-download-doc--empty {
    border-style: dashed;
    box-shadow: none;
}

@media (max-width: 1120px) {
    .nsh-exkul-board,
    .nsh-prestasi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nsh-prestasi-showcase,
    .nsh-bulletin-layout,
    .nsh-download-library {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nsh-context-hero {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 20px;
    }

    .nsh-exkul-board,
    .nsh-prestasi-grid {
        grid-template-columns: 1fr;
    }

    .nsh-agenda-line-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nsh-agenda-line-item__date {
        width: 76px;
    }

    .nsh-download-doc {
        grid-template-columns: 1fr;
    }

    .nsh-download-doc__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 1.2rem;
    }

    .nsh-download-doc__actions {
        width: 100%;
    }

    .nsh-download-doc__actions .nsh-btn {
        flex: 1 1 auto;
        text-align: center;
    }

}

.nsh-detail-article__lead--contain {
    display: block;
    width: 100%;
    height: clamp(320px, 46vw, 620px) !important;
    object-fit: contain !important;
    object-position: center top;
    background: linear-gradient(180deg, #f8fafc 0%, #eef5fb 100%);
    padding: 12px 12px 0;
    border-bottom: 1px solid #dbe7f3;
}

@media (max-width: 760px) {
    .nsh-detail-article__lead--contain {
        height: clamp(240px, 64vw, 380px) !important;
        padding: 8px 8px 0;
    }
}

/* Contextual redesign: profil, program, gtk */
.nsh-page-profile .nsh-profilev2-shell {
    background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
}

.nsh-page-profile .nsh-profilev2-shell--stats {
    background: radial-gradient(circle at top right, rgba(167, 243, 208, 0.28), transparent 56%);
}

.nsh-page-profile .nsh-profilev2-shell--vision {
    background: radial-gradient(circle at top left, rgba(196, 181, 253, 0.26), transparent 56%);
}

.nsh-page-profile .nsh-profilev2-shell--highlights {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.nsh-profilev2-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 16px;
}

.nsh-profilev2-school-card,
.nsh-profilev2-principal-card,
.nsh-profilev2-traffic-card,
.nsh-profilev2-kpi-card,
.nsh-profilev2-module-card,
.nsh-profilev2-panel,
.nsh-profilev2-highlight-card {
    border: 1px solid #d6e4f0;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.nsh-profilev2-school-card {
    border-radius: 24px;
    padding: 22px;
    display: grid;
    gap: 14px;
}

.nsh-profilev2-school-card__tagline {
    margin: 0;
    color: #1d4ed8;
    font-size: 0.88rem;
    font-weight: 700;
}

.nsh-profilev2-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.nsh-profilev2-contact-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    color: #334155;
    font-size: 0.86rem;
}

.nsh-profilev2-contact-list li i {
    margin-top: 2px;
    color: #2563eb;
}

.nsh-profilev2-contact-list li a {
    color: inherit;
    text-decoration: none;
}

.nsh-profilev2-contact-list li a:hover {
    color: #1d4ed8;
}

.nsh-profilev2-school-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nsh-profilev2-identity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.nsh-profilev2-identity-item {
    border: 1px solid #dce6f2;
    border-radius: 12px;
    background: #f8fbff;
    padding: 10px 11px;
    display: grid;
    gap: 4px;
}

.nsh-profilev2-identity-item span {
    color: #64748b;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.nsh-profilev2-identity-item strong {
    color: #0f172a;
    font-size: 0.9rem;
}

.nsh-profilev2-principal-card {
    border-radius: 24px;
    overflow: hidden;
    display: grid;
}

.nsh-profilev2-principal-card__photo {
    width: 100%;
    height: clamp(260px, 34vw, 390px);
    object-fit: contain;
    object-position: center top;
    background: linear-gradient(180deg, #f8fafc 0%, #eef5fb 100%);
    padding: 10px 10px 0;
    border-bottom: 1px solid #dbe7f3;
}

.nsh-profilev2-principal-card__body {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.nsh-profilev2-principal-card__body h3 {
    margin: 0;
}

.nsh-profilev2-principal-card__role {
    margin: 0;
    color: #2563eb;
    font-size: 0.86rem;
    font-weight: 700;
}

.nsh-profilev2-principal-card__body p {
    margin: 0;
    color: #475569;
    line-height: 1.72;
}

.nsh-profilev2-metric-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
    gap: 14px;
}

.nsh-profilev2-traffic-card {
    border-radius: 20px;
    padding: 16px;
    display: grid;
    align-content: start;
    gap: 12px;
}

.nsh-profilev2-traffic-card h3 {
    margin: 0;
    font-size: 1.02rem;
}

.nsh-profilev2-traffic-card__grid {
    display: grid;
    gap: 8px;
}

.nsh-profilev2-traffic-card__item {
    border: 1px solid #dbe7f3;
    border-radius: 12px;
    background: #f8fbff;
    padding: 10px 11px;
    display: grid;
    gap: 3px;
}

.nsh-profilev2-traffic-card__item strong {
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.2;
}

.nsh-profilev2-traffic-card__item span {
    color: #475569;
    font-size: 0.79rem;
}

.nsh-profilev2-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.nsh-profilev2-kpi-card {
    border-radius: 16px;
    padding: 14px;
    display: grid;
    gap: 8px;
}

.nsh-profilev2-kpi-card__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #dbeafe;
    color: #1d4ed8;
    display: inline-grid;
    place-items: center;
    font-size: 0.92rem;
}

.nsh-profilev2-kpi-card strong {
    color: #0f172a;
    font-size: 1.15rem;
    line-height: 1.2;
}

.nsh-profilev2-kpi-card span {
    color: #334155;
    font-size: 0.8rem;
    font-weight: 600;
}

.nsh-profilev2-kpi-card--indigo .nsh-profilev2-kpi-card__icon {
    background: #e0e7ff;
    color: #4338ca;
}

.nsh-profilev2-kpi-card--amber .nsh-profilev2-kpi-card__icon {
    background: #fef3c7;
    color: #b45309;
}

.nsh-profilev2-kpi-card--emerald .nsh-profilev2-kpi-card__icon {
    background: #dcfce7;
    color: #15803d;
}

.nsh-profilev2-kpi-card--rose .nsh-profilev2-kpi-card__icon {
    background: #ffe4e6;
    color: #be123c;
}

.nsh-profilev2-module-strip {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.nsh-profilev2-module-card {
    border-radius: 14px;
    padding: 12px;
    text-decoration: none;
    color: #0f172a;
    display: grid;
    gap: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nsh-profilev2-module-card:hover {
    transform: translateY(-2px);
    border-color: #c7d8ea;
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.09);
}

.nsh-profilev2-module-card__icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #eff6ff;
    color: #1d4ed8;
    display: inline-grid;
    place-items: center;
    font-size: 0.86rem;
}

.nsh-profilev2-module-card strong {
    font-size: 1.02rem;
    line-height: 1.2;
}

.nsh-profilev2-module-card span {
    color: #475569;
    font-size: 0.76rem;
    font-weight: 700;
}

.nsh-profilev2-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nsh-profilev2-panel {
    border-radius: 20px;
    padding: 16px;
    display: grid;
    gap: 10px;
}

.nsh-profilev2-panel h3 {
    margin: 0;
    font-size: 1.08rem;
}

.nsh-profilev2-panel p {
    margin: 0;
    color: #475569;
    line-height: 1.72;
}

.nsh-profilev2-bullet-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 7px;
    color: #334155;
}

.nsh-profilev2-bullet-list li {
    line-height: 1.66;
}

.nsh-profilev2-map-embed {
    border-radius: 14px;
    border: 1px solid #dce6f2;
    overflow: hidden;
    height: 200px;
}

.nsh-profilev2-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.nsh-profilev2-map-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nsh-profilev2-map-meta a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    border: 1px solid #d9e6f3;
    background: #f8fbff;
    color: #1d4ed8;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 10px;
}

.nsh-profilev2-map-meta a:hover {
    background: #eef6ff;
    border-color: #bfd8fb;
}

.nsh-profilev2-social {
    margin-top: 4px;
    display: grid;
    gap: 8px;
}

.nsh-profilev2-social h4 {
    margin: 0;
    color: #1e293b;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nsh-profilev2-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.nsh-profilev2-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 11px;
    border: 1px solid #dbe7f3;
    background: #f8fbff;
    color: #334155;
    text-decoration: none;
    font-size: 0.79rem;
    font-weight: 700;
    padding: 8px 10px;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nsh-profilev2-social-link i {
    color: #1d4ed8;
    font-size: 0.88rem;
}

.nsh-profilev2-social-link:hover {
    color: #1d4ed8;
    border-color: #bfdbfe;
    background: #eff6ff;
    transform: translateY(-1px);
}

.nsh-profilev2-social-empty {
    margin: 0;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.6;
}

.nsh-profilev2-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.nsh-profilev2-highlight-card {
    border-radius: 18px;
    padding: 14px;
    display: grid;
    gap: 10px;
}

.nsh-profilev2-highlight-card h3 {
    margin: 0;
    font-size: 1rem;
}

.nsh-profilev2-link-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.nsh-profilev2-link-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 11px;
    border: 1px solid #dbe7f3;
    background: #f8fbff;
    color: #334155;
    text-decoration: none;
    padding: 8px 10px;
    font-size: 0.82rem;
    font-weight: 600;
}

.nsh-profilev2-link-list li a:hover {
    color: #1d4ed8;
    border-color: #bfd8fb;
    background: #eef6ff;
}

.nsh-profilev2-link-list li a i {
    color: #94a3b8;
    font-size: 0.73rem;
}

.nsh-profilev2-link-list li.is-empty {
    border: 1px dashed #d9e4f1;
    border-radius: 11px;
    background: #f8fafc;
    color: #64748b;
    padding: 9px 10px;
    font-size: 0.82rem;
}

/* Custom redesign: halaman visi misi dan tujuan */
.nsh-page-page .nsh-main {
    background:
        radial-gradient(circle at 12% 0%, rgba(14, 165, 233, 0.13), transparent 42%),
        radial-gradient(circle at 92% 6%, rgba(245, 158, 11, 0.14), transparent 36%),
        linear-gradient(180deg, #f4f9ff 0%, #ffffff 70%);
}

.nsh-page-page .nsh-vmt-hero {
    padding-bottom: 0;
}

.nsh-page-page .nsh-vmt-hero__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid #d4e4f4;
    border-radius: 30px;
    padding: clamp(22px, 3.2vw, 40px);
    background: linear-gradient(132deg, #0f3f87 0%, #0f766e 100%);
    color: #f8fbff;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22);
    display: grid;
    gap: 14px;
}

.nsh-page-page .nsh-vmt-hero__panel::before {
    content: '';
    position: absolute;
    inset: auto -88px -88px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.nsh-page-page .nsh-vmt-hero__panel .nsh-context-hero__eyebrow {
    color: rgba(248, 250, 252, 0.92);
    background: rgba(248, 250, 252, 0.14);
    border: 1px solid rgba(248, 250, 252, 0.24);
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
}

.nsh-page-page .nsh-vmt-hero__panel h2 {
    margin: 0;
    color: #ffffff;
    max-width: 24ch;
}

.nsh-page-page .nsh-vmt-hero__panel .nsh-copy-lg {
    margin: 0;
    max-width: 62ch;
    color: rgba(248, 250, 252, 0.95);
}

.nsh-page-page .nsh-vmt-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nsh-page-page .nsh-vmt-pillars span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(248, 250, 252, 0.26);
    background: rgba(248, 250, 252, 0.11);
    color: #f8fafc;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 8px 13px;
}

.nsh-page-page .nsh-vmt-pillars span i {
    color: #fde68a;
    font-size: 0.82rem;
}

.nsh-page-page .nsh-vmt-content-shell {
    padding-top: 14px;
}

.nsh-page-page .nsh-single-column--vmt {
    max-width: min(940px, 100%);
}

.nsh-page-page .nsh-richtext--vmt {
    display: grid;
    gap: 16px;
}

.nsh-page-page .nsh-richtext--vmt hr {
    margin: 2px 0 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.72), rgba(148, 163, 184, 0));
}

.nsh-page-page .nsh-richtext--vmt > h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.52rem, 3vw, 2.15rem);
    color: #0f2f55;
    letter-spacing: 0.01em;
}

.nsh-page-page .nsh-richtext--vmt > p {
    margin: 0;
    border: 1px solid #d7e6f5;
    border-radius: 18px;
    background: #ffffff;
    color: #334155;
    line-height: 1.8;
    padding: 16px 18px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.nsh-page-page .nsh-richtext--vmt > ol,
.nsh-page-page .nsh-richtext--vmt > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.nsh-page-page .nsh-richtext--vmt > ol {
    counter-reset: vmt-step;
}

.nsh-page-page .nsh-richtext--vmt > ol > li,
.nsh-page-page .nsh-richtext--vmt > ul > li {
    border: 1px solid #d7e6f5;
    border-radius: 17px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    padding: 13px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
}

.nsh-page-page .nsh-richtext--vmt > ol > li::before,
.nsh-page-page .nsh-richtext--vmt > ul > li::before {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.nsh-page-page .nsh-richtext--vmt > ol > li::before {
    counter-increment: vmt-step;
    content: counter(vmt-step, decimal-leading-zero);
    color: #0c4a6e;
    background: #dbeafe;
}

.nsh-page-page .nsh-richtext--vmt > ul > li::before {
    content: '\2022';
    color: #0f766e;
    background: #d1fae5;
    font-size: 1.22rem;
}

.nsh-page-page .nsh-richtext--vmt li p {
    margin: 0;
    color: #334155;
    line-height: 1.76;
}

.nsh-page-page .nsh-richtext--vmt li strong {
    color: #0f172a;
}

.nsh-page-programs .nsh-context-shell--program {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.nsh-program-rail {
    display: grid;
    gap: 10px;
}

.nsh-program-row {
    display: grid;
    grid-template-columns: 56px 56px minmax(0, 1fr) max-content;
    gap: 14px;
    align-items: center;
    border-radius: 18px;
    border: 1px solid #d8e3f1;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
    padding: 12px 14px;
}

.nsh-program-row__index {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid #dbe7f5;
    background: #f8fbff;
    color: #334155;
    display: inline-grid;
    place-items: center;
    font-size: 0.95rem;
    font-weight: 800;
}

.nsh-program-row__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #dbeafe;
    color: #1d4ed8;
    display: inline-grid;
    place-items: center;
    font-size: 1.28rem;
}

.nsh-program-row__body {
    display: grid;
    gap: 6px;
}

.nsh-program-row__body h3 {
    margin: 0;
    font-size: 1.05rem;
}

.nsh-program-row__body p {
    margin: 0;
    color: #475569;
    line-height: 1.68;
}

.nsh-program-row__action {
    justify-self: end;
}

.nsh-program-row--empty {
    border-style: dashed;
    box-shadow: none;
}

.nsh-page-staff .nsh-context-shell--gtk {
    background: radial-gradient(circle at top left, rgba(187, 247, 208, 0.45), transparent 55%);
}

.nsh-gtk-directory {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.nsh-gtk-directory-card {
    border-radius: 20px;
    border: 1px solid #d6e4f0;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.nsh-gtk-directory-card__photo {
    display: block;
    width: 100%;
    height: clamp(220px, 28vw, 320px);
    object-fit: contain;
    object-position: center top;
    background: linear-gradient(180deg, #f8fafc 0%, #eef5fb 100%);
    padding: 10px 10px 0;
    border-bottom: 1px solid #dbe7f3;
}

.nsh-gtk-directory-card__body {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.nsh-gtk-directory-card__body h3 {
    margin: 0;
    font-size: 1.03rem;
}

.nsh-gtk-directory-card__role {
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 700;
}

.nsh-gtk-directory-card__body p {
    margin: 0;
    color: #475569;
    line-height: 1.66;
}

.nsh-gtk-directory-card__meta {
    display: grid;
    gap: 6px;
}

.nsh-gtk-directory-card__meta a {
    color: #334155;
    font-size: 0.79rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nsh-gtk-directory-card__meta a:hover {
    color: #1d4ed8;
}

.nsh-gtk-directory-card--empty {
    border-style: dashed;
    box-shadow: none;
}

.nsh-page-partners .nsh-context-shell--partners {
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.nsh-partner-directory {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.nsh-partner-directory-card {
    border-radius: 20px;
    border: 1px solid #d6e4f0;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    display: grid;
}

.nsh-partner-directory-card__logo {
    min-height: clamp(120px, 16vw, 180px);
    border-bottom: 1px solid #dbe7f3;
    background: linear-gradient(180deg, #f8fafc 0%, #eef5fb 100%);
    display: grid;
    place-items: center;
    padding: 12px;
}

.nsh-partner-directory-card__logo img {
    width: 100%;
    height: 100%;
    max-height: 148px;
    object-fit: contain;
    object-position: center;
}

.nsh-partner-directory-card__monogram {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #1d4ed8;
    color: #ffffff;
    display: inline-grid;
    place-items: center;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.nsh-partner-directory-card__body {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.nsh-partner-directory-card__body h3 {
    margin: 0;
    font-size: 1.04rem;
}

.nsh-partner-directory-card__body p {
    margin: 0;
    color: #475569;
    line-height: 1.66;
}

.nsh-partner-directory-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.nsh-partner-directory-card__actions .nsh-btn {
    padding: 7px 11px;
    border-radius: 10px;
    font-size: 0.78rem;
}

.nsh-partner-directory-card--empty {
    border-style: dashed;
    box-shadow: none;
}

.nsh-page-articles .nsh-context-shell--articles {
    background: #f8fafc;
    position: relative;
    font-family: 'Plus Jakarta Sans', 'Inter', 'Segoe UI', sans-serif;
}

.nsh-page-news .nsh-context-shell--news {
    background: #f8fafc;
    position: relative;
    font-family: 'Plus Jakarta Sans', 'Inter', 'Segoe UI', sans-serif;
}

.nsh-page-news .nsh-article-library-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nsh-page-news .nsh-article-library-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
}

.nsh-page-news .nsh-article-library-card__body {
    gap: 10px;
}

.nsh-page-news .nsh-article-library-card__foot {
    margin-top: 2px;
}

@media (max-width: 1120px) {
    .nsh-page-news .nsh-article-library-list {
        grid-template-columns: 1fr;
    }
}

.nsh-article-library-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.nsh-article-library-head__intro {
    max-width: 680px;
}

.nsh-article-library-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #4f46e5;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nsh-article-library-head__intro h2 {
    margin: 0;
    color: #0f172a;
    line-height: 1.1;
}

.nsh-article-library-head__intro h2 span {
    color: #4f46e5;
}

.nsh-article-library-head__intro p {
    margin: 0;
    color: #64748b;
    line-height: 1.75;
    max-width: 620px;
}

.nsh-article-library-head__search {
    position: relative;
    width: min(100%, 390px);
}

.nsh-article-library-head__search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nsh-article-library-head__search input {
    width: 100%;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #ffffff;
    color: #0f172a;
    padding: 14px 14px 14px 42px;
    font-size: 0.9rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nsh-article-library-head__search input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.nsh-article-library-head__search:focus-within i {
    color: #6366f1;
}

.nsh-article-library-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.33fr) minmax(0, 0.67fr);
    gap: 28px;
}

.nsh-article-library-sidebar {
    display: grid;
    align-content: start;
    gap: 16px;
    position: sticky;
    top: 90px;
    height: fit-content;
}

.nsh-article-library-sidebar__panel {
    border-radius: 24px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.nsh-article-library-sidebar__panel h3 {
    margin: 0 0 14px;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nsh-article-library-categories {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.nsh-article-library-categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid transparent;
    color: #475569;
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nsh-article-library-categories li a span:last-child {
    font-size: 0.72rem;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 7px;
    font-weight: 700;
}

.nsh-article-library-categories li:not(.is-active) a:hover {
    background: #ffffff;
    border-color: #dbe3ee;
    color: #4f46e5;
}

.nsh-article-library-categories li:not(.is-active) a:hover span:last-child {
    background: #eef2ff;
    color: #4f46e5;
}

.nsh-article-library-categories li.is-active a {
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.32);
}

.nsh-article-library-categories li.is-active a span:last-child {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.nsh-article-library-popular {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.nsh-article-library-popular__link {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid transparent;
    text-decoration: none;
    color: #334155;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nsh-article-library-popular__link:hover,
.nsh-article-library-popular__link:focus-visible {
    background: #ffffff;
    border-color: #dbe3ee;
    transform: translateY(-1px);
}

.nsh-article-library-popular__thumb {
    width: 64px;
    height: 36px;
    border-radius: 9px;
    overflow: hidden;
    background: #e2e8f0;
    display: inline-block;
}

.nsh-article-library-popular__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nsh-article-library-popular__title {
    min-width: 0;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.34;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nsh-article-library-popular__views {
    font-size: 0.72rem;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 7px;
    font-weight: 700;
    line-height: 1;
}

.nsh-article-library-authors {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.nsh-article-library-authors li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 8px 10px;
}

.nsh-article-library-authors__identity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
}

.nsh-article-library-authors__identity > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nsh-article-library-authors__avatar {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid #c7d2fe;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 0.67rem;
    font-weight: 800;
    flex-shrink: 0;
}

.nsh-article-library-authors__count {
    border-radius: 8px;
    background: #e2e8f0;
    color: #334155;
    padding: 3px 7px;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.nsh-article-library-content {
    display: grid;
    gap: 18px;
}

.nsh-article-library-list {
    display: grid;
    gap: 12px;
}

.nsh-article-library-card {
    border-radius: 30px;
    border: 1px solid #e5eaf1;
    background: #ffffff;
    box-shadow: 0 12px 20px -5px rgba(15, 23, 42, 0.06);
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 18px;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nsh-article-library-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px -8px rgba(15, 23, 42, 0.12);
}

.nsh-article-library-card__media {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e2e8f0;
}

.nsh-article-library-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nsh-article-library-card:hover .nsh-article-library-card__media img {
    transform: scale(1.08);
}

.nsh-article-library-card__body {
    display: grid;
    gap: 12px;
    padding-right: 6px;
}

.nsh-article-library-card__meta {
    display: flex;
    align-items: center;
    gap: 8px 12px;
    flex-wrap: wrap;
}

.nsh-article-library-card__meta-line {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.nsh-article-library-card__topic {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 12px;
    border: 1px solid #d9eefc;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nsh-article-library-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8f9aad;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
}

.nsh-article-library-card__date i,
.nsh-article-library-card__read-time i,
.nsh-article-library-card__views i {
    color: #8b5cf6;
}

.nsh-article-library-card__divider {
    color: #cbd5e1;
    font-size: 0.7rem;
    line-height: 1;
}

.nsh-article-library-card__read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7c3aed;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.nsh-article-library-card__body h3 {
    margin: 0;
    font-size: 1.32rem;
    line-height: 1.28;
}

.nsh-article-library-card__body h3 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nsh-article-library-card:hover .nsh-article-library-card__body h3 a {
    color: #4f46e5;
}

.nsh-article-library-card__body p {
    margin: 0;
    color: #64748b;
    line-height: 1.72;
}

.nsh-article-library-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.nsh-article-library-card__author {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
}

.nsh-article-library-card__avatar {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 0.74rem;
    border: 2px solid #dbeafe;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 800;
}

.nsh-article-library-card__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nsh-article-library-card__views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.nsh-article-library-card__arrow {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nsh-article-library-card:hover .nsh-article-library-card__arrow {
    color: #4f46e5;
    border-color: #c7d2fe;
    background: #eef2ff;
}

.nsh-article-library-card--empty {
    grid-template-columns: 1fr;
}

.nsh-article-library-card--empty .nsh-article-library-card__body h3 {
    font-size: 1.2rem;
}

.nsh-article-library-pagination {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.nsh-article-library-pagination p {
    margin: 0;
    color: #64748b;
    font-size: 0.86rem;
}

.nsh-article-library-pagination p strong {
    color: #0f172a;
}

.nsh-article-library-pagination__controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nsh-article-library-pagination__btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #dbe3ee;
    background: #ffffff;
    color: #64748b;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nsh-article-library-pagination__btn:hover {
    color: #4f46e5;
    border-color: #c7d2fe;
    background: #eef2ff;
}

.nsh-article-library-pagination__btn.is-active {
    color: #ffffff;
    background: #4f46e5;
    border-color: #4f46e5;
    box-shadow: 0 12px 20px rgba(79, 70, 229, 0.28);
}

.nsh-article-library-pagination__btn.is-disabled {
    color: #cbd5e1;
    border-color: #e2e8f0;
    pointer-events: none;
}

.nsh-article-library-pagination__ellipsis {
    color: #cbd5e1;
    font-size: 0.92rem;
    padding: 0 2px;
}

@media (max-width: 1120px) {
    .nsh-profilev2-hero,
    .nsh-profilev2-metric-layout,
    .nsh-program-row {
        grid-template-columns: 1fr;
    }

    .nsh-article-library-head {
        align-items: stretch;
        flex-direction: column;
    }

    .nsh-article-library-head__search {
        width: 100%;
        max-width: 460px;
    }

    .nsh-article-library-layout {
        grid-template-columns: 1fr;
    }

    .nsh-article-library-sidebar {
        position: static;
        top: auto;
    }

    .nsh-article-library-card {
        grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    }

    .nsh-profilev2-kpi-grid,
    .nsh-profilev2-vision-grid,
    .nsh-profilev2-highlight-grid,
    .nsh-gtk-directory,
    .nsh-partner-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nsh-profilev2-module-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nsh-program-row__index,
    .nsh-program-row__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .nsh-program-row__action {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .nsh-page-page .nsh-vmt-hero__panel {
        border-radius: 22px;
        padding: 18px;
        gap: 12px;
    }

    .nsh-page-page .nsh-vmt-pillars {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nsh-page-page .nsh-vmt-pillars span {
        justify-content: flex-start;
    }

    .nsh-page-page .nsh-richtext--vmt > p {
        border-radius: 15px;
        padding: 14px;
    }

    .nsh-page-page .nsh-richtext--vmt > ol > li,
    .nsh-page-page .nsh-richtext--vmt > ul > li {
        grid-template-columns: 32px minmax(0, 1fr);
        border-radius: 14px;
        padding: 12px;
        gap: 10px;
    }

    .nsh-page-page .nsh-richtext--vmt > ol > li::before,
    .nsh-page-page .nsh-richtext--vmt > ul > li::before {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .nsh-profilev2-kpi-grid,
    .nsh-profilev2-vision-grid,
    .nsh-profilev2-highlight-grid,
    .nsh-profilev2-identity-grid,
    .nsh-profilev2-social-grid,
    .nsh-gtk-directory,
    .nsh-partner-directory {
        grid-template-columns: 1fr;
    }

    .nsh-profilev2-module-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nsh-article-library-head {
        margin-bottom: 14px;
    }

    .nsh-article-library-head__intro h2 {
        font-size: clamp(1.68rem, 8vw, 2.2rem);
    }

    .nsh-article-library-layout {
        gap: 16px;
    }

    .nsh-article-library-sidebar__panel {
        padding: 14px;
        border-radius: 20px;
    }

    .nsh-article-library-popular__link {
        grid-template-columns: 56px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 7px;
    }

    .nsh-article-library-popular__thumb {
        width: 56px;
        height: 31.5px;
    }

    .nsh-article-library-popular__title {
        font-size: 0.78rem;
    }

    .nsh-article-library-card {
        grid-template-columns: 1fr;
        gap: 12px;
        border-radius: 22px;
        padding: 12px;
    }

    .nsh-article-library-card__media {
        border-radius: 16px;
    }

    .nsh-profilev2-school-card,
    .nsh-profilev2-principal-card__body,
    .nsh-profilev2-traffic-card,
    .nsh-profilev2-kpi-card,
    .nsh-profilev2-module-card,
    .nsh-profilev2-panel,
    .nsh-profilev2-highlight-card,
    .nsh-program-row,
    .nsh-gtk-directory-card__body,
    .nsh-partner-directory-card__body,
    .nsh-article-library-card__body {
        padding: 14px;
    }

    .nsh-article-library-card__body h3 {
        font-size: 1.14rem;
    }

    .nsh-article-library-pagination {
        padding-top: 12px;
    }

    .nsh-profilev2-principal-card__photo {
        height: clamp(220px, 58vw, 320px);
        padding: 8px 8px 0;
    }

    .nsh-gtk-directory-card__photo {
        height: clamp(200px, 56vw, 280px);
        padding: 8px 8px 0;
    }

    .nsh-partner-directory-card__logo {
        min-height: 118px;
        padding: 10px;
    }

    .nsh-partner-directory-card__logo img {
        max-height: 112px;
    }
}

.nsh-principal-editorial {
    position: relative;
}

.nsh-principal-editorial::before {
    content: "";
    position: absolute;
    inset: clamp(8px, 1.5vw, 16px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 8%, rgba(59, 130, 246, 0.12), transparent 42%),
        radial-gradient(circle at 92% 84%, rgba(234, 179, 8, 0.14), transparent 40%);
    pointer-events: none;
    z-index: -1;
    animation: nshPrincipalEditorialSweep 12s ease-in-out infinite alternate;
}

.nsh-principal-editorial__breadcrumb {
    margin-bottom: 14px;
}

.nsh-principal-editorial__breadcrumb ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
}

.nsh-principal-editorial__breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nsh-principal-editorial__breadcrumb li + li::before {
    content: "/";
    color: #94a3b8;
    font-weight: 600;
}

.nsh-principal-editorial__breadcrumb a {
    color: #1e3a5f;
    text-decoration: none;
}

.nsh-principal-editorial__breadcrumb a:hover {
    text-decoration: underline;
}

.nsh-principal-editorial__shell {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background:
        linear-gradient(132deg, #ffffff 0%, #f8fafc 54%, #eef2f7 100%),
        repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.02) 0px, rgba(15, 23, 42, 0.02) 1px, transparent 1px, transparent 8px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.11);
    overflow: hidden;
}

.nsh-principal-editorial__hero {
    display: grid;
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
    gap: clamp(12px, 2vw, 24px);
    align-items: center;
    padding: clamp(12px, 2vw, 22px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(110deg, rgba(30, 58, 95, 0.06), rgba(255, 255, 255, 0));
}

.nsh-principal-editorial__media {
    margin: 0;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 95, 0.12);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
    background: #0f172a;
}

.nsh-principal-editorial__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: clamp(220px, 23vw, 300px);
    object-fit: cover;
    object-position: center top;
    animation: nshPrincipalEditorialFloat 8s ease-in-out infinite;
}

.nsh-principal-editorial__headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.nsh-principal-editorial__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #1e3a5f;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.nsh-principal-editorial__kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1e3a5f, #3b82f6);
}

.nsh-principal-editorial__headline h1 {
    margin: 8px 0 0;
    font-family: var(--nsh-font-heading);
    color: #0f172a;
    font-size: clamp(1.7rem, 3.2vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.nsh-principal-editorial__role {
    margin: 4px 0 0;
    color: #1e3a5f;
    font-size: clamp(0.94rem, 1.2vw, 1.08rem);
    font-weight: 700;
}

.nsh-principal-editorial__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
    gap: clamp(16px, 2.3vw, 24px);
    padding: clamp(14px, 2vw, 22px);
}

.nsh-principal-editorial__article {
    border-radius: 20px;
    border: 1px solid #e3e9f1;
    background: #ffffff;
    padding: clamp(16px, 2.2vw, 28px);
}

.nsh-principal-editorial__article .nsh-richtext > *:first-child {
    margin-top: 0;
}

.nsh-principal-editorial__aside {
    display: grid;
    gap: 14px;
}

.nsh-principal-editorial__panel {
    border-radius: 18px;
    border: 1px solid #e3e9f1;
    background: #ffffff;
    padding: 16px;
}

.nsh-principal-editorial__panel h2 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.nsh-principal-editorial__facts {
    margin: 0;
    display: grid;
    gap: 11px;
}

.nsh-principal-editorial__facts div {
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e2e8f0;
}

.nsh-principal-editorial__facts div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.nsh-principal-editorial__facts dt {
    margin: 0;
    color: #64748b;
    font-size: 0.71rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.nsh-principal-editorial__facts dd {
    margin: 4px 0 0;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.nsh-principal-editorial__related {
    display: grid;
    gap: 9px;
}

.nsh-principal-editorial__related-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fbfdff;
    padding: 8px;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nsh-principal-editorial__related-item:hover {
    border-color: #bfdbfe;
    box-shadow: 0 8px 18px rgba(30, 58, 95, 0.14);
    transform: translateY(-1px);
}

.nsh-principal-editorial__related-item img {
    width: 64px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
}

.nsh-principal-editorial__related-item strong {
    display: block;
    color: #0f172a;
    font-size: 0.84rem;
    line-height: 1.35;
}

.nsh-principal-editorial__related-item span {
    display: block;
    margin-top: 2px;
    color: #475569;
    font-size: 0.74rem;
    line-height: 1.35;
}

@keyframes nshPrincipalEditorialSweep {
    0% { transform: scale(1); opacity: 0.82; }
    100% { transform: scale(1.018); opacity: 1; }
}

@keyframes nshPrincipalEditorialFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (max-width: 1080px) {
    .nsh-principal-editorial__hero {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .nsh-principal-editorial__media img {
        min-height: 240px;
        max-height: 340px;
    }

    .nsh-principal-editorial__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nsh-principal-editorial::before {
        inset: 6px;
        border-radius: 20px;
    }

    .nsh-principal-editorial__breadcrumb {
        margin-bottom: 10px;
    }

    .nsh-principal-editorial__shell,
    .nsh-principal-editorial__hero,
    .nsh-principal-editorial__article,
    .nsh-principal-editorial__panel {
        border-radius: 16px;
    }

    .nsh-principal-editorial__hero,
    .nsh-principal-editorial__layout {
        padding: 12px;
    }

    .nsh-principal-editorial__related-item {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 8px;
        padding: 7px;
    }

    .nsh-principal-editorial__related-item img {
        width: 56px;
        height: 64px;
    }
}

/* SLTP: blue-gradient + colorful school atmosphere refresh */
.nsh-main {
    position: relative;
}

.nsh-main::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(transparent 95%, rgba(59, 130, 246, 0.08) 96%) 0 0 / 100% 28px,
        linear-gradient(90deg, transparent 95%, rgba(14, 165, 233, 0.06) 96%) 0 0 / 28px 100%;
    opacity: 0.35;
    z-index: 0;
}

.nsh-main > * {
    position: relative;
    z-index: 1;
}

.nsh-section {
    position: relative;
}

.nsh-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29, 78, 216, 0.25), rgba(245, 158, 11, 0.22), transparent);
}

.nsh-section__heading h2,
.nsh-section__heading .nsh-display-lg,
.nsh-section__heading .nsh-display-md {
    background: linear-gradient(122deg, #1d4ed8 0%, #0284c7 58%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nsh-btn--primary {
    background: linear-gradient(128deg, #1d4ed8 0%, #2563eb 44%, #0284c7 72%, #f59e0b 100%);
    box-shadow: 0 12px 24px rgba(29, 78, 216, 0.28);
}

.nsh-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(29, 78, 216, 0.34);
}

.nsh-hero__poster {
    border: 1px solid rgba(186, 230, 253, 0.62);
    box-shadow: 0 22px 44px rgba(15, 40, 95, 0.22);
}

.nsh-hero__poster::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 14%, rgba(56, 189, 248, 0.28), transparent 34%),
        radial-gradient(circle at 88% 20%, rgba(245, 158, 11, 0.2), transparent 30%),
        linear-gradient(180deg, rgba(2, 17, 55, 0.06) 0%, rgba(2, 17, 55, 0.34) 100%);
}

.nsh-hero__floating {
    border: 1px solid rgba(148, 197, 255, 0.5);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.93), rgba(240, 249, 255, 0.8)),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.15), transparent 52%);
    box-shadow: 0 14px 28px rgba(16, 42, 107, 0.18);
}

.hudnews-marquee {
    border: 1px solid rgba(29, 78, 216, 0.22);
    background:
        linear-gradient(120deg, rgba(239, 246, 255, 0.9), rgba(240, 249, 255, 0.78)),
        radial-gradient(circle at 90% 0%, rgba(245, 158, 11, 0.16), transparent 35%);
}

.hudnews-marquee__track {
    color: #1e3a8a;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hudnews-marquee__item::after {
    color: rgba(30, 58, 138, 0.46);
}

.hudnews-marquee__badge {
    background: linear-gradient(130deg, #1d4ed8 0%, #0284c7 52%, #16a34a 100%);
    color: #fff;
    letter-spacing: 0.08em;
}

#statistik .nsh-metric-card {
    border-color: rgba(29, 78, 216, 0.18);
    box-shadow: 0 14px 26px rgba(16, 42, 107, 0.1);
}

#statistik .nsh-metric-card::before {
    background: linear-gradient(90deg, rgba(29, 78, 216, 0.15), rgba(2, 132, 199, 0.08), rgba(245, 158, 11, 0.12));
}

#program-unggulan .hudnews-program-card,
#fasilitas .hudnews-facility-card,
#ekskul .hudnews-ekskul-card {
    border-color: rgba(29, 78, 216, 0.16);
}

#program-unggulan .hudnews-program-card:hover,
#fasilitas .hudnews-facility-card:hover,
#ekskul .hudnews-ekskul-card:hover {
    box-shadow: 0 16px 30px rgba(16, 42, 107, 0.16);
}

#program-unggulan .hudnews-program-card__media {
    border-bottom: 1px solid rgba(147, 197, 253, 0.45);
    background:
        linear-gradient(160deg, rgba(191, 219, 254, 0.36), rgba(186, 230, 253, 0.2));
}

.nsh-footer {
    position: relative;
    overflow: hidden;
}

.nsh-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 14%, rgba(56, 189, 248, 0.24), transparent 30%),
        radial-gradient(circle at 88% 86%, rgba(245, 158, 11, 0.2), transparent 32%);
    opacity: 0.85;
}

@media (max-width: 760px) {
    .nsh-main::before {
        opacity: 0.22;
        background:
            linear-gradient(transparent 95%, rgba(59, 130, 246, 0.06) 96%) 0 0 / 100% 24px,
            linear-gradient(90deg, transparent 95%, rgba(14, 165, 233, 0.05) 96%) 0 0 / 24px 100%;
    }
}

/* SLTP stage 2: section personalities and learning-lane accents */
.hudnews-home-flow {
    position: relative;
}

.hudnews-home-flow::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: clamp(8px, 1.4vw, 18px);
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(29, 78, 216, 0.44) 0%, rgba(2, 132, 199, 0.34) 42%, rgba(245, 158, 11, 0.32) 74%, rgba(22, 163, 74, 0.28) 100%);
    opacity: 0.45;
    pointer-events: none;
}

#program-unggulan .nsh-section__heading,
#fasilitas .nsh-section__heading,
#ekskul .nsh-section__heading,
#prestasi .nsh-section__heading,
#berita .nsh-section__heading,
#artikel .nsh-section__heading {
    position: relative;
}

#program-unggulan .nsh-section__heading::before,
#fasilitas .nsh-section__heading::before,
#ekskul .nsh-section__heading::before,
#prestasi .nsh-section__heading::before,
#berita .nsh-section__heading::before,
#artikel .nsh-section__heading::before {
    position: absolute;
    right: 0;
    top: -8px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(29, 78, 216, 0.22);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1e3a8a;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(224, 242, 254, 0.92));
}

#program-unggulan .nsh-section__heading::before { content: "Jalur Belajar"; }
#fasilitas .nsh-section__heading::before { content: "Ruang Kelas"; }
#ekskul .nsh-section__heading::before { content: "Minat Bakat"; }
#prestasi .nsh-section__heading::before { content: "Capaian Siswa"; }
#berita .nsh-section__heading::before { content: "Info Sekolah"; }
#artikel .nsh-section__heading::before { content: "Literasi"; }

#program-unggulan .hudnews-program-card,
#fasilitas .hudnews-facility-card,
#ekskul .hudnews-ekskul-card,
#berita .hudnews-news-card,
#artikel .hudnews-news-card {
    position: relative;
    overflow: hidden;
}

#program-unggulan .hudnews-program-card::after,
#fasilitas .hudnews-facility-card::after,
#ekskul .hudnews-ekskul-card::after,
#berita .hudnews-news-card::after,
#artikel .hudnews-news-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 100% 0%, rgba(191, 219, 254, 0.26), transparent 34%);
}

#program-unggulan .hudnews-program-card:nth-child(4n + 1) { border-top: 4px solid #2563eb; }
#program-unggulan .hudnews-program-card:nth-child(4n + 2) { border-top: 4px solid #0284c7; }
#program-unggulan .hudnews-program-card:nth-child(4n + 3) { border-top: 4px solid #f59e0b; }
#program-unggulan .hudnews-program-card:nth-child(4n + 4) { border-top: 4px solid #16a34a; }

#fasilitas .hudnews-facility-card:nth-child(4n + 1) .hudnews-facility-card__icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
#fasilitas .hudnews-facility-card:nth-child(4n + 2) .hudnews-facility-card__icon { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }
#fasilitas .hudnews-facility-card:nth-child(4n + 3) .hudnews-facility-card__icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
#fasilitas .hudnews-facility-card:nth-child(4n + 4) .hudnews-facility-card__icon { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

#ekskul .hudnews-ekskul-card:nth-child(6n + 1) { background-image: linear-gradient(145deg, rgba(219, 234, 254, 0.65), rgba(255, 255, 255, 0.95)); }
#ekskul .hudnews-ekskul-card:nth-child(6n + 2) { background-image: linear-gradient(145deg, rgba(224, 242, 254, 0.65), rgba(255, 255, 255, 0.95)); }
#ekskul .hudnews-ekskul-card:nth-child(6n + 3) { background-image: linear-gradient(145deg, rgba(254, 243, 199, 0.62), rgba(255, 255, 255, 0.95)); }
#ekskul .hudnews-ekskul-card:nth-child(6n + 4) { background-image: linear-gradient(145deg, rgba(220, 252, 231, 0.62), rgba(255, 255, 255, 0.95)); }
#ekskul .hudnews-ekskul-card:nth-child(6n + 5) { background-image: linear-gradient(145deg, rgba(224, 231, 255, 0.62), rgba(255, 255, 255, 0.95)); }
#ekskul .hudnews-ekskul-card:nth-child(6n + 6) { background-image: linear-gradient(145deg, rgba(254, 226, 226, 0.56), rgba(255, 255, 255, 0.95)); }

#prestasi .nsh-achievement-card {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(147, 197, 253, 0.36);
}

#prestasi .nsh-achievement-card:nth-child(3n + 1) { border-left: 4px solid #2563eb; }
#prestasi .nsh-achievement-card:nth-child(3n + 2) { border-left: 4px solid #0284c7; }
#prestasi .nsh-achievement-card:nth-child(3n + 3) { border-left: 4px solid #f59e0b; }

#agenda .hudnews-agenda-item {
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, #2563eb, #0284c7, #16a34a) 1;
    background: linear-gradient(145deg, rgba(239, 246, 255, 0.72), rgba(255, 255, 255, 0.96));
}

#mitra .hudnews-partner-card {
    border-color: rgba(147, 197, 253, 0.44);
    box-shadow: 0 10px 18px rgba(15, 40, 95, 0.1);
}

#mitra .hudnews-partner-card__name {
    color: #1f3a68;
}

@media (max-width: 980px) {
    .hudnews-home-flow::before {
        left: 6px;
        opacity: 0.35;
    }
}

@media (max-width: 760px) {
    #program-unggulan .nsh-section__heading::before,
    #fasilitas .nsh-section__heading::before,
    #ekskul .nsh-section__heading::before,
    #prestasi .nsh-section__heading::before,
    #berita .nsh-section__heading::before,
    #artikel .nsh-section__heading::before {
        content: none;
        display: none;
    }

    .hudnews-home-flow::before {
        display: none;
    }
}

/* SLTP stage 3: youthful typography and readability rhythm */
.nsh-body {
    font-family: var(--nsh-font-body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.002em;
}

.nsh-display-lg,
.nsh-display-md,
.nsh-display-sm,
.nsh-hero h1,
.nsh-page-hero h1 {
    font-family: var(--nsh-font-heading);
    letter-spacing: -0.018em;
    line-height: 1.08;
}

.nsh-copy-lg,
.nsh-copy-md,
.nsh-section p,
.hudnews-news-card p,
.hudnews-facility-card p,
.hudnews-achievement-card__summary {
    line-height: 1.74;
}

.nsh-section__heading .nsh-eyebrow,
.hudnews-news-card__badge,
.hudnews-gallery-home-card__badge,
.hudnews-marquee__badge {
    font-family: var(--nsh-font-heading);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nsh-btn,
.nsh-link-arrow,
.hudnews-news-heading__more,
.hudnews-gallery-home-block__more {
    font-weight: 700;
    letter-spacing: 0.01em;
}

#berita .hudnews-news-card h3,
#artikel .hudnews-news-card h3,
#program-unggulan .hudnews-program-card h3,
#ekskul .hudnews-ekskul-card h3,
#fasilitas .hudnews-facility-card h3 {
    line-height: 1.32;
}

@media (max-width: 760px) {
    .nsh-display-lg,
    .nsh-display-md,
    .nsh-display-sm,
    .nsh-hero h1,
    .nsh-page-hero h1 {
        letter-spacing: -0.012em;
        line-height: 1.14;
    }

    .nsh-copy-lg,
    .nsh-copy-md,
    .nsh-section p,
    .hudnews-news-card p,
    .hudnews-facility-card p,
    .hudnews-achievement-card__summary {
        line-height: 1.68;
    }
}

/* SLTP stage 4: motion polish with reduced-motion safeguards */
html.nsh-reveal [data-reveal] {
    transform: translate3d(0, 26px, 0) scale(0.988);
    transition:
        opacity 0.54s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

html.nsh-reveal [data-reveal].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.nsh-banner [data-reveal].is-visible .nsh-hero__floating {
    animation: sltpFloatSoft 5.8s ease-in-out infinite;
}

.nsh-banner [data-reveal].is-visible .nsh-hero__floating--bottom {
    animation-delay: 0.45s;
}

.nsh-banner [data-reveal].is-visible .nsh-hero__poster::before {
    animation: sltpPosterGlow 6.4s ease-in-out infinite;
}

.nsh-btn--primary,
.nsh-link-arrow,
.hudnews-news-heading__more,
.hudnews-gallery-home-block__more {
    position: relative;
    overflow: hidden;
}

.nsh-btn--primary::after,
.nsh-link-arrow::after,
.hudnews-news-heading__more::after,
.hudnews-gallery-home-block__more::after {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    transform: translateX(-118%);
    background: linear-gradient(112deg, transparent 20%, rgba(255, 255, 255, 0.34) 50%, transparent 78%);
    transition: transform 0.7s ease;
}

.nsh-btn--primary:hover::after,
.nsh-link-arrow:hover::after,
.hudnews-news-heading__more:hover::after,
.hudnews-gallery-home-block__more:hover::after {
    transform: translateX(118%);
}

#program-unggulan .hudnews-program-card,
#fasilitas .hudnews-facility-card,
#ekskul .hudnews-ekskul-card,
#berita .hudnews-news-card,
#artikel .hudnews-news-card,
#prestasi .nsh-achievement-card,
#agenda .hudnews-agenda-item,
#mitra .hudnews-partner-card {
    will-change: transform, box-shadow;
    transition:
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.24s ease,
        background-color 0.24s ease;
}

#program-unggulan .hudnews-program-card:hover,
#fasilitas .hudnews-facility-card:hover,
#ekskul .hudnews-ekskul-card:hover,
#berita .hudnews-news-card:hover,
#artikel .hudnews-news-card:hover,
#prestasi .nsh-achievement-card:hover,
#agenda .hudnews-agenda-item:hover,
#mitra .hudnews-partner-card:hover {
    transform: translate3d(0, -5px, 0);
}

#berita .hudnews-news-card__media img,
#artikel .hudnews-news-card__media img,
#program-unggulan .hudnews-program-card__media img {
    transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

#berita .hudnews-news-card:hover .hudnews-news-card__media img,
#artikel .hudnews-news-card:hover .hudnews-news-card__media img,
#program-unggulan .hudnews-program-card:hover .hudnews-program-card__media img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.02);
}

#mitra .hudnews-partner-card__logo {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.28s ease;
}

#mitra .hudnews-partner-card:hover .hudnews-partner-card__logo {
    transform: scale(1.06) rotate(-1.2deg);
    filter: saturate(1.08);
}

#agenda .hudnews-agenda-item__date strong {
    transition: transform 0.24s ease, color 0.24s ease;
}

#agenda .hudnews-agenda-item:hover .hudnews-agenda-item__date strong {
    transform: translateY(-1px);
    color: #1d4ed8;
}

@keyframes sltpFloatSoft {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes sltpPosterGlow {
    0%,
    100% {
        opacity: 0.92;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 760px) {
    #program-unggulan .hudnews-program-card:hover,
    #fasilitas .hudnews-facility-card:hover,
    #ekskul .hudnews-ekskul-card:hover,
    #berita .hudnews-news-card:hover,
    #artikel .hudnews-news-card:hover,
    #prestasi .nsh-achievement-card:hover,
    #agenda .hudnews-agenda-item:hover,
    #mitra .hudnews-partner-card:hover {
        transform: translate3d(0, -2px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html.nsh-reveal [data-reveal] {
        transform: none;
        transition: none;
    }

    .nsh-banner [data-reveal].is-visible .nsh-hero__floating,
    .nsh-banner [data-reveal].is-visible .nsh-hero__poster::before {
        animation: none !important;
    }

    .nsh-btn--primary::after,
    .nsh-link-arrow::after,
    .hudnews-news-heading__more::after,
    .hudnews-gallery-home-block__more::after {
        display: none;
    }

    #program-unggulan .hudnews-program-card,
    #fasilitas .hudnews-facility-card,
    #ekskul .hudnews-ekskul-card,
    #berita .hudnews-news-card,
    #artikel .hudnews-news-card,
    #prestasi .nsh-achievement-card,
    #agenda .hudnews-agenda-item,
    #mitra .hudnews-partner-card,
    #berita .hudnews-news-card__media img,
    #artikel .hudnews-news-card__media img,
    #program-unggulan .hudnews-program-card__media img,
    #mitra .hudnews-partner-card__logo,
    #agenda .hudnews-agenda-item__date strong {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}











