:root {
  --hu-primary: #172033;
  --hu-primary-2: #24314d;
  --hu-accent: #0f766e;
  --hu-accent-strong: #0b5f59;
  --hu-bg: #f6f8fb;
  --hu-surface: #ffffff;
  --hu-surface-soft: #eef3f7;
  --hu-text: #172033;
  --hu-text-soft: #647084;
  --hu-line: #dfe5ec;
  --hu-line-strong: #cdd6e0;
  --hu-success: #16794f;
  --hu-danger: #b42318;
  --hu-shadow: 0 18px 48px rgba(23, 32, 51, .10);
  --hu-shadow-soft: 0 8px 24px rgba(23, 32, 51, .07);
  --hu-radius-lg: 28px;
  --hu-radius: 18px;
  --hu-radius-sm: 12px;
  --hu-shell: min(1180px, calc(100% - 40px));
  --hu-content: 850px;
  --hu-header-height: 82px;
  font-family: system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--hu-bg); }
body.hu-site {
  margin: 0;
  min-width: 320px;
  background: var(--hu-bg);
  color: var(--hu-text);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(15, 118, 110, .18); }

.hu-shell { width: var(--hu-shell); margin-inline: auto; }
.hu-skip {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--hu-surface);
  color: var(--hu-primary);
  box-shadow: var(--hu-shadow-soft);
  text-decoration: none;
  font-weight: 700;
}
.hu-skip:focus { transform: none; }

/* Header */
.hu-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 32, 51, .07);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}
.hu-header.is-scrolled { box-shadow: 0 10px 28px rgba(23, 32, 51, .08); background: rgba(255,255,255,.98); }
.hu-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: var(--hu-header-height);
}
.hu-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; text-decoration: none; }
.hu-brand__mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--hu-line);
  border-radius: 16px;
  background: var(--hu-surface);
}
.hu-brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.hu-brand__name { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--hu-primary); font-size: 1.08rem; font-weight: 800; }

.hu-nav { min-width: 0; }
.hu-nav ul { margin: 0; padding: 0; list-style: none; }
.hu-nav > ul { display: flex; align-items: center; justify-content: center; gap: 4px; }
.hu-nav li { position: relative; }
.hu-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 11px;
  color: var(--hu-text);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
  transition: background .18s ease, color .18s ease;
}
.hu-nav a:hover, .hu-nav a:focus-visible { background: var(--hu-surface-soft); color: var(--hu-accent-strong); outline: none; }
.hu-nav li.current > a, .hu-nav li.active > a { color: var(--hu-accent-strong); }
.hu-nav .has-children > ul {
  position: absolute;
  inset-block-start: calc(100% + 10px);
  inset-inline-start: 0;
  min-width: 230px;
  padding: 10px;
  display: grid;
  gap: 3px;
  border: 1px solid var(--hu-line);
  border-radius: 16px;
  background: var(--hu-surface);
  box-shadow: var(--hu-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.hu-nav .has-children:hover > ul, .hu-nav .has-children:focus-within > ul { opacity: 1; visibility: visible; transform: none; }
.hu-nav .has-children > ul a { min-height: 40px; font-size: .92rem; }

.hu-header__actions { display: flex; align-items: center; gap: 10px; }
.hu-icon-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hu-line);
  border-radius: 14px;
  background: var(--hu-surface);
  box-shadow: var(--hu-shadow-soft);
  text-decoration: none;
}
.hu-icon-btn svg { width: 21px; height: 21px; fill: var(--hu-primary); }
.hu-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 15px;
  border-radius: 14px;
  background: var(--hu-primary);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.hu-contact-pill span { color: rgba(255,255,255,.72); font-size: .8rem; }
.hu-contact-pill strong { font-size: .9rem; }

