/*
Theme Name: Humorkult-Theme-Stable
Theme URI: https://humorkult.org
Author: humorkult.org
Author URI: https://humorkult.org
Description: FSE Block-Theme for Humorkult with magazine layouts, category hubs, dark mode and editorial building blocks.
Tags: block-patterns, full-site-editing, blog, magazine
Version: 2.0.0
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: humorkult
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --hk-bg: var(--wp--preset--color--canvas);
  --hk-surface: var(--wp--preset--color--card);
  --hk-surface-strong: var(--wp--preset--color--paper);
  --hk-text: var(--wp--preset--color--ink);
  --hk-muted: var(--wp--preset--color--muted);
  --hk-line: var(--wp--preset--color--border);
  --hk-accent: var(--wp--preset--color--accent);
  --hk-accent-warm: var(--wp--preset--color--accent-warm);
  --hk-good: var(--wp--preset--color--success-fun);
  --hk-shadow: var(--wp--custom--shadow--card);
  --hk-shadow-lift: var(--wp--custom--shadow--lift);
  --hk-radius-card: var(--wp--custom--radius--card);
  --hk-radius-soft: var(--wp--custom--radius--soft);
  --hk-radius-pill: var(--wp--custom--radius--pill);
}

html.theme-dark {
  --hk-bg: var(--wp--preset--color--stage);
  --hk-surface: #1d1a26;
  --hk-surface-strong: var(--wp--preset--color--stage-soft);
  --hk-text: var(--wp--preset--color--ink-dark);
  --hk-muted: #c7bccc;
  --hk-line: var(--wp--preset--color--border-dark);
  --hk-accent: #f06b57;
  --hk-accent-warm: #efad4d;
  --hk-good: #6bd196;
  --hk-shadow: var(--wp--custom--shadow--dark);
  --hk-shadow-lift: 0 26px 70px rgba(0, 0, 0, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(217, 145, 43, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(96, 172, 230, 0.18), transparent 24%),
    var(--hk-bg);
  color: var(--hk-text);
}

html.theme-dark body {
  background:
    radial-gradient(circle at top left, rgba(240, 107, 87, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(130, 100, 255, 0.15), transparent 26%),
    var(--hk-bg);
}

html.theme-promille body {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 213, 120, 0.22), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(255, 161, 95, 0.18), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(235, 186, 63, 0.12), transparent 30%),
    var(--hk-bg);
}

.wp-site-blocks {
  padding-left: clamp(1rem, 2vw, 1.8rem);
  padding-right: clamp(1rem, 2vw, 1.8rem);
}

p,
ul,
ol,
blockquote {
  max-width: 68ch;
}

a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--hk-accent);
}

.wp-element-button,
.wp-block-button__link,
button,
input[type="submit"] {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.wp-element-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
.wp-element-button:focus-visible,
.wp-block-button__link:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible {
  box-shadow: 0 14px 32px rgba(182, 58, 52, 0.22);
  transform: translateY(-1px);
}

.hk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hk-kicker::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hk-accent), var(--hk-accent-warm));
  box-shadow: 0 0 0 6px rgba(182, 58, 52, 0.12);
}

.hk-shell {
  margin-top: clamp(1.4rem, 4vw, 2.8rem);
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
}

.hk-section-header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.hk-section-header h1,
.hk-section-header h2,
.hk-section-header h3 {
  margin: 0;
}

.hk-surface,
.hk-card,
.hk-sidebar-module,
.hk-menu-board__panel,
.hk-post-shell,
.hk-archive-shell,
.hk-page-shell,
.hk-404-shell,
.hk-front-intro {
  background: color-mix(in srgb, var(--hk-surface) 92%, white 8%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: var(--hk-radius-card);
  box-shadow: var(--hk-shadow);
}

html.theme-dark .hk-surface,
html.theme-dark .hk-card,
html.theme-dark .hk-sidebar-module,
html.theme-dark .hk-menu-board__panel,
html.theme-dark .hk-post-shell,
html.theme-dark .hk-archive-shell,
html.theme-dark .hk-page-shell,
html.theme-dark .hk-404-shell,
html.theme-dark .hk-front-intro {
  background: color-mix(in srgb, var(--hk-surface) 94%, white 6%);
}

.hk-site-header {
  margin-top: 1rem;
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.hk-brandbar {
  position: relative;
  top: auto;
  z-index: 20;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  background: color-mix(in srgb, var(--hk-surface-strong) 96%, transparent 4%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(41, 30, 22, 0.08);
  backdrop-filter: none;
}

.hk-brandbar > .wp-block-group {
  gap: 0.95rem;
}

.hk-brand-lockup {
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}

.hk-brand-lockup .wp-block-site-logo img {
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.hk-brand-copy {
  gap: 0.25rem;
}

.hk-brand-copy .wp-block-site-title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.hk-brand-copy .wp-block-site-title a {
  color: var(--hk-text);
  text-decoration: none;
}

.hk-brand-copy .wp-block-site-tagline,
.hk-brand-copy p {
  margin: 0;
  color: var(--hk-muted);
  font-size: var(--wp--preset--font-size--body-s);
}

.hk-header-actions {
  display: grid;
  grid-template-columns: minmax(0, 24rem) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
}

.hk-header-actions .wp-block-navigation {
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
  font-weight: 700;
  justify-self: end;
}

.hk-search-launch-wrap .wp-block-button__link {
  background: transparent;
  color: var(--hk-text);
  border: 1px solid var(--hk-line);
  box-shadow: none;
}

.hk-header-actions .wp-block-navigation-item__content {
  color: var(--hk-text);
}

.hk-header-actions .wp-block-search {
  min-width: min(22rem, 100%);
}

.hk-header-actions .wp-block-search__inside-wrapper {
  border-radius: var(--hk-radius-pill);
  border-color: var(--hk-line);
  background: color-mix(in srgb, var(--hk-surface) 80%, white 20%);
}

.hk-live-search {
  position: relative;
}

.hk-live-search__form {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
}

.hk-live-search__input {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-surface) 85%, white 15%);
  color: var(--hk-text);
  font: inherit;
}

.hk-live-search__button {
  padding: 0.9rem 1.1rem;
  border: 0;
  border-radius: var(--hk-radius-pill);
  background: var(--hk-accent);
  color: var(--wp--preset--color--paper);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.hk-live-search__results {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.6rem;
  background: color-mix(in srgb, var(--hk-surface) 98%, white 2%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: 22px;
  box-shadow: var(--hk-shadow-lift);
}

.hk-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(16, 12, 10, 0.62);
}

.hk-search-overlay.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hk-search-overlay__shell {
  width: min(980px, 100%);
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  background: color-mix(in srgb, var(--hk-surface-strong) 98%, white 2%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.2);
}

.hk-search-open {
  overflow: hidden;
}

.hk-search-overlay .hk-live-search__form {
  align-items: stretch;
}

.hk-search-overlay .hk-live-search__input {
  padding: 1.1rem 1.2rem;
  font-size: 1.1rem;
}

.hk-search-overlay .hk-live-search__results {
  position: static;
  margin-top: 0.8rem;
}

.hk-search-questions__list {
  display: grid;
  gap: 0.75rem;
}

.hk-search-questions__list a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: var(--hk-radius-soft);
  background: color-mix(in srgb, var(--hk-surface) 95%, white 5%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 85%, transparent 15%);
  color: var(--hk-text);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
}

.hk-live-search__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hk-live-search__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  text-decoration: none;
  color: var(--hk-text);
}

.hk-live-search__item:hover,
.hk-live-search__item:focus-visible {
  background: color-mix(in srgb, var(--hk-accent) 7%, var(--hk-surface) 93%);
}

.hk-live-search__type {
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-live-search__title {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
}

.hk-live-search__snippet {
  color: var(--hk-muted);
  font-size: var(--wp--preset--font-size--body-s);
  line-height: 1.5;
}

.hk-theme-doors__grid,
.hk-related-posts__grid,
.hk-footer-courses {
  display: grid;
  gap: 1rem;
}

.hk-theme-doors__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hk-theme-door,
.hk-footer-course {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--hk-surface) 94%, white 6%), color-mix(in srgb, var(--hk-surface-strong) 96%, transparent 4%));
  border: 1px solid color-mix(in srgb, var(--hk-line) 85%, transparent 15%);
  border-radius: var(--hk-radius-card);
  box-shadow: var(--hk-shadow);
}

.hk-theme-door::after,
.hk-footer-course::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0.85rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hk-accent), transparent);
  opacity: 0.55;
}

.hk-theme-door h3,
.hk-footer-course h3 {
  margin: 0;
}

.hk-theme-door p,
.hk-footer-course p {
  margin: 0;
}

.hk-theme-door .wp-element-button {
  justify-self: start;
}

.hk-card__eyebrow {
  margin: 0;
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hk-related-posts__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.hk-card--related {
  padding: 1rem;
}

.hk-card--related .hk-card__image-link {
  display: block;
  margin-bottom: 0.8rem;
}

.hk-card--related img,
.hk-home-grid .wp-block-post-featured-image img,
.hk-quick-laughs-grid .wp-block-post-featured-image img,
.hk-card img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.hk-card--related h3,
.hk-card--related h3 a {
  color: var(--hk-text);
  text-decoration: none;
}

.hk-footer-courses {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.hk-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.hk-footer-links a {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
  background: color-mix(in srgb, var(--hk-surface) 92%, white 8%);
  color: var(--hk-text);
  text-decoration: none;
}

.hk-footer-links a strong {
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
}

.hk-footer-links a span {
  color: var(--hk-muted);
  font-size: var(--wp--preset--font-size--body-s);
  line-height: 1.55;
}

.hk-footer-links a:hover,
.hk-footer-links a:focus-visible,
.hk-theme-door:hover,
.hk-theme-door:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--hk-shadow-lift);
}

.hk-search-overlay__grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  align-items: start;
}

.hk-brand-tools {
  gap: 0.85rem;
}

.hk-search-launch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hk-search-launch::before {
  content: "\2315";
  font-size: 1rem;
  line-height: 1;
}

.hk-menu-board > .hk-menu-board__panel {
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
}

@media (max-width: 900px) {
  .hk-theme-doors__grid,
  .hk-related-posts__grid,
  .hk-footer-courses,
  .hk-search-overlay__grid {
    grid-template-columns: 1fr;
  }
}

.hk-live-search__empty {
  margin: 0;
  padding: 0.8rem 0.9rem;
  color: var(--hk-muted);
}

.hk-mode-toggle .wp-block-button__link {
  background: transparent;
  color: var(--hk-text);
  border: 1px solid var(--hk-line);
  box-shadow: none;
}

.hk-mode-toggle--promille .wp-block-button__link {
  border-color: color-mix(in srgb, var(--hk-accent-warm) 65%, var(--hk-line) 35%);
  background: color-mix(in srgb, var(--hk-accent-warm) 12%, var(--hk-surface) 88%);
}

.hk-masthead {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
  box-shadow: 0 16px 34px rgba(31, 23, 20, 0.08);
  background:
    linear-gradient(110deg, rgba(255, 248, 237, 0.94) 0%, rgba(255, 248, 237, 0.82) 44%, rgba(219, 235, 248, 0.6) 100%),
    url("assets/images/header-al-bundy.jpg") center center / contain no-repeat;
  background-color: #eef3f6;
}

html.theme-dark .hk-masthead {
  background:
    linear-gradient(116deg, rgba(17, 16, 26, 0.9) 0%, rgba(17, 16, 26, 0.64) 42%, rgba(37, 30, 49, 0.42) 100%),
    url("assets/images/header-al-bundy.jpg") center center / contain no-repeat;
}

.hk-masthead::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(217, 145, 43, 0.2), rgba(182, 58, 52, 0.05));
  transform: rotate(12deg);
}

html.theme-promille .hk-masthead::before {
  content: "";
  position: absolute;
  inset: auto 8% 8% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 32%, rgba(255,255,255,0.55) 0 8%, transparent 10%),
    radial-gradient(circle at 58% 58%, rgba(255,255,255,0.42) 0 6%, transparent 8%),
    radial-gradient(circle at 76% 22%, rgba(255,255,255,0.36) 0 5%, transparent 7%),
    linear-gradient(135deg, rgba(255, 210, 96, 0.2), rgba(255, 150, 88, 0.08));
  filter: blur(1px);
}

.hk-masthead__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  gap: 1rem;
}

.hk-masthead__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hk-masthead__chips span {
  display: inline-flex;
  padding: 0.38rem 0.72rem;
  border-radius: var(--hk-radius-pill);
  background: rgba(255, 250, 243, 0.82);
  color: color-mix(in srgb, var(--hk-text) 84%, var(--hk-muted) 16%);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

html.theme-dark .hk-masthead__chips span {
  background: rgba(24, 20, 34, 0.76);
  color: var(--wp--preset--color--ink-dark);
}

.hk-masthead h1,
.hk-masthead h2 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 5.1rem);
  line-height: 0.92;
}

.hk-masthead p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: color-mix(in srgb, var(--hk-text) 78%, var(--hk-muted) 22%);
}

.home .hk-masthead {
  min-height: 16rem;
}

.hk-mode-status {
  display: inline-flex;
  margin-top: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-surface) 72%, white 28%);
  color: color-mix(in srgb, var(--hk-text) 82%, var(--hk-muted) 18%);
  font-size: var(--wp--preset--font-size--body-s);
  max-width: fit-content;
}

.hk-masthead__modes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hk-mode-button {
  padding: 0.72rem 1.05rem;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-pill);
  background: rgba(255, 250, 243, 0.86);
  color: var(--hk-text);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.hk-mode-button--promille {
  background: color-mix(in srgb, var(--hk-accent-warm) 10%, white 90%);
}

html.theme-promille .hk-brandbar,
html.theme-promille .hk-masthead,
html.theme-promille .hk-front-intro,
html.theme-promille .hk-card,
html.theme-promille .hk-sidebar-module,
html.theme-promille .hk-post-shell,
html.theme-promille .hk-archive-shell,
html.theme-promille .hk-random-box,
html.theme-promille .hk-reaction-panel,
html.theme-promille .hk-category-spotlight,
html.theme-promille .hk-interrupt-box,
html.theme-promille .hk-poll-box {
  box-shadow: 0 20px 65px rgba(170, 104, 21, 0.22);
}

html.theme-promille .hk-brandbar {
  transform: rotate(-0.25deg);
}

html.theme-promille .hk-masthead {
  transform: rotate(0.35deg);
}

html.theme-promille .hk-card:nth-child(odd),
html.theme-promille .hk-sidebar-module:nth-child(odd) {
  transform: rotate(-0.35deg);
}

html.theme-promille .hk-card:nth-child(even),
html.theme-promille .hk-sidebar-module:nth-child(even) {
  transform: rotate(0.35deg);
}

html.theme-promille img {
  filter: saturate(1.08) contrast(1.04);
}

html.theme-promille .hk-kicker::before {
  box-shadow: 0 0 0 6px rgba(217, 145, 43, 0.18);
}

.hk-front-intro,
.hk-archive-shell,
.hk-page-shell,
.hk-404-shell,
.hk-post-shell {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.hk-front-intro {
  position: relative;
}

.hk-front-intro::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(217, 145, 43, 0.16), rgba(182, 58, 52, 0.05));
  transform: rotate(11deg);
}

.home .hk-front-intro {
  background: linear-gradient(145deg, rgba(255, 250, 243, 0.98), rgba(246, 238, 226, 0.95));
}

.hk-front-pulse {
  padding: 1.2rem clamp(1.2rem, 3vw, 1.8rem);
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.96), rgba(255, 250, 243, 0.92));
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: calc(var(--hk-radius-card) - 4px);
  box-shadow: var(--hk-shadow);
}

.hk-front-pulse .wp-block-buttons {
  margin-top: 0.25rem;
}

.hk-front-pulse .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--hk-text);
  border: 1px solid var(--hk-line);
}

.hk-decree-bar {
  overflow: hidden;
  padding: 0.9rem 1.2rem;
  background: linear-gradient(90deg, rgba(182, 58, 52, 0.96), rgba(217, 145, 43, 0.96));
  border-radius: calc(var(--hk-radius-card) - 10px);
  box-shadow: var(--hk-shadow);
  color: var(--wp--preset--color--paper);
}

.hk-decree-bar__track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  align-items: center;
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hk-decree-bar__track span {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.hk-decree-bar__track span:not(:last-child)::after {
  content: "•";
  opacity: 0.7;
}

.hk-pathfinder,
.hk-category-routes,
.hk-aftertaste,
.hk-search-paths,
.hk-trending-tags,
.hk-self-test {
  margin-top: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}

.hk-pathfinder__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hk-confession-wall__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hk-confession-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: 1.2rem;
  border-radius: calc(var(--hk-radius-card) - 8px);
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  box-shadow: var(--hk-shadow);
  position: relative;
  overflow: hidden;
}

.hk-confession-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--hk-accent), var(--hk-accent-warm));
}

.hk-confession-card--news {
  background: linear-gradient(160deg, rgba(255, 249, 241, 0.98), rgba(255, 239, 226, 0.94));
}

.hk-confession-card--taproom {
  background: linear-gradient(160deg, rgba(255, 248, 233, 0.98), rgba(255, 240, 213, 0.94));
}

.hk-confession-card--chapel {
  background: linear-gradient(160deg, rgba(245, 241, 255, 0.98), rgba(235, 241, 255, 0.94));
}

.hk-confession-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 0.98;
}

.hk-path-card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1.1rem;
  background: linear-gradient(160deg, color-mix(in srgb, var(--hk-surface) 95%, white 5%), rgba(255, 248, 238, 0.94));
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: calc(var(--hk-radius-card) - 8px);
  box-shadow: var(--hk-shadow);
  position: relative;
  overflow: hidden;
}

.hk-path-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.32rem;
  background: linear-gradient(90deg, var(--hk-accent), var(--hk-accent-warm));
}

.hk-path-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1;
}

.hk-path-card p {
  margin: 0;
}

.hk-path-card .wp-element-button {
  justify-self: start;
}

.hk-path-card__eyebrow {
  margin: 0;
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-trending-tags__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hk-trending-tags__cloud a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-accent) 8%, var(--hk-surface) 92%);
  color: var(--hk-text);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
}

.hk-trending-tags__cloud a small {
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hk-accent-warm) 18%, white 82%);
  color: var(--hk-accent);
  font-size: 0.72rem;
}

.hk-tag-intro__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hk-tag-intro__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-accent-warm) 10%, var(--hk-surface) 90%);
  color: var(--hk-text);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
}

.hk-tag-intro__links small {
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hk-accent) 18%, white 82%);
  color: var(--hk-accent);
  font-size: 0.72rem;
}

.hk-self-test {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: linear-gradient(135deg, rgba(255, 247, 235, 0.95), rgba(239, 244, 255, 0.95));
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: var(--hk-radius-card);
  box-shadow: var(--hk-shadow);
}

.hk-reflex-game {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: linear-gradient(135deg, rgba(245, 240, 255, 0.95), rgba(255, 247, 235, 0.95));
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: var(--hk-radius-card);
  box-shadow: var(--hk-shadow);
}

.hk-reflex-game__arena {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.hk-reflex-game__target {
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hk-accent-warm), var(--hk-accent));
  color: var(--wp--preset--color--paper);
  font-family: var(--wp--preset--font-family--display);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(182, 58, 52, 0.22);
}

.hk-reflex-game__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hk-self-test__options {
  display: grid;
  gap: 0.75rem;
}

.hk-self-test__option {
  display: flex;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-soft);
  background: color-mix(in srgb, var(--hk-surface) 94%, white 6%);
  color: var(--hk-text);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.hk-self-test__option:hover,
.hk-self-test__option:focus-visible {
  border-color: color-mix(in srgb, var(--hk-accent) 60%, var(--hk-line) 40%);
}

.hk-self-test__result {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--hk-accent);
  background: color-mix(in srgb, var(--hk-accent) 7%, white 93%);
  border-radius: var(--hk-radius-soft);
  font-family: var(--wp--preset--font-family--accent-serif);
  font-size: 1.05rem;
}

.hk-self-test__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
}

.hk-inline-reactions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: -0.4rem 0 1.2rem;
  padding: 0.6rem 0.8rem;
  background: color-mix(in srgb, var(--hk-surface) 94%, white 6%);
  border: 1px dashed color-mix(in srgb, var(--hk-line) 78%, transparent 22%);
  border-radius: var(--hk-radius-soft);
}

.hk-inline-reactions__note {
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-inline-reactions__button {
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-accent) 6%, var(--hk-surface) 94%);
  color: var(--hk-text);
  font: inherit;
  cursor: pointer;
}

.hk-category-hero {
  position: relative;
  overflow: hidden;
  --hk-category-accent: var(--hk-accent);
}

.hk-category-hero--image {
  background-position: center center;
  background-size: cover;
}

.hk-category-recommended {
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

.hk-category-hero .hk-kicker,
.hk-category-map .hk-kicker {
  color: var(--hk-category-accent);
}

.hk-category-hero .hk-kicker::before,
.hk-category-map .hk-kicker::before {
  background: linear-gradient(135deg, var(--hk-category-accent), var(--hk-accent-warm));
}

.hk-category-hero__manifesto {
  max-width: 48ch;
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--hk-category-accent);
  background: color-mix(in srgb, var(--hk-category-accent) 7%, white 93%);
  border-radius: var(--hk-radius-soft);
  font-family: var(--wp--preset--font-family--accent-serif);
  font-size: 1.05rem;
}

.hk-category-map {
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

.hk-category-routes {
  margin-bottom: 1.4rem;
}

.hk-category-hero {
  background: linear-gradient(145deg, rgba(255, 250, 243, 0.98), rgba(242, 235, 224, 0.94));
}

.hk-category-map__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hk-category-map__card {
  padding: 1rem 1.05rem;
  background: linear-gradient(160deg, color-mix(in srgb, var(--hk-surface) 95%, white 5%), rgba(255, 248, 238, 0.92));
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: calc(var(--hk-radius-card) - 10px);
  box-shadow: var(--hk-shadow);
}

.hk-category-map__label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-category-map__card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.hk-quick-laughs-grid {
  gap: 1rem;
}

.hk-quick-laughs-grid .wp-block-post-template {
  gap: 1rem;
}

.hk-card--quick {
  padding: 0.85rem;
}

.hk-card--quick .wp-block-post-featured-image {
  margin-bottom: 0.8rem;
}

.hk-card--quick .wp-block-post-featured-image img {
  aspect-ratio: 1 / 1;
}

.hk-card--quick .wp-block-post-title {
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

.hk-card--quick::after {
  content: "Sofort";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.28rem 0.55rem;
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-accent-warm) 82%, white 18%);
  color: var(--wp--preset--color--paper);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(217, 145, 43, 0.22);
}

.hk-front-intro p:last-child,
.hk-page-shell p:last-child,
.hk-404-shell p:last-child {
  margin-bottom: 0;
}

.hk-home-grid,
.hk-archive-grid,
.hk-related-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hk-home-grid .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hk-home-grid .wp-block-post-template > *:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.hk-home-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.hk-home-section-grid__lead,
.hk-home-section-grid__stack {
  display: grid;
  gap: 1rem;
}

.hk-home-grid .wp-block-post-template,
.hk-archive-grid .wp-block-post-template,
.hk-related-grid .wp-block-post-template {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hk-card {
  height: 100%;
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.hk-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--hk-accent), var(--hk-accent-warm));
  opacity: 0.9;
}

.hk-card .wp-block-post-featured-image {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: calc(var(--hk-radius-card) - 10px);
}

.hk-card .wp-block-post-featured-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hk-card:hover .wp-block-post-featured-image img,
.hk-card:focus-within .wp-block-post-featured-image img {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.03);
}

.hk-card .wp-block-post-terms,
.hk-card .wp-block-post-date,
.hk-card .wp-block-post-author-name {
  margin: 0;
}

.hk-card .wp-block-post-terms a,
.hk-post-meta .wp-block-post-terms a,
.hk-post-tags .wp-block-post-terms a,
.hk-theme-worlds a {
  display: inline-flex;
  align-items: center;
  margin: 0 0.45rem 0.45rem 0;
  padding: 0.45rem 0.8rem;
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-accent) 10%, var(--hk-surface) 90%);
  color: var(--hk-accent);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-card .wp-block-post-title,
.hk-archive-shell .wp-block-post-title {
  margin-top: 0.25rem;
  margin-bottom: 0.55rem;
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
  line-height: 0.95;
}

.hk-card .wp-block-post-title a,
.hk-archive-shell .wp-block-post-title a {
  color: var(--hk-text);
  text-decoration: none;
}

.hk-card .wp-block-post-excerpt,
.hk-archive-shell .wp-block-post-excerpt {
  color: color-mix(in srgb, var(--hk-text) 84%, var(--hk-muted) 16%);
}

.hk-card--feature {
  padding: clamp(1.2rem, 2vw, 1.5rem);
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.hk-card--feature .wp-block-post-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.hk-card--feature .wp-block-post-featured-image img {
  aspect-ratio: auto;
}

.hk-card--feature .wp-block-post-excerpt {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hk-card--feature::after {
  content: "Titelpredigt";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.8rem;
  background: var(--hk-accent);
  color: var(--wp--preset--color--paper);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: none;
  border-radius: var(--hk-radius-pill);
  box-shadow: 0 14px 30px rgba(182, 58, 52, 0.2);
}

.hk-card--compact .wp-block-post-title {
  font-size: clamp(1.3rem, 1.9vw, 1.8rem);
}

.hk-card--compact .wp-block-post-excerpt {
  font-size: var(--wp--preset--font-size--body-s);
}

.hk-theme-worlds {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hk-theme-worlds li {
  margin: 0;
}

.hk-sidebar-stack {
  gap: 1.2rem;
  position: static;
  top: auto;
}

.hk-sidebar-module {
  padding: 1.15rem 1.2rem;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(41, 30, 22, 0.06);
}

.hk-sidebar-module::before {
  display: none;
}

.hk-sidebar-module--search {
  background: linear-gradient(135deg, color-mix(in srgb, var(--hk-surface) 92%, white 8%), rgba(255, 245, 230, 0.96));
}

.hk-sidebar-module--latest {
  border-style: dashed;
}

.hk-sidebar-module--worlds {
  background: linear-gradient(160deg, color-mix(in srgb, var(--hk-surface) 94%, white 6%), rgba(229, 241, 253, 0.9));
}

.hk-sidebar-module--tags {
  background: linear-gradient(160deg, color-mix(in srgb, var(--hk-surface) 94%, white 6%), rgba(255, 241, 227, 0.9));
}

.hk-sidebar-module--random .hk-random-box {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hk-sidebar-module h2,
.hk-sidebar-module h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
}

.hk-sidebar-module .wp-block-search__inside-wrapper {
  border-radius: var(--hk-radius-pill);
  border-color: var(--hk-line);
}

.hk-sidebar-module .wp-block-latest-posts,
.hk-sidebar-module .wp-block-categories-list {
  margin: 0;
  padding-left: 1.1rem;
}

.hk-sidebar-module .wp-block-latest-posts li,
.hk-sidebar-module .wp-block-categories-list li {
  margin-bottom: 0.65rem;
}

.hk-sidebar-module .wp-block-tag-cloud a {
  display: inline-flex;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0.4rem 0.75rem;
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-accent-warm) 12%, var(--hk-surface) 88%);
  color: var(--hk-text);
  font-size: var(--wp--preset--font-size--meta-s) !important;
  text-decoration: none;
}

.hk-sidebar-note {
  margin: 0;
  color: var(--hk-muted);
}

.hk-post-layout,
.hk-archive-layout {
  gap: clamp(1.2rem, 2vw, 1.7rem);
  align-items: flex-start;
}

.hk-post-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.85fr);
  gap: clamp(1.2rem, 2vw, 1.8rem);
  align-items: start;
  position: relative;
}

.hk-post-hero .wp-block-post-title {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.hk-post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--hk-radius-card) - 8px);
  background: linear-gradient(140deg, rgba(255, 247, 235, 0.7), rgba(235, 243, 255, 0.18));
  pointer-events: none;
}

.hk-post-hero__copy,
.hk-post-hero__media-wrap {
  position: relative;
  z-index: 1;
}

.hk-post-hero__copy {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.hk-post-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hk-post-hero__badges a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(182, 58, 52, 0.08);
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hk-post-hero__hook {
  margin: 0;
  max-width: 44ch;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--hk-accent);
  background: linear-gradient(135deg, rgba(255, 244, 234, 0.96), rgba(255, 250, 244, 0.98));
  border-radius: var(--hk-radius-soft);
  font-family: var(--wp--preset--font-family--accent-serif);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.hk-post-hero__media-wrap {
  display: grid;
  gap: 0.7rem;
}

.hk-post-subtitle {
  margin: 0;
  max-width: 55ch;
  color: color-mix(in srgb, var(--hk-text) 75%, var(--hk-muted) 25%);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-family: var(--wp--preset--font-family--accent-serif);
  line-height: 1.55;
}

.hk-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  color: var(--hk-muted);
  font-size: var(--wp--preset--font-size--body-s);
}

.hk-post-meta > * {
  margin: 0;
}

.hk-post-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hk-post-hero__tags a {
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 700;
  text-decoration: none;
}

.hk-post-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, rgba(255, 247, 235, 0.95), rgba(237, 244, 255, 0.92));
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: calc(var(--hk-radius-card) - 8px);
}

.hk-post-facts__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.35rem 0.5rem;
  border-left: 1px dashed color-mix(in srgb, var(--hk-line) 76%, transparent 24%);
}

.hk-post-facts__item:first-child {
  border-left: 0;
  padding-left: 0;
}

.hk-post-facts__label {
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-post-facts__item strong {
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
}

.hk-post-media {
  overflow: hidden;
  border-radius: calc(var(--hk-radius-card) - 8px);
  box-shadow: var(--hk-shadow-lift);
  border: 1px solid color-mix(in srgb, var(--hk-line) 86%, transparent 14%);
}

.hk-post-media img {
  display: block;
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: contain;
}

.hk-post-hero__stamp {
  justify-self: end;
  padding: 0.45rem 0.8rem;
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-accent) 85%, white 15%);
  color: var(--wp--preset--color--paper);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(182, 58, 52, 0.22);
}

.hk-reading-flow > * {
  max-width: 68ch;
}

.hk-reading-flow > p:first-child {
  font-size: clamp(1.15rem, 2vw, 1.34rem);
  line-height: 1.72;
  color: color-mix(in srgb, var(--hk-text) 88%, var(--hk-muted) 12%);
}

.hk-reading-flow > p:first-child::first-letter {
  float: left;
  margin-right: 0.16em;
  font-family: var(--wp--preset--font-family--display);
  font-size: 4.1rem;
  line-height: 0.85;
  color: var(--hk-accent);
}

.hk-reading-flow > .wp-block-image,
.hk-reading-flow > .wp-block-embed,
.hk-reading-flow > .wp-block-gallery,
.hk-reading-flow > .wp-block-cover {
  max-width: 100%;
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}

.hk-reading-flow h2,
.hk-reading-flow h3 {
  margin-top: 2.4rem;
}

.hk-reading-flow h2 {
  position: relative;
  padding-top: 0.95rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.hk-reading-flow h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hk-accent), var(--hk-accent-warm));
}

.hk-reading-flow blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(135deg, rgba(255, 245, 231, 0.95), rgba(255, 250, 243, 0.98));
  border-left: 4px solid var(--hk-accent);
  border-radius: var(--hk-radius-soft);
  font-family: var(--wp--preset--font-family--accent-serif);
  font-size: 1.08em;
}

.hk-reading-flow ul,
.hk-reading-flow ol {
  padding-left: 1.35rem;
}

.hk-reading-flow strong {
  color: var(--hk-accent);
}

.hk-reading-flow figure {
  position: relative;
}

.hk-reading-flow figure::after {
  content: "";
  position: absolute;
  inset: auto 1rem -0.8rem auto;
  width: 5rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  filter: blur(10px);
}

.hk-post-tags {
  margin-top: 1.25rem;
}

.hk-follow-up {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  padding-top: clamp(1.2rem, 3vw, 1.6rem);
  border-top: 1px solid var(--hk-line);
}

.hk-aftertaste {
  padding-top: 0.2rem;
}

.hk-follow-up .hk-section-header {
  max-width: 52rem;
}

.hk-post-nav {
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hk-post-nav .wp-block-post-navigation-link {
  padding: 0.9rem 1rem;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-soft);
  background: color-mix(in srgb, var(--hk-surface) 94%, white 6%);
}

.hk-post-nav .wp-block-post-navigation-link a {
  color: var(--hk-text);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
}

.hk-menu-board {
  margin-top: clamp(1.8rem, 4vw, 3rem);
  position: relative;
}

.hk-menu-board::before {
  content: "";
  position: absolute;
  inset: 3.5rem 0 auto 0;
  height: calc(100% - 5rem);
  border-radius: calc(var(--hk-radius-card) + 12px);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.88), rgba(255, 245, 229, 0.78)),
    repeating-linear-gradient(180deg, transparent 0 2.55rem, rgba(151, 112, 71, 0.07) 2.55rem 2.66rem);
  z-index: -1;
  box-shadow: inset 0 0 0 1px rgba(151, 112, 71, 0.08);
}

.hk-random-box,
.hk-reaction-panel,
.hk-category-spotlight,
.hk-interrupt-box,
.hk-poll-box {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: color-mix(in srgb, var(--hk-surface) 92%, white 8%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 88%, transparent 12%);
  border-radius: var(--hk-radius-card);
  box-shadow: var(--hk-shadow);
}

.hk-random-box h2,
.hk-reaction-panel h2,
.hk-category-spotlight h2,
.hk-interrupt-box h2,
.hk-poll-box h2 {
  margin: 0;
}

.hk-interrupt-box--ad {
  background: linear-gradient(135deg, rgba(255, 247, 235, 0.95), rgba(255, 235, 207, 0.95));
}

.hk-interrupt-box--warning {
  background: linear-gradient(135deg, rgba(255, 244, 235, 0.95), rgba(255, 222, 220, 0.95));
}

.hk-interrupt-box--confess {
  background: linear-gradient(135deg, rgba(243, 238, 255, 0.96), rgba(230, 236, 255, 0.96));
}

html.theme-dark .hk-interrupt-box--ad,
html.theme-dark .hk-interrupt-box--warning,
html.theme-dark .hk-interrupt-box--confess {
  background: color-mix(in srgb, var(--hk-surface) 96%, white 4%);
}

.hk-random-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hk-random-refresh {
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-pill);
  background: transparent;
  color: var(--hk-text);
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
  cursor: pointer;
}

.hk-reaction-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hk-reaction-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-soft);
  background: color-mix(in srgb, var(--hk-accent) 6%, var(--hk-surface) 94%);
  color: var(--hk-text);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.hk-reaction-button[disabled] {
  opacity: 0.7;
  cursor: default;
}

.hk-reaction-label {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
}

.hk-reaction-count {
  min-width: 2.1rem;
  padding: 0.3rem 0.55rem;
  border-radius: var(--hk-radius-pill);
  background: color-mix(in srgb, var(--hk-accent-warm) 24%, var(--hk-surface) 76%);
  text-align: center;
  font-family: var(--wp--preset--font-family--display);
  font-weight: 800;
}

.hk-reaction-feedback {
  margin-bottom: 0;
}

.hk-poll-options {
  display: grid;
  gap: 0.75rem;
}

.hk-poll-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-soft);
  background: color-mix(in srgb, var(--hk-accent-warm) 8%, var(--hk-surface) 92%);
  color: var(--hk-text);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.hk-poll-option[disabled] {
  opacity: 0.72;
  cursor: default;
}

.hk-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hk-menu-board__grid {
  gap: 1rem;
}

.hk-menu-board__panel {
  padding: 1.25rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hk-menu-board__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--hk-accent), var(--hk-accent-warm));
}

.hk-menu-board__panel--taproom {
  background: linear-gradient(160deg, rgba(255, 247, 232, 0.98), rgba(255, 239, 214, 0.94));
}

.hk-menu-board__panel--chapel {
  background: linear-gradient(160deg, rgba(246, 241, 255, 0.98), rgba(235, 241, 255, 0.94));
}

.hk-menu-board__panel--afterparty {
  background: linear-gradient(160deg, rgba(255, 245, 238, 0.98), rgba(255, 236, 224, 0.94));
}

.hk-menu-board__panel h2,
.hk-menu-board__panel h3 {
  margin-top: 0;
}

.hk-menu-board__panel .wp-block-search__inside-wrapper {
  border-radius: var(--hk-radius-pill);
  border-color: var(--hk-line);
}

.hk-menu-board__panel .wp-block-latest-posts,
.hk-menu-board__panel .wp-block-categories-list {
  margin: 0;
  padding-left: 1rem;
}

.hk-menu-board__panel .wp-block-latest-posts li,
.hk-menu-board__panel .wp-block-categories-list li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid color-mix(in srgb, var(--hk-line) 70%, transparent 30%);
}

.hk-menu-board__panel .wp-block-latest-posts li:last-child,
.hk-menu-board__panel .wp-block-categories-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.hk-menu-board__closing {
  margin-top: 1.4rem;
  color: color-mix(in srgb, var(--hk-text) 72%, var(--hk-muted) 28%);
}

.hk-menu-board .hk-reflex-game,
.hk-menu-board .hk-random-box {
  margin-top: 1rem;
}

.hk-menu-board .hk-trending-tags {
  margin-top: 1rem;
}

.hk-404-shell .wp-block-search {
  max-width: 28rem;
}

.hk-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hk-animate.hk-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 959px) {
  .hk-brandbar {
    top: 0.5rem;
  }

  .hk-header-actions {
    grid-template-columns: 1fr;
  }

  .hk-header-actions .wp-block-search {
    width: 100%;
    min-width: 0;
  }

  .hk-header-actions .wp-block-navigation {
    justify-self: start;
  }

  .hk-search-overlay__shell {
    margin-top: 1rem;
  }

  .hk-live-search__form {
    flex-direction: column;
  }

  .hk-masthead {
    padding: 1.6rem;
  }

  .hk-post-hero .wp-block-post-title {
    font-size: clamp(2.2rem, 8vw, 4rem);
  }

  .hk-home-grid .wp-block-post-template {
    grid-template-columns: 1fr;
  }

  .hk-home-grid .wp-block-post-template > *:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .hk-home-section-grid {
    grid-template-columns: 1fr;
  }

  .hk-category-map__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hk-pathfinder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hk-confession-wall__grid {
    grid-template-columns: 1fr;
  }

  .hk-post-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hk-post-facts__item:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .hk-reaction-buttons,
  .hk-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .hk-post-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 781px) {
  .wp-site-blocks {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .hk-brand-lockup {
    align-items: flex-start;
  }

  .hk-brandbar {
    padding: 0.85rem;
  }

  .hk-card,
  .hk-sidebar-module,
  .hk-menu-board__panel,
  .hk-front-intro,
  .hk-archive-shell,
  .hk-page-shell,
  .hk-404-shell,
  .hk-post-shell {
    border-radius: 22px;
  }

  .hk-category-map__grid {
    grid-template-columns: 1fr;
  }

  .hk-pathfinder__grid {
    grid-template-columns: 1fr;
  }

  .hk-post-facts {
    grid-template-columns: 1fr;
  }

  .hk-post-facts__item {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
    border-top: 1px dashed color-mix(in srgb, var(--hk-line) 76%, transparent 24%);
    padding-top: 0.8rem;
  }

  .hk-post-facts__item:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .hk-reading-flow > p:first-child::first-letter {
    font-size: 3.2rem;
  }
}

/* Design reset 1.8.0 */

