:root {
  --ink-950: #0a0a0a;
  --ink-900: #171717;
  --ink-800: #232323;
  --ink-700: #3a3a3a;
  --paper-50: #f5f5f5;
  --paper-0: #ffffff;
  --gray-400: #a3a3a3;
  --gray-500: #7d8590;
  --gray-600: #626c77;
  --text-secondary: #525252;
  --border-subtle: #e2e2e2;
  --signal-green: #63b346;
  --signal-green-dark: #397d2a;
  --signal-green-light: #8ed073;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 8%);
  --shadow-md: 0 4px 12px rgb(0 0 0 / 12%);
  --focus-ring: 0 0 0 6px var(--paper-50);
  --container: min(1180px, calc(100% - 40px));
  --container-wide: min(1320px, calc(100% - 40px));
  --container-narrow: min(760px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper-50);
  color: var(--ink-950);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.hep-nav-lock { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 3px; }
a:hover { color: var(--signal-green-dark); }
button, input, textarea, select { font: inherit; }
::selection { background: var(--signal-green); color: var(--ink-950); }

.hep-container { width: var(--container); margin-inline: auto; }
.hep-container-wide { width: var(--container-wide); margin-inline: auto; }
.hep-container-narrow { width: var(--container-narrow); margin-inline: auto; }
.hep-main { min-height: 55vh; }

.hep-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--signal-green);
  color: var(--ink-950);
  font-family: var(--font-display);
  font-weight: 700;
  transform: translateY(-160%);
}
.hep-skip-link:focus { transform: translateY(0); }

.hep-header { position: relative; z-index: 100; background: var(--ink-950); border-bottom: 1px solid var(--ink-700); }
.hep-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.hep-brand { display: inline-flex; flex: none; align-items: center; gap: 11px; color: var(--paper-50); text-decoration: none; }
.hep-brand:hover { opacity: .92; }
.hep-brand__lockup, .custom-logo { width: 216px; height: auto; max-height: 64px; object-fit: contain; object-position: left center; }
.hep-nav { display: flex; align-items: center; gap: 22px; }
.hep-nav__list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.hep-nav__list .menu-item-has-children { position: relative; }
.hep-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-md);
  background: var(--ink-950);
  box-shadow: var(--shadow-md);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.hep-nav__list .menu-item-has-children:hover > .sub-menu,
.hep-nav__list .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.hep-nav__list .sub-menu a { width: 100%; }
.hep-nav__list a, .hep-nav__search {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--paper-50);
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}
.hep-nav__list a:hover, .hep-nav__list .current-menu-item > a, .hep-nav__list .current_page_item > a, .hep-nav__search:hover { background: var(--ink-800); color: var(--signal-green-light); }
.hep-nav__search { border-left: 1px solid var(--ink-700); border-radius: 0; padding-left: 20px; }
.hep-nav-toggle { display: none; min-width: 44px; min-height: 44px; border: 1px solid var(--ink-700); border-radius: var(--radius-md); background: transparent; color: var(--paper-50); align-items: center; gap: 8px; padding: 8px 12px; cursor: pointer; }
.hep-nav-toggle__label { font-family: var(--font-display); font-weight: 600; }