.hu-mobile-menu { display: none; position: relative; }
.hu-mobile-menu > summary {
  width: 46px;
  height: 46px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--hu-line);
  border-radius: 14px;
  background: var(--hu-surface);
  cursor: pointer;
  list-style: none;
}
.hu-mobile-menu > summary::-webkit-details-marker { display: none; }
.hu-mobile-menu > summary span { display: block; height: 2px; border-radius: 999px; background: var(--hu-primary); }
.hu-mobile-menu__panel {
  position: absolute;
  inset-block-start: calc(100% + 12px);
  inset-inline-end: 0;
  width: min(360px, calc(100vw - 28px));
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--hu-line);
  border-radius: 20px;
  background: var(--hu-surface);
  box-shadow: var(--hu-shadow);
}
.hu-mobile-menu__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--hu-line); }
.hu-mobile-menu__head strong { color: var(--hu-primary); }
.hu-mobile-menu__head span { color: var(--hu-text-soft); font-size: .88rem; }
.hu-mobile-menu nav ul { margin: 12px 0 0; padding: 0; list-style: none; }
.hu-mobile-menu nav ul ul { margin: 4px 10px 8px 0; padding-inline-start: 10px; border-inline-start: 2px solid var(--hu-line); }
.hu-mobile-menu nav a { display: block; padding: 10px 8px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.hu-mobile-menu nav a:hover, .hu-mobile-menu nav a:focus-visible { background: var(--hu-surface-soft); outline: none; }
.hu-mobile-menu__actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.hu-mobile-menu__actions a { display: grid; place-items: center; min-height: 42px; padding: 7px; border-radius: 10px; background: var(--hu-surface-soft); text-decoration: none; font-size: .9rem; font-weight: 700; }

/* Page heroes */
.hu-main { min-height: 62vh; }
.hu-page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hu-line);
  background: linear-gradient(145deg, #eef4f7 0%, #f8fafc 52%, #ffffff 100%);
}
.hu-page-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  inset-block-start: -250px;
  inset-inline-end: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,.15), rgba(15,118,110,0) 68%);
  pointer-events: none;
}
.hu-page-hero__inner { position: relative; z-index: 1; padding-block: clamp(48px, 8vw, 92px); }
.hu-page-hero--compact .hu-page-hero__inner { padding-block: clamp(40px, 6vw, 68px); }
.hu-page-hero--home .hu-page-hero__inner { padding-block: clamp(54px, 9vw, 104px); }
.hu-page-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--hu-accent-strong); font-size: .92rem; font-weight: 800; }
.hu-page-hero__eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 999px; background: var(--hu-accent); }
.hu-page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--hu-primary);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.25;
  letter-spacing: -.025em;
}
.hu-intro { max-width: 850px; margin-top: 20px; color: var(--hu-text-soft); font-size: clamp(1.02rem, 2vw, 1.18rem); }
.hu-intro > :first-child { margin-top: 0; }
.hu-intro > :last-child { margin-bottom: 0; }
.hu-breadcrumbs { margin-bottom: 18px; color: var(--hu-text-soft); font-size: .9rem; }
.hu-breadcrumbs .breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.hu-breadcrumbs a { color: var(--hu-accent-strong); text-decoration: none; }
.hu-meta-row { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 20px; color: var(--hu-text-soft); font-size: .9rem; }
.hu-meta-row time + time { margin-inline-start: 12px; }
.hu-author .author { margin: 0; }
.hu-page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* Buttons */
.hu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.hu-btn:hover { transform: translateY(-1px); }
.hu-btn--primary { background: var(--hu-primary); color: #fff; box-shadow: 0 8px 20px rgba(23,32,51,.14); }
.hu-btn--primary:hover { background: var(--hu-primary-2); }
.hu-btn--soft { border-color: var(--hu-line); background: var(--hu-surface); color: var(--hu-accent-strong); }
.hu-btn--soft:hover { background: var(--hu-surface-soft); }

/* Main content */
.hu-section { padding-block: clamp(38px, 7vw, 76px); }
.hu-section--home { padding-block-start: clamp(30px, 6vw, 62px); }
.hu-article-shell { max-width: calc(var(--hu-content) + 0px); }
.hu-content-card {
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--hu-line);
  border-radius: var(--hu-radius-lg);
  background: var(--hu-surface);
  box-shadow: var(--hu-shadow-soft);
}
.hu-featured-media:empty { display: none; }
.hu-featured-media { margin-bottom: 30px; }