.hk-brandbar {
  padding: 1.35rem 1.5rem 1rem;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(252, 246, 236, 0.96));
  border: 1px solid rgba(185, 155, 121, 0.22);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(52, 38, 24, 0.08);
}

.hk-brandbar__top {
  gap: 1.5rem;
  align-items: center;
}

.hk-brand-lockup {
  gap: 1.15rem;
}

.hk-brand-lockup .wp-block-site-logo img {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(26, 20, 16, 0.14);
}

.hk-brand-copy {
  gap: 0.2rem;
  max-width: 48rem;
}

.hk-brand-overline {
  margin: 0;
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hk-brand-copy .wp-block-site-title {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
}

.hk-brand-description {
  max-width: 56ch;
  margin: 0.2rem 0 0;
  color: color-mix(in srgb, var(--hk-text) 74%, var(--hk-muted) 26%);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.hk-brand-tools {
  gap: 0.9rem;
  align-items: center;
}

.hk-search-launch-wrap .wp-block-button__link,
.hk-search-launch {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.88rem 1.2rem;
  background: #fff;
  color: var(--hk-text);
  border: 1px solid rgba(185, 155, 121, 0.4);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(40, 28, 18, 0.08);
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
}

.hk-search-launch::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  display: inline-block;
  box-sizing: border-box;
}

.hk-search-launch::after {
  content: "";
  width: 0.55rem;
  height: 2px;
  background: currentColor;
  display: inline-block;
  transform: translateX(-1.25rem) translateY(0.45rem) rotate(45deg);
  margin-right: -0.6rem;
}

.hk-brandbar__nav {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(185, 155, 121, 0.24);
}

.hk-brandbar__nav .wp-block-navigation {
  gap: 0.6rem;
  justify-content: center;
}

.hk-brandbar__nav .wp-block-navigation-item__content {
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  color: var(--hk-text);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.hk-brandbar__nav .wp-block-navigation-item__content:hover,
.hk-brandbar__nav .wp-block-navigation-item__content:focus-visible,
.hk-brandbar__nav .current-menu-item > .wp-block-navigation-item__content {
  background: rgba(182, 58, 52, 0.08);
  color: var(--hk-accent);
}

.hk-search-overlay {
  background: rgba(21, 16, 14, 0.7);
  backdrop-filter: blur(10px);
}

.hk-search-overlay__shell {
  width: min(1180px, 100%);
  margin-top: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.99), rgba(249, 244, 236, 0.98));
  box-shadow: 0 40px 90px rgba(10, 8, 7, 0.24);
}