.hep-intro { padding: clamp(48px, 7vw, 88px) 0; background: var(--ink-950); color: var(--paper-50); }
.hep-intro__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(36px, 7vw, 96px); align-items: end; }
.hep-intro h1, .hep-listing__header h1, .hep-page__header h1, .hep-article__header h1 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hep-intro__summary { margin: 0; color: #d0d0d0; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.55; }
.hep-eyebrow, .hep-card__eyebrow, .hep-article__category, .hep-article__aside-label {
  margin: 0;
  color: var(--signal-green-light);
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hep-eyebrow--dark, .hep-card__eyebrow { color: var(--signal-green-dark); }

.hep-featured { padding: clamp(48px, 6vw, 80px) 0; background: var(--ink-900); color: var(--paper-50); }
.hep-featured__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); align-items: center; gap: clamp(32px, 6vw, 72px); }
.hep-featured__media { min-height: 420px; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink-950); color: inherit; }
.hep-featured__image { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.hep-featured__content h2 { margin: 12px 0 18px; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.06; letter-spacing: -.025em; }
.hep-featured__content h2 a { text-decoration: none; }
.hep-featured__content h2 a:hover { color: var(--signal-green-light); }
.hep-featured__excerpt { color: #d0d0d0; font-size: 1.08rem; }
.hep-featured__excerpt p { margin: 0 0 18px; }
.hep-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--gray-600); font-family: var(--font-mono); font-size: .75rem; }
.hep-meta--inverse { color: var(--gray-400); }