.hu-rich-content { overflow-wrap: anywhere; }
.hu-rich-content > :first-child { margin-top: 0; }
.hu-rich-content > :last-child { margin-bottom: 0; }
.hu-rich-content h2, .hu-rich-content h3, .hu-rich-content h4 {
  margin-block: 1.7em .65em;
  color: var(--hu-primary);
  line-height: 1.4;
  letter-spacing: -.012em;
}
.hu-rich-content h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
.hu-rich-content h3 { font-size: clamp(1.22rem, 2.5vw, 1.55rem); }
.hu-rich-content h4 { font-size: 1.12rem; }
.hu-rich-content p { margin-block: 0 1.15em; }
.hu-rich-content a { color: var(--hu-accent-strong); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.hu-rich-content strong { color: var(--hu-primary); }
.hu-rich-content ul, .hu-rich-content ol { margin-block: 1em 1.3em; padding-inline-start: 1.35em; }
.hu-rich-content li { margin-block: .35em; }
.hu-rich-content li::marker { color: var(--hu-accent); font-weight: 700; }
.hu-rich-content hr { margin-block: 2.2em; border: 0; border-top: 1px solid var(--hu-line); }

.hu-rich-content blockquote {
  margin: 1.7em 0;
  padding: 18px 20px;
  border-inline-start: 4px solid var(--hu-accent);
  border-radius: 0 var(--hu-radius-sm) var(--hu-radius-sm) 0;
  background: var(--hu-surface-soft);
  color: var(--hu-text-soft);
}
.hu-rich-content blockquote > :last-child { margin-bottom: 0; }

.hu-rich-content figure { max-width: 100%; margin: 1.8em auto; }
.hu-rich-content figure img { width: auto; max-width: 100%; margin-inline: auto; border-radius: var(--hu-radius); }
.hu-rich-content figcaption { margin-top: 9px; color: var(--hu-text-soft); text-align: center; font-size: .88rem; line-height: 1.6; }

.hu-rich-content table { width: 100%; margin: 1.6em 0; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--hu-line); border-radius: var(--hu-radius-sm); font-size: .95rem; }
.hu-rich-content th, .hu-rich-content td { padding: 13px 14px; border-bottom: 1px solid var(--hu-line); text-align: start; vertical-align: top; }
.hu-rich-content th { background: var(--hu-surface-soft); color: var(--hu-primary); font-weight: 800; }
.hu-rich-content tr:last-child td { border-bottom: 0; }
.hu-rich-content tr:nth-child(even) td { background: #fbfcfd; }

.hu-rich-content pre, .hu-rich-content code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.hu-rich-content code { padding: .12em .35em; border-radius: 6px; background: var(--hu-surface-soft); font-size: .9em; direction: ltr; }
.hu-rich-content pre { overflow: auto; padding: 18px; border-radius: var(--hu-radius-sm); background: #101826; color: #edf2f7; direction: ltr; text-align: left; }
.hu-rich-content pre code { padding: 0; background: transparent; color: inherit; }

.hu-rich-content iframe { width: 100%; max-width: 100%; border: 0; border-radius: var(--hu-radius); }
.hu-rich-content input, .hu-rich-content textarea, .hu-rich-content select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--hu-line-strong);
  border-radius: 11px;
  background: var(--hu-surface);
  color: var(--hu-text);
}
.hu-rich-content textarea { min-height: 130px; resize: vertical; }
.hu-rich-content button, .hu-rich-content input[type="submit"] {
  width: auto;
  min-height: 46px;
  padding-inline: 18px;
  border: 0;
  border-radius: 11px;
  background: var(--hu-primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.hu-rich-content details { margin: 12px 0; overflow: hidden; border: 1px solid var(--hu-line); border-radius: 14px; background: var(--hu-surface); }
.hu-rich-content summary { padding: 15px 17px; cursor: pointer; color: var(--hu-primary); font-weight: 800; }
.hu-rich-content details[open] summary { border-bottom: 1px solid var(--hu-line); background: var(--hu-surface-soft); }
.hu-rich-content details > :not(summary) { margin-inline: 17px; }
.hu-rich-content details > :last-child { margin-bottom: 17px; }

.hu-rich-content nav[aria-label*="محتو"], .hu-rich-content .toc, .hu-rich-content [data-toc] {
  margin: 1.5em 0;
  padding: 18px 20px;
  border: 1px solid var(--hu-line);
  border-radius: var(--hu-radius);
  background: var(--hu-surface-soft);
}

.hu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-block: 1.5em; }
.hu-grid > * { padding: 18px; border: 1px solid var(--hu-line); border-radius: var(--hu-radius); background: var(--hu-surface); }
.hu-grid > * > :first-child { margin-top: 0; }
.hu-grid > * > :last-child { margin-bottom: 0; }

/* Archive */
.hu-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.hu-archive-grid > article, .hu-archive-grid > .card, .hu-archive-grid > a {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--hu-line);
  border-radius: var(--hu-radius);
  background: var(--hu-surface);
  box-shadow: var(--hu-shadow-soft);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hu-archive-grid > article:hover, .hu-archive-grid > .card:hover, .hu-archive-grid > a:hover { transform: translateY(-2px); border-color: var(--hu-line-strong); box-shadow: var(--hu-shadow); }
.hu-archive-grid h2, .hu-archive-grid h3 { margin: 0; color: var(--hu-primary); font-size: 1.12rem; line-height: 1.55; }
.hu-archive-grid p { margin: 10px 0 0; color: var(--hu-text-soft); }
.hu-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 28px; }
.hu-pagination:empty { display: none; }
.hu-pagination a, .hu-pagination span { min-width: 42px; min-height: 42px; display: grid; place-items: center; padding: 8px 12px; border: 1px solid var(--hu-line); border-radius: 11px; background: var(--hu-surface); text-decoration: none; font-weight: 700; }
.hu-pagination a:hover, .hu-pagination a:focus-visible { border-color: var(--hu-accent); color: var(--hu-accent-strong); outline: none; }