.hk-search-overlay__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.85fr);
  gap: 1.4rem;
  align-items: start;
}

.hk-search-overlay__primary,
.hk-search-overlay__secondary {
  min-width: 0;
}

.hk-search-overlay__secondary {
  display: grid;
  gap: 1rem;
}

.hk-search-overlay .hk-live-search__input {
  min-height: 4rem;
  padding: 1.2rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(185, 155, 121, 0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  font-size: 1.08rem;
}

.hk-search-overlay .hk-live-search__button {
  padding-left: 1.45rem;
  padding-right: 1.45rem;
}

.home .hk-masthead {
  min-height: 30rem;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(92deg, rgba(255, 249, 242, 0.95) 0%, rgba(255, 249, 242, 0.78) 42%, rgba(219, 235, 248, 0.24) 100%),
    url("assets/images/header-al-bundy.jpg") center center / cover no-repeat;
}

.home .hk-masthead .hk-masthead__inner {
  max-width: 40rem;
  padding: 1.2rem 1.3rem;
  background: rgba(255, 251, 245, 0.68);
  border: 1px solid rgba(185, 155, 121, 0.18);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(39, 30, 24, 0.08);
  backdrop-filter: blur(8px);
}

.hk-decree-bar {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 20px;
}

.hk-topic-rail {
  margin-top: 1rem;
}

.hk-topic-rail__inner {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid rgba(185, 155, 121, 0.2);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(50, 38, 26, 0.05);
}

.hk-topic-rail__label {
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hk-topic-rail__links {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.hk-topic-rail__links a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(185, 155, 121, 0.22);
  color: var(--hk-text);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
}

.hk-topic-rail__links a small {
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: rgba(182, 58, 52, 0.08);
  color: var(--hk-accent);
  font-size: 0.72rem;
}

.hk-front-pulse--hero {
  padding: 1.6rem 1.7rem;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(250, 244, 234, 0.96));
}

.hk-home-composition {
  margin-top: 1.4rem;
}

.hk-home-stage {
  display: grid;
  gap: 0.2rem;
}

.hk-home-world__links {
  margin-top: 0.2rem;
}

.hk-home-world__links .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  background: rgba(182, 58, 52, 0.08);
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
  font-weight: 700;
  text-decoration: none;
}