.hep-button, .wp-block-button__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.hep-button { margin-top: 24px; }
.hep-button--primary { background: var(--signal-green); color: var(--ink-950); }
.hep-button--primary:hover { background: var(--signal-green-dark); color: var(--paper-50); }
.hep-button--primary:active { background: #2e6621; color: var(--paper-50); }
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link,
.wp-block-button.is-style-fill .wp-block-button__link { background: var(--signal-green); color: var(--ink-950); }
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover { background: var(--signal-green-dark); color: var(--paper-50); }
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link:active,
.wp-block-button.is-style-fill .wp-block-button__link:active { background: #2e6621; color: var(--paper-50); }
.hep-button--conversion, .wp-block-button.is-style-hep-conversion .wp-block-button__link { background: var(--ink-900); color: var(--paper-50); }
.hep-button--conversion:hover, .wp-block-button.is-style-hep-conversion .wp-block-button__link:hover { background: var(--ink-950); color: var(--paper-50); }
.hep-button--conversion:active, .wp-block-button.is-style-hep-conversion .wp-block-button__link:active { background: #000; color: var(--paper-50); }
.hep-button--secondary, .wp-block-button.is-style-hep-secondary .wp-block-button__link { border-color: var(--ink-700); background: transparent; color: var(--ink-950); }
.hep-button--secondary:hover, .wp-block-button.is-style-hep-secondary .wp-block-button__link:hover { border-color: var(--signal-green); background: rgb(99 179 70 / 7%); color: #2e6621; }
.hep-button--secondary:active, .wp-block-button.is-style-hep-secondary .wp-block-button__link:active { border-color: var(--signal-green-dark); background: rgb(99 179 70 / 14%); color: #2e6621; }
.hep-button--tertiary, .wp-block-button.is-style-hep-tertiary .wp-block-button__link { padding-inline: 8px; border-color: transparent; background: transparent; color: var(--text-secondary); }
.hep-button--tertiary:hover, .wp-block-button.is-style-hep-tertiary .wp-block-button__link:hover { background: transparent; color: var(--ink-950); text-decoration: underline; }
.hep-button:disabled, .hep-button[aria-disabled="true"], .wp-block-button__link[aria-disabled="true"] { border-color: var(--border-subtle); background: var(--border-subtle); color: #6b6f76; cursor: not-allowed; pointer-events: none; }
.hep-button[aria-busy="true"] { cursor: progress; opacity: .85; pointer-events: none; }
.hep-button[aria-busy="true"]::before { width: 14px; height: 14px; flex: none; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; content: ""; animation: hep-spin .7s linear infinite; }
@keyframes hep-spin { to { transform: rotate(360deg); } }

.hep-section { padding-block: clamp(56px, 7vw, 96px); }
.hep-section__heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; }
.hep-section__heading h2 { margin: 8px 0 0; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.hep-text-link { color: var(--ink-950); font-family: var(--font-display); font-weight: 700; text-decoration-color: var(--signal-green); text-decoration-thickness: 2px; }
.hep-text-link:hover { color: var(--signal-green-dark); }

.hep-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.hep-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); background: var(--paper-0); box-shadow: var(--shadow-sm); }
.hep-card__media { display: block; overflow: hidden; aspect-ratio: 5 / 3; background: var(--ink-900); }
.hep-card__image { width: 100%; height: 100%; object-fit: cover; transition: opacity .15s ease; }
.hep-card__media:hover .hep-card__image { opacity: .88; }
.hep-card__content { display: flex; flex: 1; flex-direction: column; gap: 10px; padding: 20px; }
.hep-card__title { margin: 0; font-family: var(--font-display); font-size: 1.38rem; line-height: 1.25; letter-spacing: -.01em; }
.hep-card__title a { text-decoration: none; }
.hep-card__title a:hover { color: var(--signal-green-dark); text-decoration: underline; text-decoration-color: var(--signal-green); }
.hep-card__excerpt { color: var(--text-secondary); font-size: .94rem; }
.hep-card__excerpt p { margin: 0; }
.hep-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: auto; padding-top: 6px; color: var(--gray-600); font-family: var(--font-mono); font-size: .7rem; }
.hep-placeholder { display: grid; place-items: center; background: var(--ink-950); }
.hep-placeholder img { width: 112px; height: 112px; opacity: .9; }

.hep-listing__header, .hep-page__header, .hep-article__header { padding: clamp(52px, 8vw, 96px) 0; background: var(--ink-950); color: var(--paper-50); }
.hep-listing__header h1, .hep-page__header h1 { max-width: 900px; font-size: clamp(2.5rem, 6vw, 4.4rem); }
.hep-listing__description { max-width: 680px; margin-top: 20px; color: #d0d0d0; font-size: 1.15rem; }
.hep-listing__description p { margin: 0; }

.hep-article__header-inner { max-width: 1020px; margin-inline: auto; }
.hep-article__category a { color: var(--signal-green-light); text-decoration: none; }
.hep-article__header h1 { max-width: 1020px; font-size: clamp(2.5rem, 6.5vw, 5.25rem); }
.hep-article__dek { max-width: 800px; margin-top: 24px; color: #d0d0d0; font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.55; }
.hep-article__dek p { margin: 0; }
.hep-article__header .hep-meta { margin-top: 28px; }
.hep-article__hero { margin-top: 48px; }
.hep-article__hero-image { width: 100%; max-height: 760px; border-radius: var(--radius-lg); object-fit: cover; }
.hep-article__hero figcaption { max-width: 760px; margin: 10px auto 0; color: var(--text-secondary); font-size: .82rem; }
.hep-article__layout { display: grid; grid-template-columns: 170px minmax(0, 760px); justify-content: center; gap: 48px; padding-block: clamp(48px, 7vw, 88px); }
.hep-article__aside { align-self: start; position: sticky; top: 24px; display: flex; flex-direction: column; gap: 5px; padding-top: 8px; color: var(--text-secondary); font-family: var(--font-mono); font-size: .72rem; }
.hep-article__aside-label { color: var(--signal-green-dark); }
.hep-prose { min-width: 0; font-size: clamp(1.05rem, 1.5vw, 1.16rem); line-height: 1.78; }
.hep-prose > * { max-width: 100%; }
.hep-prose > *:first-child { margin-top: 0; }
.hep-prose h2, .hep-prose h3, .hep-prose h4 { margin: 2.3em 0 .65em; font-family: var(--font-display); line-height: 1.16; letter-spacing: -.015em; }
.hep-prose h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
.hep-prose h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
.hep-prose p, .hep-prose ul, .hep-prose ol { margin: 0 0 1.35em; }
.hep-prose a { color: var(--signal-green-dark); font-weight: 700; text-decoration-thickness: 1.5px; }
.hep-prose blockquote { margin: 2em 0; padding: 4px 0 4px 24px; border-left: 4px solid var(--signal-green); color: var(--text-secondary); font-size: 1.18em; }
.hep-prose pre, .hep-prose code { font-family: var(--font-mono); }
.hep-prose code { padding: .14em .35em; border-radius: var(--radius-sm); background: #e8e8e8; font-size: .87em; }
.hep-prose pre { overflow-x: auto; padding: 20px; border: 1px solid var(--ink-700); border-radius: var(--radius-md); background: var(--ink-900); color: var(--paper-50); }
.hep-prose pre code { padding: 0; background: transparent; color: inherit; }
.hep-prose figure { margin: 2em 0; }
.hep-prose figcaption { color: var(--text-secondary); font-size: .82rem; }
.hep-prose table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.hep-prose th, .hep-prose td { padding: 10px 12px; border: 1px solid var(--border-subtle); text-align: left; }
.hep-prose th { background: var(--ink-900); color: var(--paper-50); font-family: var(--font-display); }
.hep-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.hep-tags a { padding: 6px 12px; border: 1px solid var(--ink-700); border-radius: var(--radius-pill); color: var(--ink-950); font-family: var(--font-body); font-size: .85rem; text-decoration: none; }
.hep-tags a:hover { border-color: var(--signal-green-dark); background: rgb(99 179 70 / 9%); }

.hep-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 0 72px; border-top: 1px solid var(--border-subtle); }
.hep-post-nav > div:last-child { text-align: right; }
.hep-post-nav span { display: block; margin-bottom: 5px; color: var(--gray-500); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.hep-post-nav a { font-family: var(--font-display); font-weight: 700; }
.hep-page .hep-prose { padding-block: clamp(48px, 7vw, 88px); }

.hep-search-form { max-width: 620px; margin-top: 28px; }
.hep-search-form__label { display: block; margin-bottom: 8px; color: inherit; font-family: var(--font-display); font-weight: 600; }
.hep-search-form__row { display: flex; gap: 10px; }
.hep-input { min-width: 0; min-height: 46px; flex: 1; padding: 10px 14px; border: 1px solid var(--ink-700); border-radius: var(--radius-md); background: var(--paper-0); color: var(--ink-950); transition: border-color .15s ease, box-shadow .15s ease; }
.hep-input:hover { border-color: var(--ink-950); }
.hep-input:focus-visible { border-color: var(--signal-green); box-shadow: 0 0 0 3px rgb(99 179 70 / 25%); }
.hep-input:disabled { border-color: var(--border-subtle); background: #ededed; color: #6b6f76; cursor: not-allowed; }
.hep-input[aria-invalid="true"] { border-color: #b42318; box-shadow: 0 0 0 3px rgb(180 35 24 / 16%); }
.hep-search-form .hep-button { flex: none; margin-top: 0; }
.hep-empty-state, .hep-error { padding: clamp(48px, 8vw, 96px); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); background: var(--paper-0); }
.hep-empty-state h2, .hep-error h1 { margin: 10px 0 14px; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; }
.hep-error { margin-block: clamp(56px, 9vw, 112px); }
.hep-error__code { margin: 0; color: var(--signal-green-dark); font-family: var(--font-mono); font-size: clamp(3rem, 8vw, 7rem); font-weight: 700; line-height: 1; }
.hep-error .hep-text-link { display: inline-block; margin-top: 24px; }

.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 40px; }
.page-numbers { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); background: var(--paper-0); font-family: var(--font-display); font-weight: 700; text-decoration: none; }
.page-numbers.current, .page-numbers:hover { border-color: var(--signal-green); background: var(--signal-green); color: var(--ink-950); }

.hep-comments { padding-block: 48px 80px; }
.hep-comments h2, .comment-reply-title { font-family: var(--font-display); }
.hep-comment-list { padding: 0; list-style: none; }
.hep-comment-list .comment { margin: 20px 0; padding: 20px; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); background: var(--paper-0); }
.hep-comment-list .children { list-style: none; }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--ink-700); border-radius: var(--radius-md); background: var(--paper-0); }
.comment-form input[type="submit"] { min-height: 44px; padding: 10px 20px; border: 0; border-radius: var(--radius-md); background: var(--signal-green); color: var(--ink-950); font-family: var(--font-display); font-weight: 700; cursor: pointer; }

.hep-footer { background: var(--ink-950); color: var(--gray-400); border-top: 1px solid var(--ink-700); }
.hep-footer__grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: clamp(36px, 7vw, 96px); padding-block: 64px; }
.hep-footer__brand img { margin-bottom: 18px; }
.hep-footer__brand p { max-width: 440px; }
.hep-footer__name { margin: 0 0 8px; color: var(--paper-50); font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
.hep-footer__heading { margin: 0 0 16px; color: var(--paper-50); font-family: var(--font-display); font-size: 1rem; }
.hep-footer__links { margin: 0; padding: 0; list-style: none; }
.hep-footer__links li + li { margin-top: 8px; }
.hep-footer__links a { color: var(--gray-400); text-decoration: none; }
.hep-footer__links a:hover { color: var(--signal-green-light); text-decoration: underline; }
.hep-footer__social { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; }
.hep-footer__social li + li { margin-top: 0; }
.hep-footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 20px; border-top: 1px solid var(--ink-700); font-family: var(--font-mono); font-size: .68rem; }
.hep-footer__bottom p { margin: 0; }

:where(a, button, input, textarea, select):focus-visible { outline: 3px solid var(--signal-green-dark); outline-offset: 3px; box-shadow: var(--focus-ring); }

@media (max-width: 1000px) {
  .hep-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hep-featured__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hep-article__layout { grid-template-columns: 1fr; }
  .hep-article__aside { position: static; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 900px) {
  .hep-nav-toggle { display: inline-flex; }
  .hep-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; padding: 16px 20px 24px; border-bottom: 1px solid var(--ink-700); background: var(--ink-950); box-shadow: var(--shadow-md); }
  .is-nav-open .hep-nav { display: block; }
  .hep-nav__list { display: block; }
  .hep-nav__list a { width: 100%; }
  .hep-nav__list .sub-menu { position: static; min-width: 0; margin: 2px 0 8px 12px; padding: 0 0 0 12px; border: 0; border-left: 1px solid var(--ink-700); border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .hep-nav__search { width: 100%; margin-top: 10px; border-top: 1px solid var(--ink-700); border-left: 0; padding-top: 16px; padding-left: 12px; }
  .hep-footer__grid { grid-template-columns: 1.2fr 1fr; }
  .hep-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); --container-wide: min(100% - 28px, 1320px); --container-narrow: min(100% - 28px, 760px); }
  .hep-header__inner { min-height: 70px; }
  .hep-brand__lockup, .custom-logo { width: 176px; max-height: 52px; }
  .hep-nav-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .hep-intro__grid, .hep-featured__grid { grid-template-columns: 1fr; }
  .hep-featured__media, .hep-featured__image { min-height: 260px; }
  .hep-card-grid { grid-template-columns: 1fr; }
  .hep-section__heading { align-items: flex-start; flex-direction: column; }
  .hep-card__title { font-size: 1.45rem; }
  .hep-article__hero { margin-top: 28px; }
  .hep-article__hero-image { border-radius: var(--radius-md); }
  .hep-post-nav { grid-template-columns: 1fr; }
  .hep-post-nav > div:last-child { text-align: left; }
  .hep-search-form__row { align-items: stretch; flex-direction: column; }
  .hep-search-form .hep-button { width: 100%; }
  .hep-empty-state, .hep-error { padding: 32px 24px; }
  .hep-footer__grid { grid-template-columns: 1fr; padding-block: 48px; }
  .hep-footer__brand { grid-column: auto; }
  .hep-footer__bottom { align-items: flex-start; flex-direction: column; }
}

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