/* Error */
.hu-error-section { display: grid; align-items: center; min-height: 64vh; padding-block: 60px; }
.hu-error-card { max-width: 680px; margin-inline: auto; padding: clamp(28px, 6vw, 56px); border: 1px solid var(--hu-line); border-radius: var(--hu-radius-lg); background: var(--hu-surface); box-shadow: var(--hu-shadow); text-align: center; }
.hu-error-code { display: block; margin-bottom: 8px; color: var(--hu-accent); font-size: clamp(3rem, 12vw, 6.5rem); font-weight: 900; line-height: 1; letter-spacing: -.06em; }
.hu-error-card h1 { margin: 0; color: var(--hu-primary); font-size: clamp(1.7rem, 4vw, 2.7rem); }
.hu-error-card > p { color: var(--hu-text-soft); }
.hu-error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.hu-error-actions p { margin: 0; }
.hu-error-actions p a { display: inline-flex; align-items: center; min-height: 46px; padding: 0 18px; border: 1px solid var(--hu-line); border-radius: 13px; background: var(--hu-surface-soft); color: var(--hu-primary); text-decoration: none; font-weight: 800; }

/* Footer */
.hu-footer { margin-top: 10px; background: var(--hu-primary); color: #fff; }
.hu-footer__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(180px, .8fr) minmax(180px, .8fr); gap: 38px; padding-block: 52px 42px; }
.hu-footer__brand { max-width: 440px; }
.hu-footer__logo { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 14px; overflow: hidden; border-radius: 13px; background: #fff; }
.hu-footer__logo img { width: 100%; height: 100%; object-fit: contain; }
.hu-footer__brand strong { display: block; font-size: 1.25rem; }
.hu-footer__brand p { margin: 10px 0 0; color: rgba(255,255,255,.68); }
.hu-footer__col h2 { margin: 0 0 14px; color: #fff; font-size: 1rem; }
.hu-footer__menu ul { margin: 0; padding: 0; list-style: none; }
.hu-footer__menu li + li { margin-top: 6px; }
.hu-footer__menu a, .hu-footer__contact a { color: rgba(255,255,255,.78); text-decoration: none; }
.hu-footer__menu a:hover, .hu-footer__contact a:hover { color: #fff; }
.hu-footer__contact { display: grid; gap: 9px; }
.hu-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 18px 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); font-size: .88rem; }
.hu-footer__bottom a { color: inherit; text-decoration: none; }
.hu-footer__bottom a:hover { color: #fff; }

/* CMS mobile CTA */
.mobile-cta { display: none; }

/* Focus */
.hu-site a:focus-visible, .hu-site button:focus-visible, .hu-site summary:focus-visible, .hu-site input:focus-visible, .hu-site textarea:focus-visible, .hu-site select:focus-visible {
  outline: 3px solid rgba(15,118,110,.30);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hu-header__inner { grid-template-columns: auto 1fr auto; gap: 14px; }
  .hu-nav a { padding-inline: 10px; }
  .hu-contact-pill strong { display: none; }
  .hu-contact-pill { min-width: 70px; justify-content: center; }
  .hu-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  :root { --hu-header-height: 72px; --hu-shell: min(100% - 28px, 1180px); }
  .hu-header__inner { grid-template-columns: minmax(0, 1fr) auto; }
  .hu-nav, .hu-header__actions { display: none; }
  .hu-mobile-menu { display: block; }
  .hu-brand__name { max-width: min(56vw, 310px); }
  .hu-page-hero__inner { padding-block: 46px; }
  .hu-footer__grid { grid-template-columns: 1.2fr 1fr; }
  .hu-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --hu-shell: calc(100% - 24px); --hu-radius-lg: 22px; }
  body.hu-site { font-size: 15.5px; }
  .hu-brand__mark { width: 46px; height: 46px; flex-basis: 46px; border-radius: 13px; }
  .hu-brand__name { font-size: 1rem; }
  .hu-page-hero h1 { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  .hu-content-card { padding: 20px; border-radius: 20px; }
  .hu-grid, .hu-archive-grid { grid-template-columns: 1fr; }
  .hu-rich-content table { display: block; overflow-x: auto; white-space: nowrap; }
  .hu-footer__grid { grid-template-columns: 1fr; gap: 28px; padding-block: 40px 34px; }
  .hu-footer__brand { grid-column: auto; }
  .hu-footer__bottom { align-items: flex-start; flex-direction: column; }
  .mobile-cta {
    position: fixed;
    z-index: 80;
    inset-inline: 12px;
    inset-block-end: max(12px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--hu-line);
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--hu-shadow);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 11px;
    background: var(--hu-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
  }
  .mobile-cta a + a { background: var(--hu-success); }
  .hu-site:has(.mobile-cta) .hu-footer { padding-bottom: 76px; }
}

@media (max-width: 460px) {
  .hu-mobile-menu__actions { grid-template-columns: 1fr; }
  .hu-meta-row { display: grid; gap: 8px; }
  .hu-page-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hu-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .hu-header, .hu-footer, .mobile-cta, .hu-page-actions, .hu-skip { display: none !important; }
  body.hu-site { background: #fff; color: #000; }
  .hu-page-hero { border: 0; background: #fff; }
  .hu-page-hero__inner, .hu-section { padding-block: 18px; }
  .hu-content-card { padding: 0; border: 0; box-shadow: none; }
}

/* Hany CMS hero compatibility */
.hu-page-hero.has-hero {
  background-color: var(--hu-primary);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hu-page-hero.has-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,24,39,.86), rgba(17,24,39,.58) 58%, rgba(17,24,39,.34));
  pointer-events: none;
}
.hu-page-hero.has-hero .hu-page-hero__inner { position: relative; z-index: 2; }
.hu-page-hero.has-hero h1,
.hu-page-hero.has-hero .hu-page-hero__eyebrow,
.hu-page-hero.has-hero .hu-intro,
.hu-page-hero.has-hero .hu-breadcrumbs,
.hu-page-hero.has-hero .hu-breadcrumbs a,
.hu-page-hero.has-hero .hu-meta-row,
.hu-page-hero.has-hero .hu-author { color: #fff; }
.hu-page-hero.has-hero .hu-page-hero__eyebrow::before { background: rgba(255,255,255,.85); }
.hu-page-hero.has-hero .hu-btn--soft { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.10); color: #fff; }
.hu-page-hero.has-hero .hu-btn--primary { background: #fff; color: var(--hu-primary); box-shadow: none; }

/* Hany CMS 1.0.57 table of contents */
.hu-rich-content .hany-toc {
  margin: 1.5em 0;
  overflow: hidden;
  border: 1px solid var(--hu-line);
  border-radius: var(--hu-radius);
  background: var(--hu-surface-soft);
}
.hu-rich-content .hany-toc-list { display: none; margin: 0; padding: 8px 18px 18px 34px; }
.hu-rich-content .hany-toc.is-open .hany-toc-list { display: block; }
.hu-rich-content .hany-toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border: 0;
  background: transparent;
  color: var(--hu-primary);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-align: start;
}
.hu-rich-content .hany-toc-toggle::after { content: "+"; font-size: 1.25rem; line-height: 1; }
.hu-rich-content .hany-toc.is-open .hany-toc-toggle { border-bottom: 1px solid var(--hu-line); }
.hu-rich-content .hany-toc.is-open .hany-toc-toggle::after { content: "−"; }
.hu-rich-content .hany-toc-list li { margin: 7px 0; }
.hu-rich-content .hany-toc-list a { color: var(--hu-text); text-decoration: none; }
.hu-rich-content .hany-toc-list a:hover,
.hu-rich-content .hany-toc-list a:focus-visible { color: var(--hu-accent-strong); text-decoration: underline; text-underline-offset: 3px; }

/* Hany CMS 1.0.57 archive/search markup compatibility */
.hu-archive-grid .hp-archive-card,
.hu-archive-grid .hp-search-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 12px;
}
.hu-archive-grid .hp-featured {
  overflow: hidden;
  margin: -4px -4px 2px;
  border-radius: 16px;
  background: var(--hu-surface-soft);
  aspect-ratio: 4 / 3;
}
.hu-archive-grid .hp-featured a { display: block; width: 100%; height: 100%; }
.hu-archive-grid .hp-featured img { width: 100%; height: 100%; object-fit: cover; margin: 0; }
.hu-archive-grid .hp-archive-card__excerpt { margin: 0; color: var(--hu-text-soft); }
.hu-archive-grid .hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 800;
}
.hu-archive-grid .hp-btn--dark { background: var(--hu-primary); color: #fff; }
.hu-archive-grid .hp-btn--dark:hover,
.hu-archive-grid .hp-btn--dark:focus-visible { background: var(--hu-primary-2); color: #fff; }
.hu-archive-grid .hp-search-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px dashed var(--hu-line-strong);
  border-radius: var(--hu-radius);
  background: var(--hu-surface-soft);
  color: var(--hu-text-soft);
  text-align: center;
}