.hk-home-grid .wp-block-post-template {
  gap: 1.25rem;
}

.hk-card {
  padding: 1.3rem;
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(50, 38, 26, 0.07);
}

.hk-card .wp-block-post-featured-image {
  margin-bottom: 1.15rem;
  padding: 0.6rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247, 241, 232, 0.9));
  border: 1px solid rgba(185, 155, 121, 0.18);
  border-radius: 22px;
}

.hk-card .wp-block-post-featured-image img,
.hk-reading-flow .wp-block-image img,
.hk-reading-flow figure img,
.wp-block-post-featured-image img {
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center;
  margin-left: auto;
  margin-right: auto;
}

.hk-card .wp-block-post-title,
.hk-archive-shell .wp-block-post-title {
  margin-top: 0.35rem;
  margin-bottom: 0.8rem;
  line-height: 0.98;
}

.hk-card .wp-block-post-excerpt,
.hk-archive-shell .wp-block-post-excerpt {
  margin-top: 0.4rem;
  font-size: 1rem;
  line-height: 1.7;
}

.hk-card .wp-block-post-excerpt__more-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(182, 58, 52, 0.08);
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hk-card__footer {
  margin-top: auto;
  padding-top: 0.8rem;
}

.hk-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hk-card__cta::after {
  content: "→";
  font-size: 0.95em;
}

.hk-card--quick {
  padding: 1rem;
}

.hk-front-intro,
.hk-page-shell,
.hk-404-shell,
.hk-post-shell,
.hk-archive-shell {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.hk-category-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
}

.hk-category-hero::before {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 9rem;
  height: 9rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(217, 145, 43, 0.12), rgba(182, 58, 52, 0.04));
  transform: rotate(12deg);
}

.hk-category-hero > * {
  position: relative;
  z-index: 1;
}

.hk-category-hero--image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hk-category-hero__manifesto {
  max-width: 52ch;
  margin: 0.2rem 0 0;
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--hk-accent);
  background: rgba(255, 251, 245, 0.74);
  border-radius: 18px;
  font-family: var(--wp--preset--font-family--accent-serif);
  font-size: 1.05rem;
}

.hk-category-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hk-category-hero__actions .wp-element-button,
.hk-category-hero__actions a.wp-element-button,
.hk-category-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  background: var(--hk-accent);
  color: var(--wp--preset--color--paper);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
  font-weight: 700;
  text-decoration: none;
}

.hk-category-hero__actions .hk-button-secondary {
  background: rgba(255,255,255,0.8);
  color: var(--hk-text);
  border: 1px solid rgba(185, 155, 121, 0.26);
}

.hk-category-map__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hk-category-map__card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(250, 244, 236, 0.96));
  border: 1px solid rgba(185, 155, 121, 0.18);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(50, 38, 26, 0.05);
}

.hk-category-map__label {
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-category-map__value {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.hk-sidebar-stack {
  display: grid;
  gap: 1rem;
}

.hk-sidebar-module {
  padding: 1.25rem 1.3rem;
  border-radius: 24px;
}

.hk-sidebar-module .hk-kicker {
  margin-bottom: 0.55rem;
}

.hk-sidebar-module h3 {
  margin-bottom: 0.7rem;
}

.hk-sidebar-module .wp-block-latest-posts,
.hk-sidebar-module .wp-block-categories-list {
  padding-left: 0;
  list-style: none;
}

.hk-sidebar-module .wp-block-latest-posts li,
.hk-sidebar-module .wp-block-categories-list li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(185, 155, 121, 0.18);
}

.hk-sidebar-module .wp-block-latest-posts li:last-child,
.hk-sidebar-module .wp-block-categories-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.hk-menu-board {
  margin-top: 2.4rem;
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.98), rgba(248, 240, 228, 0.96));
  border: 1px solid rgba(185, 155, 121, 0.24);
  border-radius: 30px;
  box-shadow: 0 20px 46px rgba(50, 38, 26, 0.08);
}

.hk-menu-board::before {
  inset: 1rem;
  height: auto;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.78), rgba(255, 245, 229, 0.66)),
    repeating-linear-gradient(180deg, transparent 0 2.8rem, rgba(151, 112, 71, 0.06) 2.8rem 2.92rem);
}

.hk-menu-board__grid {
  gap: 1.2rem;
}

.hk-menu-board__panel {
  padding: 1.3rem 1.3rem 1.4rem;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(41, 30, 22, 0.06);
}

.hk-menu-board__panel .hk-kicker {
  margin-bottom: 0.5rem;
}

.hk-menu-board__panel h3 {
  margin-bottom: 0.7rem;
}

.hk-menu-link {
  width: 100%;
}

.hk-menu-link .wp-block-button__link {
  width: 100%;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--hk-text);
  border: 1px solid rgba(185, 155, 121, 0.3);
  box-shadow: none;
  text-align: left;
}

.hk-menu-link.is-style-outline .wp-block-button__link {
  background: transparent;
}

.hk-menu-board__panel .wp-block-latest-posts {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.hk-menu-board__panel .wp-block-latest-posts li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(151, 112, 71, 0.28);
}

.hk-menu-board__panel .wp-block-latest-posts li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.hk-menu-board__note,
.hk-menu-board__closing {
  color: color-mix(in srgb, var(--hk-text) 74%, var(--hk-muted) 26%);
}

@media (max-width: 959px) {
  .hk-brandbar__top {
    justify-content: flex-start;
  }

  .hk-brand-tools {
    width: 100%;
    justify-content: flex-start;
  }

  .hk-search-overlay__grid {
    grid-template-columns: 1fr;
  }

  .home .hk-masthead {
    min-height: 22rem;
    background-position: center center;
  }

  .hk-category-map__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 781px) {
  .hk-brandbar {
    padding: 1rem 1rem 0.9rem;
  }

  .hk-brand-lockup {
    flex-wrap: wrap;
  }

  .hk-brand-copy .wp-block-site-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .home .hk-masthead {
    min-height: 18rem;
    padding: 1.1rem;
  }

  .home .hk-masthead .hk-masthead__inner {
    padding: 0.95rem 1rem;
  }

  .hk-menu-board {
    padding: 1.1rem;
  }

  .hk-post-hero__badges,
  .hk-post-hero__tags,
  .hk-category-hero__actions {
    gap: 0.5rem;
  }

  .hk-category-map__grid {
    grid-template-columns: 1fr;
  }
}

.hk-post-shell,
.hk-archive-shell {
  overflow: hidden;
}

.hk-post-intro-band {
  margin-top: 1rem;
  margin-bottom: 1.6rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.94), rgba(252, 246, 236, 0.98));
  border: 1px solid rgba(185, 155, 121, 0.18);
  border-radius: 22px;
}

.hk-footer-service {
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(151, 112, 71, 0.18);
}

.hk-footer-service p {
  margin: 0;
}

.hk-footer-service a {
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
  font-weight: 700;
  text-decoration: none;
}

.hk-post-intro-band p:last-child {
  margin-bottom: 0;
  max-width: 62ch;
}

.hk-archive-shell > .hk-category-hub-intro,
.hk-archive-shell > .hk-tag-intro,
.hk-archive-shell > .hk-archive-guide {
  margin-bottom: 1.4rem;
}

.hk-archive-shell > .hk-category-map,
.hk-archive-shell > .hk-category-routes,
.hk-archive-shell > .hk-category-recommended,
.hk-archive-shell > .hk-category-spotlight,
.hk-archive-shell > .hk-tag-routes {
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

.hk-archive-grid {
  margin-top: 1.2rem;
}

.hk-archive-grid .wp-block-post-template {
  gap: 1.25rem;
}

.hk-archive-tail {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(185, 155, 121, 0.2);
}

.hk-related-grid {
  margin-top: 1.3rem;
}

.hk-post-nav {
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}

.hk-follow-up > .hk-reaction-panel,
.hk-follow-up > .hk-poll-box,
.hk-follow-up > .hk-post-aftertaste {
  margin-top: 1.2rem;
}

html.theme-dark .hk-brandbar,
html.theme-dark .hk-front-pulse--hero,
html.theme-dark .home .hk-masthead .hk-masthead__inner,
html.theme-dark .hk-post-intro-band,
html.theme-dark .hk-menu-board,
html.theme-dark .hk-category-map__card,
html.theme-dark .hk-category-hero__manifesto {
  background: color-mix(in srgb, var(--hk-surface) 96%, white 4%);
}

html.theme-dark .home .hk-masthead {
  background:
    linear-gradient(94deg, rgba(17, 16, 26, 0.92) 0%, rgba(17, 16, 26, 0.66) 42%, rgba(37, 30, 49, 0.24) 100%),
    url("assets/images/header-al-bundy.jpg") center center / cover no-repeat;
}

.hk-brandbar {
  padding: 1.15rem 1.35rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(249, 243, 234, 0.92));
}

.hk-brandbar__top {
  align-items: flex-start;
}

.hk-brand-lockup .wp-block-site-logo img {
  width: clamp(84px, 8vw, 124px);
  height: auto;
  border-radius: 18px;
}

.hk-brand-copy .wp-block-site-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.hk-brand-description {
  max-width: 38rem;
}

.hk-brand-tools .wp-block-buttons {
  gap: 0.6rem;
}

.hk-search-launch-wrap .wp-block-button__link {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.home .hk-masthead {
  min-height: 33rem;
  padding: clamp(2.2rem, 4vw, 3.4rem);
  background:
    linear-gradient(94deg, rgba(255, 249, 242, 0.96) 0%, rgba(255, 249, 242, 0.8) 38%, rgba(219, 235, 248, 0.14) 100%),
    url("assets/images/header-al-bundy.jpg") center center / cover no-repeat;
}

.home .hk-masthead .hk-masthead__inner {
  max-width: 41rem;
  padding: 1.35rem 1.45rem;
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 20px 48px rgba(39, 30, 24, 0.1);
}

.hk-masthead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.hk-button-secondary,
.hk-button-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
}

.hk-button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(185, 155, 121, 0.32);
  color: var(--hk-text);
}

.hk-button-tertiary {
  background: transparent;
  border: 1px dashed rgba(182, 58, 52, 0.4);
  color: var(--hk-accent);
}

.hk-front-pulse--hero {
  padding: 1.8rem 1.9rem;
  border-radius: 28px;
}

.hk-home-grid .hk-card,
.hk-quick-laughs-grid .hk-card {
  overflow: hidden;
}

.hk-home-grid .hk-card,
.hk-quick-laughs-grid .hk-card,
.hk-card--related {
  padding: 1rem;
}

.hk-home-grid .wp-block-post-featured-image,
.hk-quick-laughs-grid .wp-block-post-featured-image,
.hk-card--related .wp-block-post-featured-image {
  margin: -1rem -1rem 0.95rem;
}

.hk-home-grid .wp-block-post-featured-image img,
.hk-quick-laughs-grid .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hk-home-grid .wp-block-post-terms,
.hk-archive-grid .wp-block-post-terms {
  margin-bottom: 0.35rem;
}

html.theme-dark .hk-brandbar,
html.theme-dark .home .hk-masthead .hk-masthead__inner,
html.theme-dark .hk-search-launch-wrap .wp-block-button__link,
html.theme-dark .hk-button-secondary {
  background: color-mix(in srgb, var(--hk-surface) 94%, white 6%);
}

@media (max-width: 781px) {
  .home .hk-masthead {
    min-height: 20rem;
    background-position: center center;
  }

  .home .hk-masthead .hk-masthead__inner {
    padding: 1rem 1rem 1.1rem;
  }

  .hk-masthead__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hk-brand-copy .wp-block-site-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }
}

.hk-home-grid {
  gap: 1.15rem;
}

.hk-home-grid .wp-block-post-template {
  display: grid;
  gap: 1.15rem;
}

.hk-home-grid .wp-block-post-template > *:first-child {
  grid-column: 1 / -1;
}

.hk-home-grid .wp-block-post-template > *:first-child .wp-block-post-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 0.98;
}

.hk-home-grid .wp-block-post-template > *:not(:first-child) .wp-block-post-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.06;
}

.hk-home-grid .wp-block-post-template > *:first-child .wp-block-post-excerpt {
  font-size: 1.04rem;
}

.hk-home-grid .wp-block-post-template > *:first-child .wp-block-post-featured-image {
  margin-bottom: 1rem;
}

.hk-home-grid .wp-block-post-template > *:not(:first-child) .wp-block-post-featured-image {
  margin-bottom: 0.75rem;
}

.hk-quick-laughs-grid .wp-block-post-title {
  font-size: 1.05rem;
  line-height: 1.08;
}

.hk-sidebar-stack {
  display: grid;
  gap: 1rem;
}

.hk-sidebar-module {
  padding: 1.05rem 1rem;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(249, 244, 236, 0.94));
}

.hk-sidebar-module h3 {
  margin: 0 0 0.55rem;
  font-size: 1.28rem;
}

.hk-sidebar-module .wp-block-latest-posts,
.hk-sidebar-module .wp-block-categories-list,
.hk-sidebar-module .wp-block-tag-cloud {
  margin: 0;
  padding-left: 1rem;
}

.hk-sidebar-module .wp-block-latest-posts li,
.hk-sidebar-module .wp-block-categories-list li {
  margin-bottom: 0.55rem;
}

.hk-sidebar-module--search {
  border-color: rgba(182, 58, 52, 0.2);
}

.hk-sidebar-module--discover,
.hk-sidebar-module--random {
  box-shadow: 0 10px 26px rgba(50, 38, 26, 0.05);
}

.hk-archive-grid .hk-card,
.hk-related-posts .hk-card {
  padding: 0.95rem;
}

.hk-archive-grid .wp-block-post-title,
.hk-related-posts .wp-block-post-title,
.hk-related-posts h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.hk-archive-grid .wp-block-post-excerpt,
.hk-related-posts p {
  font-size: 0.96rem;
}

.hk-menu-board {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.hk-menu-board__closing {
  margin-top: 1.2rem;
}

html.theme-dark .hk-sidebar-module {
  background: color-mix(in srgb, var(--hk-surface) 95%, white 5%);
}

@media (max-width: 900px) {
  .hk-home-grid .wp-block-post-template {
    grid-template-columns: 1fr;
  }
}

.hk-search-tool {
  display: grid;
  gap: 1.4rem;
}

.hk-search-tool__hero {
  padding: 0.2rem 0 0.6rem;
}

.hk-search-tool__results {
  margin-top: 0;
}

.hk-search-tool__assist {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
}

.hk-search-command {
  display: grid;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--hk-radius-card);
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.96), rgba(249, 243, 234, 0.92));
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  box-shadow: var(--hk-shadow);
}

.hk-search-command .hk-pathfinder__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hk-search-command .hk-footer-links--actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hk-search-command .hk-footer-links--actions a {
  display: grid;
}

.hk-menu-board__panel + .hk-footer-courses--nav {
  margin-top: 1rem;
}

.hk-footer-courses--nav .hk-footer-course {
  background: transparent;
  box-shadow: none;
  border-style: dashed;
}

.hk-footer-courses--nav .hk-footer-course::after {
  opacity: 0.28;
}

.hk-topic-rail,
.hk-decree-bar {
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .hk-search-command .hk-pathfinder__grid,
  .hk-search-command .hk-footer-links--actions {
    grid-template-columns: 1fr;
  }
}

.hk-post-layout,
.hk-archive-layout {
  display: grid;
  gap: 1.4rem;
}

.hk-post-support {
  margin-top: 1.4rem;
}

.hk-single-pathways,
.hk-archive-hierarchy,
.hk-tag-hierarchy,
.hk-category-routes,
.hk-category-map,
.hk-category-recommended,
.hk-category-spotlight,
.hk-post-aftertaste,
.hk-follow-up {
  margin-top: 1.35rem;
}

.hk-follow-up {
  padding-top: 1.1rem;
  border-top: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
}

.hk-category-hero__meta {
  margin: 0;
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hk-pathfinder__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hk-path-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.05rem 1rem;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(249, 244, 236, 0.94));
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  border-radius: var(--hk-radius-card);
  box-shadow: 0 10px 24px rgba(49, 38, 27, 0.06);
}

.hk-path-card h3,
.hk-path-card p {
  margin: 0;
}

.hk-path-card .wp-element-button {
  justify-self: start;
}

.hk-post-shell > .hk-post-support .hk-sidebar-stack,
.hk-archive-shell > .hk-post-support .hk-sidebar-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .hk-pathfinder__grid,
  .hk-post-shell > .hk-post-support .hk-sidebar-stack,
  .hk-archive-shell > .hk-post-support .hk-sidebar-stack {
    grid-template-columns: 1fr;
  }
}

html.theme-dark .hk-path-card {
  background: color-mix(in srgb, var(--hk-surface) 96%, white 4%);
}

.hk-story-bridge {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  border-radius: calc(var(--hk-radius-card) - 8px);
  background: linear-gradient(135deg, rgba(255, 249, 241, 0.96), rgba(247, 241, 232, 0.9));
}

.hk-story-bridge > * {
  margin: 0;
}

.hk-story-bridge p {
  max-width: 70ch;
}

.hk-story-bridge--single {
  border-left: 4px solid color-mix(in srgb, var(--hk-accent) 72%, var(--hk-accent-warm) 28%);
}

.hk-story-bridge--hub {
  border-left: 4px solid color-mix(in srgb, var(--hk-good) 62%, var(--hk-accent) 38%);
  background: linear-gradient(135deg, rgba(244, 251, 245, 0.98), rgba(247, 242, 232, 0.9));
}

.hk-story-bridge--archive {
  border-left: 4px solid color-mix(in srgb, var(--hk-accent-warm) 64%, var(--hk-accent) 36%);
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.98), rgba(248, 241, 229, 0.92));
}

.hk-story-bridge--tag {
  border-left: 4px solid color-mix(in srgb, var(--hk-accent) 52%, var(--hk-text) 48%);
  background: linear-gradient(135deg, rgba(247, 248, 251, 0.96), rgba(245, 239, 233, 0.92));
}

.hk-story-bridge--compact {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--hk-surface) 94%, white 6%);
}

.hk-section-header--compact {
  margin-bottom: 0.95rem;
}

.hk-section-header--compact h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.hk-follow-up {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  padding: clamp(1.35rem, 3vw, 1.8rem);
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  border-radius: var(--hk-radius-card);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(248, 242, 233, 0.92));
}

.hk-follow-up > * + * {
  margin-top: 1.2rem;
}

.hk-category-hero {
  gap: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 251, 245, 0.98), rgba(241, 235, 225, 0.94));
}

.hk-category-hero__route {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hk-category-hero__route span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hk-category-accent, var(--hk-accent)) 10%, white 90%);
  border: 1px solid color-mix(in srgb, var(--hk-category-accent, var(--hk-accent)) 22%, transparent 78%);
  color: color-mix(in srgb, var(--hk-text) 90%, var(--hk-muted) 10%);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hk-category-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hk-category-hero__stat {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
}

.hk-category-hero__stat strong {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1;
}

.hk-category-hero__stat span {
  color: var(--hk-muted);
  font-size: var(--wp--preset--font-size--body-s);
}

.hk-pathfinder__grid {
  align-items: stretch;
}

.hk-path-card {
  gap: 0.8rem;
  min-height: 100%;
  align-content: start;
}

.hk-path-card__meta {
  margin: -0.2rem 0 0;
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hk-path-card .wp-element-button {
  margin-top: auto;
}

.hk-path-card--hub::before,
.hk-path-card--tag::before,
.hk-path-card--current::before {
  height: 0.36rem;
}

.hk-path-card--hub::before {
  background: linear-gradient(90deg, var(--hk-good), var(--hk-accent));
}

.hk-path-card--tag::before {
  background: linear-gradient(90deg, color-mix(in srgb, var(--hk-accent) 55%, var(--hk-text) 45%), var(--hk-accent-warm));
}

.hk-path-card--current::before {
  background: linear-gradient(90deg, var(--hk-accent-warm), var(--hk-accent));
}

.hk-category-recommended .hk-card--editorial {
  display: grid;
  gap: 0.75rem;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(246, 240, 232, 0.94));
}

.hk-category-recommended .hk-card--editorial .wp-block-post-title {
  margin-bottom: 0.2rem;
}

.hk-category-recommended .hk-card--editorial .hk-card__footer {
  padding-top: 0.3rem;
  border-top: 1px solid color-mix(in srgb, var(--hk-line) 78%, transparent 22%);
}

.hk-archive-tail {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
}

html.theme-dark .hk-story-bridge,
html.theme-dark .hk-follow-up,
html.theme-dark .hk-category-hero__stat,
html.theme-dark .hk-story-bridge--compact {
  background: color-mix(in srgb, var(--hk-surface) 95%, white 5%);
}

@media (max-width: 900px) {
  .hk-category-hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 781px) {
  .hk-follow-up {
    padding: 1rem;
  }

  .hk-story-bridge {
    padding: 0.9rem 0.95rem;
  }

  .hk-category-hero__route {
    gap: 0.5rem;
  }

  .hk-category-hero__route span {
    width: 100%;
    justify-content: center;
  }
}

.hk-search-tool__hero-copy {
  gap: 0.85rem;
}

.hk-search-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hk-search-status span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hk-surface) 92%, white 8%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
  color: color-mix(in srgb, var(--hk-text) 88%, var(--hk-muted) 12%);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
  font-weight: 700;
}

.hk-search-briefing {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 0.9rem;
}

.hk-search-briefing__panel {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 22px;
  background: color-mix(in srgb, var(--hk-surface) 94%, white 6%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
}

.hk-search-briefing__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--hk-muted);
}

.hk-search-briefing__list li + li {
  margin-top: 0.45rem;
}

.hk-search-briefing__feature {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(249, 244, 236, 0.94));
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  color: var(--hk-text);
  text-decoration: none;
}

.hk-search-briefing__feature strong {
  font-family: var(--wp--preset--font-family--display);
}

.hk-search-briefing__feature span {
  color: var(--hk-muted);
  font-size: var(--wp--preset--font-size--body-s);
}

.hk-sidebar-module--concierge {
  background:
    linear-gradient(155deg, rgba(255, 251, 246, 0.98), rgba(247, 241, 232, 0.94)),
    radial-gradient(circle at top right, rgba(217, 145, 43, 0.14), transparent 36%);
  border-color: color-mix(in srgb, var(--hk-accent-warm) 26%, var(--hk-line) 74%);
}

.hk-sidebar-concierge {
  display: grid;
  gap: 0.95rem;
}

.hk-sidebar-concierge__grid {
  display: grid;
  gap: 0.8rem;
}

.hk-sidebar-concierge__link {
  display: grid;
  gap: 0.28rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid color-mix(in srgb, var(--hk-line) 80%, transparent 20%);
  color: var(--hk-text);
  text-decoration: none;
}

.hk-sidebar-concierge__link strong {
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
}

.hk-sidebar-concierge__link span {
  color: var(--hk-muted);
  font-size: var(--wp--preset--font-size--body-s);
  line-height: 1.55;
}

.hk-sidebar-concierge__link:hover,
.hk-sidebar-concierge__link:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--hk-shadow-lift);
}

.hk-footer-courses {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hk-footer-course--intro {
  background:
    linear-gradient(155deg, rgba(255, 251, 246, 0.98), rgba(247, 240, 229, 0.94)),
    radial-gradient(circle at top right, rgba(217, 145, 43, 0.14), transparent 40%);
}

.hk-footer-course--intro p:last-of-type {
  max-width: 42ch;
}

.hk-footer-meter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.hk-footer-meter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--body-s);
  font-weight: 700;
}

.hk-footer-service {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hk-footer-service p {
  flex: 1 1 18rem;
}

.hk-menu-board > .hk-section-header > .hk-footer-courses {
  margin-top: 0.2rem;
}

html.theme-dark .hk-search-status span,
html.theme-dark .hk-search-briefing__panel,
html.theme-dark .hk-search-briefing__feature,
html.theme-dark .hk-sidebar-module--concierge,
html.theme-dark .hk-sidebar-concierge__link,
html.theme-dark .hk-footer-course--intro,
html.theme-dark .hk-footer-meter span {
  background: color-mix(in srgb, var(--hk-surface) 95%, white 5%);
}

@media (max-width: 900px) {
  .hk-search-briefing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 781px) {
  .hk-search-status {
    gap: 0.5rem;
  }

  .hk-footer-meter {
    grid-template-columns: 1fr;
  }

  .hk-footer-service {
    flex-direction: column;
    align-items: stretch;
  }
}

.hk-brandbar {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 1.4rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 242, 232, 0.95));
  border: 1px solid rgba(185, 155, 121, 0.22);
  border-radius: 30px;
  box-shadow:
    0 22px 48px rgba(52, 38, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hk-brandbar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--hk-accent), var(--hk-accent-warm), rgba(96, 172, 230, 0.9));
  opacity: 0.9;
}

.hk-brandbar__top {
  gap: 1.35rem;
  align-items: center;
}

.hk-brand-lockup {
  flex: 1 1 34rem;
  align-items: center;
}

.hk-brand-copy {
  gap: 0.35rem;
}

.hk-brand-overline {
  letter-spacing: 0.16em;
}

.hk-brand-copy .wp-block-site-title {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

.hk-brand-description {
  max-width: 42rem;
  color: color-mix(in srgb, var(--hk-text) 78%, var(--hk-muted) 22%);
}

.hk-brand-tools {
  flex: 0 1 auto;
  gap: 0.9rem;
  align-items: center;
}

.hk-brand-edition {
  margin: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(185, 155, 121, 0.2);
  color: color-mix(in srgb, var(--hk-text) 72%, var(--hk-muted) 28%);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hk-search-launch-wrap .wp-block-button__link,
.hk-search-launch {
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(185, 155, 121, 0.28);
  box-shadow: 0 10px 26px rgba(30, 23, 17, 0.06);
  color: var(--hk-text);
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
  text-decoration: none;
}

.hk-search-launch::before {
  content: "\2315";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(182, 58, 52, 0.08);
  color: var(--hk-accent);
  font-size: 0.95rem;
}

.hk-search-launch::after {
  content: "/";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  margin-left: 0.3rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(61, 47, 33, 0.06);
  color: color-mix(in srgb, var(--hk-text) 65%, var(--hk-muted) 35%);
  font-size: 0.78rem;
  font-weight: 800;
}

.hk-brandbar__nav {
  margin-top: 1.05rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(185, 155, 121, 0.24);
}

.hk-brandbar__nav .wp-block-navigation {
  gap: 0.45rem 0.6rem;
  justify-content: flex-start;
}

.hk-brandbar__nav .wp-block-navigation-item {
  margin: 0;
}

.hk-brandbar__nav .wp-block-navigation-item__content {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: color-mix(in srgb, var(--hk-text) 90%, var(--hk-muted) 10%);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hk-brandbar__nav .wp-block-navigation-item__content:hover,
.hk-brandbar__nav .wp-block-navigation-item__content:focus-visible,
.hk-brandbar__nav .current-menu-item > .wp-block-navigation-item__content,
.hk-brandbar__nav .current-menu-ancestor > .wp-block-navigation-item__content {
  background: rgba(182, 58, 52, 0.08);
  color: var(--hk-accent);
  box-shadow: inset 0 0 0 1px rgba(182, 58, 52, 0.12);
}

.hk-brandbar__nav .has-child .wp-block-navigation__submenu-container {
  border: 1px solid rgba(185, 155, 121, 0.18);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 22px 45px rgba(25, 20, 16, 0.12);
}

.hk-search-overlay {
  align-items: flex-start;
  padding: clamp(0.9rem, 3vw, 1.75rem);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 30%),
    rgba(19, 14, 12, 0.76);
  backdrop-filter: blur(18px);
}

.hk-search-overlay__shell {
  width: min(1220px, 100%);
  margin-top: clamp(1rem, 4vw, 2.75rem);
  padding: clamp(1.25rem, 3vw, 2.4rem);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.99), rgba(248, 242, 232, 0.98));
  border: 1px solid rgba(185, 155, 121, 0.18);
  box-shadow: 0 42px 90px rgba(10, 8, 7, 0.28);
}

.hk-search-overlay__mast {
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hk-search-overlay__brand,
.hk-search-overlay__hint {
  margin: 0;
}

.hk-search-overlay__brand {
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hk-search-overlay__hint {
  color: var(--hk-muted);
  font-size: 0.92rem;
}

.hk-search-overlay__hint code {
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(61, 47, 33, 0.08);
  font-size: 0.82em;
}

.hk-search-overlay .hk-section-header {
  gap: 0.85rem;
  margin-bottom: 1.3rem;
}

.hk-search-overlay .hk-section-header h2 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hk-search-overlay .hk-section-header > p:last-child {
  max-width: 58ch;
  font-size: 1.02rem;
}

.hk-search-overlay__grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.82fr);
  gap: 1.5rem;
}

.hk-search-overlay__primary,
.hk-search-overlay__secondary {
  min-width: 0;
}

.hk-search-overlay__secondary {
  gap: 1rem;
}

.hk-search-overlay__sidecard {
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(185, 155, 121, 0.18);
}

.hk-search-overlay__sidecard p {
  margin: 0;
}

.hk-search-overlay__signals {
  gap: 0.65rem;
  margin-top: 1rem;
}

.hk-search-overlay__signal {
  margin: 0;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(185, 155, 121, 0.16);
  color: color-mix(in srgb, var(--hk-text) 76%, var(--hk-muted) 24%);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-search-close-wrap .wp-block-button__link {
  min-height: 2.85rem;
  border-radius: 999px;
  border-color: rgba(185, 155, 121, 0.3);
  background: rgba(255, 255, 255, 0.66);
  color: var(--hk-text);
}

.hk-live-search {
  position: relative;
}

.hk-search-overlay .hk-live-search {
  padding: 1rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 245, 237, 0.82));
  border: 1px solid rgba(185, 155, 121, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hk-live-search__form {
  gap: 0.8rem;
}

.hk-search-overlay .hk-live-search__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.hk-live-search__input {
  min-height: 3.35rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(185, 155, 121, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hk-live-search__input:focus-visible {
  outline: none;
  border-color: rgba(182, 58, 52, 0.4);
  box-shadow:
    0 0 0 4px rgba(182, 58, 52, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hk-search-overlay .hk-live-search__input {
  min-height: 4.35rem;
  padding: 1.25rem 1.4rem;
  border-radius: 24px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-family: var(--wp--preset--font-family--display);
}

.hk-live-search__button {
  min-height: 3.35rem;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 12px 28px rgba(182, 58, 52, 0.18);
}

.hk-search-overlay .hk-live-search__button {
  min-width: 10rem;
  min-height: 4.35rem;
  padding: 1rem 1.5rem;
  border-radius: 24px;
}

.hk-live-search__results {
  padding: 0.75rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(185, 155, 121, 0.18);
  box-shadow: 0 24px 50px rgba(22, 18, 14, 0.12);
}

.hk-search-overlay .hk-live-search__results {
  margin-top: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hk-live-search__item {
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
}

.hk-live-search__item:hover,
.hk-live-search__item:focus-visible {
  background: rgba(182, 58, 52, 0.06);
}

.hk-live-search__type {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.hk-live-search__title {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.hk-live-search__snippet {
  max-width: 62ch;
  line-height: 1.55;
}

.hk-live-search[data-hk-search-state="loading"] .hk-live-search__results {
  border-color: rgba(182, 58, 52, 0.16);
}

.hk-live-search__empty {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(246, 241, 232, 0.7);
}

.hk-masthead {
  border-radius: 32px;
  box-shadow:
    0 24px 54px rgba(31, 23, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home .hk-masthead .hk-masthead__inner {
  max-width: 42rem;
  padding: 1.3rem 1.45rem;
  border-radius: 28px;
  backdrop-filter: blur(10px);
}

.hk-masthead__actions {
  gap: 0.8rem;
}

.hk-masthead__utilities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 0.4rem;
}

.hk-masthead__modes {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.62);
  border: 1px solid rgba(185, 155, 121, 0.18);
}

.hk-masthead__modes-label {
  padding-left: 0.35rem;
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hk-mode-button {
  min-height: 2.4rem;
  padding: 0.58rem 0.92rem;
  border: 1px solid transparent;
  background: transparent;
  color: color-mix(in srgb, var(--hk-text) 84%, var(--hk-muted) 16%);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hk-mode-button[aria-pressed="true"] {
  background: rgba(182, 58, 52, 0.1);
  border-color: rgba(182, 58, 52, 0.14);
  color: var(--hk-accent);
  box-shadow: none;
}

.hk-mode-button--promille[aria-pressed="true"] {
  background: rgba(217, 145, 43, 0.12);
  border-color: rgba(217, 145, 43, 0.2);
  color: color-mix(in srgb, var(--hk-accent-warm) 82%, var(--hk-text) 18%);
}

.hk-mode-status {
  margin-top: 0;
  padding: 0.35rem 0;
  background: transparent;
  color: color-mix(in srgb, var(--hk-text) 68%, var(--hk-muted) 32%);
  font-size: 0.9rem;
}

html.theme-dark .hk-brandbar,
html.theme-dark .hk-search-overlay__shell,
html.theme-dark .hk-search-overlay .hk-live-search,
html.theme-dark .home .hk-masthead .hk-masthead__inner {
  background: color-mix(in srgb, var(--hk-surface) 95%, white 5%);
}

html.theme-dark .hk-brand-edition,
html.theme-dark .hk-search-launch-wrap .wp-block-button__link,
html.theme-dark .hk-search-close-wrap .wp-block-button__link,
html.theme-dark .hk-search-overlay__sidecard,
html.theme-dark .hk-search-overlay__signal,
html.theme-dark .hk-live-search__input,
html.theme-dark .hk-live-search__results,
html.theme-dark .hk-masthead__modes {
  background: color-mix(in srgb, var(--hk-surface) 92%, white 8%);
}

html.theme-dark .hk-brandbar__nav .has-child .wp-block-navigation__submenu-container {
  background: color-mix(in srgb, var(--hk-surface) 96%, white 4%);
}

@media (max-width: 959px) {
  .hk-brand-tools {
    width: 100%;
    justify-content: space-between;
  }

  .hk-brandbar__nav .wp-block-navigation {
    justify-content: flex-start;
  }

  .hk-search-overlay .hk-section-header h2 {
    max-width: 100%;
  }
}

@media (max-width: 781px) {
  .hk-brandbar {
    padding: 1rem 1rem 0.9rem;
  }

  .hk-brand-tools {
    gap: 0.75rem;
  }

  .hk-brand-edition {
    width: 100%;
    text-align: center;
  }

  .hk-search-launch-wrap,
  .hk-search-launch-wrap .wp-block-button__link {
    width: 100%;
  }

  .hk-search-launch-wrap .wp-block-button__link {
    justify-content: center;
  }

  .hk-brandbar__nav .wp-block-navigation-item__content {
    width: 100%;
    justify-content: center;
  }

  .hk-search-overlay__shell {
    padding: 1rem;
    border-radius: 26px;
  }

  .hk-search-overlay .hk-live-search {
    padding: 0.8rem;
  }

  .hk-search-overlay .hk-live-search__form {
    grid-template-columns: 1fr;
  }

  .hk-search-overlay .hk-live-search__button {
    width: 100%;
    min-width: 0;
  }

  .hk-masthead__utilities {
    align-items: flex-start;
  }

  .hk-masthead__modes {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Home refresh: clearer lead hierarchy and quieter editorial cards */
.home .hk-shell {
  margin-top: clamp(1.2rem, 3vw, 2.4rem);
}

.home .hk-home-stage {
  gap: clamp(1.2rem, 3vw, 2rem);
}

.home .hk-front-pulse--hero.hk-home-lead {
  gap: clamp(1.1rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(248, 241, 232, 0.96)),
    radial-gradient(circle at top right, rgba(182, 58, 52, 0.06), transparent 34%);
  border-color: color-mix(in srgb, var(--hk-line) 78%, rgba(182, 58, 52, 0.18) 22%);
  box-shadow: 0 20px 48px rgba(49, 38, 27, 0.08);
}

.hk-home-lead__main {
  gap: 0.9rem;
  margin-bottom: 0;
}

.hk-home-lead__main h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hk-home-lead__dek {
  max-width: 58ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--hk-text) 86%, var(--hk-muted) 14%);
}

.hk-home-lead__note {
  margin: 0;
  max-width: 60ch;
  color: var(--hk-muted);
  font-size: var(--wp--preset--font-size--body-s);
}

.hk-home-lead__rail {
  display: grid;
  gap: 0.9rem;
  height: 100%;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  border-radius: 24px;
}

.hk-home-lead__rail-label {
  margin: 0;
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hk-home-lead__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.75rem;
  color: color-mix(in srgb, var(--hk-text) 88%, var(--hk-muted) 12%);
  font-size: 0.98rem;
  line-height: 1.6;
}

.home .hk-front-pulse .wp-block-buttons {
  margin-top: 0.5rem;
}

.home .hk-front-pulse .wp-block-button__link {
  min-height: 3rem;
  padding: 0.82rem 1.15rem;
}

.hk-home-section-headline {
  max-width: 54rem;
}

.hk-home-world {
  display: grid;
  gap: 1.25rem;
}

.hk-home-world__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.hk-home-world__intro .hk-section-header {
  margin-bottom: 0;
}

.hk-home-world__aside {
  display: grid;
  gap: 0.75rem;
  justify-items: end;
}

.hk-home-world__count {
  margin: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hk-surface) 84%, white 16%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home .hk-home-world__links .wp-element-button {
  padding: 0.82rem 1rem;
  background: color-mix(in srgb, var(--hk-surface) 84%, white 16%);
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
  color: var(--hk-text);
}

.home .hk-home-section-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.9fr);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.home .hk-home-section-grid__stack {
  gap: 0.85rem;
}

.home .hk-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(248, 242, 233, 0.94));
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  box-shadow: 0 12px 30px rgba(49, 38, 27, 0.05);
}

.home .hk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 26%);
  pointer-events: none;
}

.home .hk-card .wp-block-post-featured-image {
  margin: -1.2rem -1.2rem 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 24px 24px 18px 18px;
  overflow: hidden;
}

.home .hk-card .wp-block-post-featured-image a {
  display: block;
  background: linear-gradient(180deg, rgba(245, 238, 229, 0.92), rgba(250, 247, 241, 0.86));
}

.home .hk-card .wp-block-post-featured-image img {
  width: 100% !important;
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
}

.home .hk-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.8rem;
  align-items: center;
}

.home .hk-card .wp-block-post-terms,
.home .hk-card__date {
  margin: 0;
}

.home .hk-card .wp-block-post-terms a,
.home .hk-card__date {
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.home .hk-card .wp-block-post-title {
  margin: 0;
  line-height: 1.02;
}

.home .hk-card .wp-block-post-title a {
  color: var(--hk-text);
  text-decoration: none;
}

.home .hk-card .wp-block-post-excerpt {
  margin: 0;
  color: color-mix(in srgb, var(--hk-text) 82%, var(--hk-muted) 18%);
  font-size: 0.98rem;
  line-height: 1.68;
}

.home .hk-card .wp-block-post-excerpt p {
  margin: 0;
}

.home .hk-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.2rem;
  border-top: 1px solid color-mix(in srgb, var(--hk-line) 78%, transparent 22%);
}

.home .hk-card__cta {
  color: var(--hk-text);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.home .hk-card__cta::after {
  opacity: 0.72;
}

.home .hk-card--feature {
  padding: clamp(1.2rem, 2vw, 1.45rem);
  gap: 1rem;
}

.home .hk-card--feature .wp-block-post-title {
  font-size: clamp(2rem, 4vw, 3.15rem);
  max-width: 12ch;
}

.home .hk-card--feature .wp-block-post-excerpt {
  max-width: 54ch;
  font-size: 1.02rem;
}

.home .hk-card--feature::after {
  content: "Lead";
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(28, 24, 21, 0.82);
  color: var(--wp--preset--color--paper);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home .hk-card--compact {
  grid-template-columns: minmax(6.5rem, 8rem) minmax(0, 1fr);
  gap: 0.9rem 1rem;
  align-items: start;
}

.home .hk-card--compact .wp-block-post-featured-image {
  margin: 0;
  border-radius: 16px;
}

.home .hk-card--compact .wp-block-post-featured-image img {
  aspect-ratio: 1 / 1;
}

.home .hk-card--compact .hk-card__meta,
.home .hk-card--compact .wp-block-post-title,
.home .hk-card--compact .wp-block-post-excerpt,
.home .hk-card--compact .hk-card__footer {
  grid-column: 2;
}

.home .hk-card--compact .wp-block-post-featured-image {
  grid-row: 1 / span 4;
}

.home .hk-card--compact .wp-block-post-title {
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
}

.home .hk-card--quick {
  padding: 1rem;
}

.home .hk-card--quick::after {
  content: none;
}

.home .hk-quick-laughs-grid .wp-block-post-template {
  gap: clamp(0.8rem, 1.8vw, 1rem);
}

.home .hk-quick-laughs-grid .wp-block-post-title {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.15;
}

html.theme-dark .home .hk-front-pulse--hero.hk-home-lead,
html.theme-dark .home .hk-card,
html.theme-dark .home .hk-home-lead__rail,
html.theme-dark .home .hk-home-world__count,
html.theme-dark .home .hk-home-world__links .wp-element-button {
  background: color-mix(in srgb, var(--hk-surface) 95%, white 5%);
}

html.theme-dark .home .hk-card .wp-block-post-featured-image a {
  background: color-mix(in srgb, var(--hk-surface-strong) 92%, white 8%);
}

@media (max-width: 900px) {
  .hk-home-world__intro,
  .home .hk-home-section-grid,
  .home .hk-card--compact {
    grid-template-columns: 1fr;
  }

  .hk-home-world__aside {
    justify-items: start;
  }

  .home .hk-card--compact .wp-block-post-featured-image,
  .home .hk-card--compact .hk-card__meta,
  .home .hk-card--compact .wp-block-post-title,
  .home .hk-card--compact .wp-block-post-excerpt,
  .home .hk-card--compact .hk-card__footer {
    grid-column: auto;
    grid-row: auto;
  }

  .home .hk-card--compact .wp-block-post-featured-image {
    border-radius: 20px 20px 16px 16px;
  }
}

@media (max-width: 781px) {
  .home .hk-front-pulse--hero.hk-home-lead {
    padding: 1.2rem;
  }

  .hk-home-lead__main h1,
  .home .hk-card--feature .wp-block-post-title {
    max-width: none;
  }

  .hk-home-lead__rail {
    padding: 1rem;
  }
}

/* Home conversion pass: stronger clickflow, clearer pathways, more dwell time */
.hk-path-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hk-path-card__badge {
  margin: 0;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hk-accent) 8%, white 92%);
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hk-path-card__meta {
  color: color-mix(in srgb, var(--hk-text) 82%, var(--hk-muted) 18%);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hk-path-card__hint {
  color: var(--hk-muted);
  font-size: var(--wp--preset--font-size--body-s);
  line-height: 1.55;
}

.hk-home-lead__signals {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 46rem;
}

.hk-home-lead__signals li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.78rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  color: color-mix(in srgb, var(--hk-text) 88%, var(--hk-muted) 12%);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.9rem;
  font-weight: 700;
}

.hk-home-lead__signals li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hk-accent), var(--hk-accent-warm));
}

.hk-home-lead__rail-cta {
  gap: 0.8rem;
  padding-top: 0.95rem;
  border-top: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
}

.hk-home-lead__rail-cta p {
  margin: 0;
  color: color-mix(in srgb, var(--hk-text) 82%, var(--hk-muted) 18%);
}

.hk-front-intro--paths {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.hk-front-intro--paths .hk-pathfinder {
  margin: 0;
}

.home .hk-home-world {
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(247, 241, 233, 0.9));
  box-shadow: 0 16px 34px rgba(49, 38, 27, 0.06);
}

.hk-home-world__links {
  display: grid;
  gap: 0.7rem;
}

.hk-home-world__text-link {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
  background: rgba(255, 255, 255, 0.56);
  color: var(--hk-text);
  text-decoration: none;
}

.hk-home-world__text-link span {
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hk-home-world__text-link strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.home .hk-card__time {
  margin: 0;
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home .hk-home-engagement {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(255, 248, 238, 0.98), rgba(246, 241, 233, 0.94)),
    radial-gradient(circle at top right, rgba(182, 58, 52, 0.07), transparent 28%);
  box-shadow: 0 18px 40px rgba(49, 38, 27, 0.07);
}

.hk-home-engagement__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hk-home-engagement__card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  min-height: 100%;
  padding: 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
}

.hk-home-engagement__card h3,
.hk-home-engagement__card p {
  margin: 0;
}

.hk-home-engagement__eyebrow {
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hk-home-engagement__card .wp-element-button {
  justify-self: start;
  margin-top: auto;
}

.hk-random-box__note {
  margin: 0.35rem 0 0;
  color: color-mix(in srgb, var(--hk-text) 82%, var(--hk-muted) 18%);
  line-height: 1.65;
}

.hk-random-box__archive-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--hk-text);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

html.theme-dark .hk-home-lead__signals li,
html.theme-dark .hk-home-lead__rail-cta,
html.theme-dark .home .hk-home-world,
html.theme-dark .hk-home-world__text-link,
html.theme-dark .home .hk-home-engagement,
html.theme-dark .hk-home-engagement__card,
html.theme-dark .hk-path-card__badge {
  background: color-mix(in srgb, var(--hk-surface) 95%, white 5%);
}

@media (max-width: 900px) {
  .hk-home-engagement__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 781px) {
  .hk-home-lead__signals li,
  .hk-home-world__text-link,
  .hk-home-engagement__card {
    padding: 0.9rem;
  }

  .hk-path-card__topline {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hk-reading-intro {
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}

.hk-reading-intro__lead,
.hk-reading-rail {
  height: 100%;
  padding: 1.05rem 1.1rem;
  border-radius: calc(var(--hk-radius-card) - 8px);
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  background: linear-gradient(160deg, rgba(255, 252, 247, 0.98), rgba(247, 241, 232, 0.92));
}

.hk-reading-intro__label,
.hk-reading-rail__eyebrow {
  margin: 0;
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hk-reading-intro__lead h2 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.04;
}

.hk-reading-rail {
  display: grid;
  gap: 0.85rem;
}

.hk-reading-rail__list {
  margin: 0;
  padding-left: 1.1rem;
  color: color-mix(in srgb, var(--hk-text) 82%, var(--hk-muted) 18%);
}

.hk-reading-rail__list li + li {
  margin-top: 0.45rem;
}

.hk-search-tool__hero {
  gap: 1rem;
}

.hk-search-status p {
  margin: 0;
}

.hk-search-briefing__feature:hover,
.hk-search-briefing__feature:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--hk-shadow-lift);
}

.hk-category-hero__editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.hk-category-hero__editorial-card {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, transparent 18%);
}

.hk-category-hero__editorial-card p {
  margin: 0;
}

.hk-category-hero__editorial-label {
  color: var(--hk-muted);
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--meta-s);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hk-category-recommended .hk-card--editorial-lead {
  grid-column: span 2;
  gap: 0.95rem;
}

.hk-category-recommended .hk-card--editorial-lead .wp-block-post-title {
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1.02;
}

html.theme-dark .hk-reading-intro__lead,
html.theme-dark .hk-reading-rail,
html.theme-dark .hk-category-hero__editorial-card {
  background: color-mix(in srgb, var(--hk-surface) 95%, white 5%);
}

@media (max-width: 900px) {
  .hk-reading-intro,
  .hk-category-hero__editorial {
    grid-template-columns: 1fr;
  }

  .hk-category-recommended .hk-card--editorial-lead {
    grid-column: auto;
  }
}

@media (max-width: 781px) {
  .hk-reading-intro__lead h2 {
    max-width: none;
  }
}

/* -----------------------------
   Visual Reset 2026
   Consolidated overrides so the
   latest design wins visibly.
------------------------------ */

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 145, 43, 0.2), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(96, 172, 230, 0.2), transparent 22%),
    linear-gradient(180deg, #fbf4ea 0%, #f4ede2 38%, #f7f0e6 100%) !important;
}

html.theme-dark body {
  background:
    radial-gradient(circle at 12% 0%, rgba(240, 107, 87, 0.2), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(130, 100, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #13111a 0%, #17141f 42%, #1d1a26 100%) !important;
}

.wp-site-blocks {
  max-width: none;
}

.hk-site-header {
  margin-top: 1.1rem;
  margin-bottom: clamp(1.6rem, 4vw, 3.2rem);
}

.hk-site-header .hk-brandbar {
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(248, 241, 230, 0.96));
  border: 1px solid color-mix(in srgb, var(--hk-line) 82%, white 18%);
  box-shadow: 0 24px 60px rgba(48, 35, 23, 0.1);
}

.hk-brandbar__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
}

.hk-brand-lockup {
  gap: 1.15rem;
}

.hk-brand-lockup .wp-block-site-logo img {
  width: clamp(88px, 11vw, 136px);
  max-width: none;
  border-radius: 24px;
}

.hk-brand-copy {
  gap: 0.35rem;
}

.hk-brand-overline {
  margin: 0;
  color: var(--hk-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hk-brand-copy .wp-block-site-title {
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 0.96;
}

.hk-brand-description,
.hk-brand-edition {
  color: color-mix(in srgb, var(--hk-text) 72%, var(--hk-muted) 28%);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hk-brand-tools {
  gap: 0.7rem;
  justify-items: end;
}

.hk-search-launch-wrap .wp-block-button__link {
  min-width: 12rem;
  padding-inline: 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hk-search-launch-wrap .wp-block-button__link::before {
  content: "⌕";
  margin-right: 0.55rem;
  font-size: 1rem;
}

.hk-brandbar__nav {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--hk-line) 80%, transparent 20%);
}

.hk-brandbar__nav .wp-block-navigation {
  justify-content: center;
  gap: 0.35rem 0.9rem;
}

.hk-brandbar__nav .wp-block-navigation-item__content {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hk-brandbar__nav .wp-block-navigation-item__content:hover,
.hk-brandbar__nav .wp-block-navigation-item__content:focus-visible {
  background: rgba(182, 58, 52, 0.08);
  color: var(--hk-accent);
}

.hk-search-overlay {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(20, 16, 23, 0.74);
  backdrop-filter: blur(18px);
}

.hk-search-overlay__shell {
  max-width: 1080px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(247, 240, 230, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.home .hk-masthead {
  margin-top: 1.2rem;
}

.home .hk-masthead .hk-masthead__inner {
  position: relative;
  overflow: hidden;
  min-height: clamp(22rem, 44vw, 34rem);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border-radius: 36px;
  background:
    linear-gradient(92deg, rgba(255, 249, 241, 0.97) 0%, rgba(255, 249, 241, 0.92) 38%, rgba(234, 244, 255, 0.8) 60%, rgba(218, 234, 249, 0.68) 100%),
    url("assets/images/header-al-bundy.jpg") right center/contain no-repeat;
  box-shadow: 0 28px 90px rgba(34, 24, 21, 0.14);
}

.home .hk-masthead .hk-kicker {
  margin-bottom: 0.9rem;
}

.home .hk-masthead h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  line-height: 0.92;
}

.home .hk-masthead > .wp-block-group,
.home .hk-masthead .hk-masthead__inner > p {
  max-width: 38rem;
}

.home .hk-masthead .hk-masthead__inner > p {
  font-size: clamp(1.05rem, 1.6vw, 1.16rem);
  line-height: 1.65;
}

.hk-shell,
.hk-post-shell,
.hk-archive-shell,
.hk-page-shell,
.hk-404-shell,
.hk-front-intro {
  padding-inline: clamp(1.1rem, 2vw, 1.7rem);
}

.hk-home-lead {
  gap: clamp(1.3rem, 3vw, 2rem);
  align-items: stretch;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.hk-home-lead__main,
.hk-home-lead__rail,
.hk-front-intro,
.hk-home-stage > .hk-shell,
.hk-post-shell,
.hk-archive-shell,
.hk-page-shell {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(246, 240, 231, 0.94));
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  box-shadow: 0 18px 48px rgba(42, 30, 23, 0.08);
}

.hk-home-lead__main h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 0.95;
}

.hk-home-grid,
.hk-quick-laughs-grid {
  gap: 1.2rem;
}

.hk-card {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 236, 0.92));
  border: 1px solid color-mix(in srgb, var(--hk-line) 86%, transparent 14%);
  box-shadow: 0 18px 45px rgba(43, 31, 23, 0.08);
}

.hk-card .wp-block-post-featured-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.hk-card .wp-block-post-featured-image img,
.hk-reading-flow img,
.wp-block-post-featured-image img {
  width: auto;
  max-width: 100%;
  height: auto !important;
  max-height: none;
  object-fit: contain !important;
  aspect-ratio: auto !important;
}

.hk-card .wp-block-post-title {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.02;
}

.hk-card .wp-block-post-excerpt {
  color: color-mix(in srgb, var(--hk-text) 82%, var(--hk-muted) 18%);
}

.hk-card .wp-block-post-excerpt__more-link {
  display: inline-flex;
  margin-top: 0.8rem;
  font-family: var(--wp--preset--font-family--display);
  font-weight: 800;
  text-decoration: none;
}

.hk-card--quick {
  align-content: start;
}

.hk-post-shell {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.hk-reading-flow {
  padding-top: 0.3rem;
}

.hk-reading-flow > * {
  margin-left: auto;
  margin-right: auto;
}

.hk-reading-flow > p,
.hk-reading-flow > ul,
.hk-reading-flow > ol,
.hk-reading-flow > blockquote {
  max-width: 70ch;
}

.hk-sidebar-stack {
  gap: 1rem;
}

.hk-sidebar-module {
  padding: 1.2rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 239, 231, 0.95));
  border: 1px solid color-mix(in srgb, var(--hk-line) 84%, transparent 16%);
  box-shadow: 0 14px 36px rgba(44, 31, 23, 0.07);
}

.hk-sidebar-module h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.04;
}

.hk-sidebar-module .wp-block-latest-posts li,
.hk-sidebar-module .wp-block-categories-list li {
  padding-block: 0.7rem;
}

.hk-menu-board {
  margin-top: clamp(2rem, 5vw, 3.2rem);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(250, 240, 223, 0.96), rgba(244, 228, 205, 0.94));
  border: 1px solid rgba(170, 114, 46, 0.24);
  box-shadow: 0 24px 60px rgba(66, 42, 18, 0.1);
}

.hk-footer-courses,
.hk-footer-courses--nav {
  gap: 1rem;
}

.hk-footer-course,
.hk-menu-board__panel {
  padding: 1.2rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.92), rgba(249, 237, 216, 0.9));
  border: 1px solid rgba(171, 116, 49, 0.24);
  box-shadow: none;
}

.hk-footer-course h3,
.hk-menu-board__panel h3 {
  margin-top: 0.15rem;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.08;
}

.hk-footer-links {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hk-footer-links a {
  display: grid;
  gap: 0.18rem;
  padding-bottom: 0.7rem;
  color: var(--hk-text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(133, 92, 41, 0.26);
}

.hk-footer-links li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.hk-footer-service {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(133, 92, 41, 0.36);
}

@media (max-width: 900px) {
  .hk-brandbar__top {
    grid-template-columns: 1fr;
  }

  .home .hk-masthead .hk-masthead__inner {
    min-height: 0;
    padding-bottom: 12rem;
    background-position: right bottom;
    background-size: 58%;
  }
}

@media (max-width: 781px) {
  .hk-site-header .hk-brandbar,
  .hk-home-lead__main,
  .hk-home-lead__rail,
  .hk-front-intro,
  .hk-home-stage > .hk-shell,
  .hk-post-shell,
  .hk-sidebar-module,
  .hk-menu-board,
  .hk-footer-course {
    border-radius: 24px;
  }

  .home .hk-masthead .hk-masthead__inner {
    padding: 1.35rem;
    padding-bottom: 10rem;
    background-size: 72%;
  }

  .home .hk-masthead h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }
}
