/* ========================================
   THE MARK FORD SHOW — Theme
   The People's Hour
   ======================================== */

:root {
  --bg:       #0b0b14;
  --surface:  #13131f;
  --surface2: #1c1c2e;
  --border:   rgba(255,255,255,0.07);
  --red:      #d42b2b;
  --red-soft: rgba(212,43,43,0.12);
  --gold:     #c8962a;
  --text:     #eeeef5;
  --muted:    #7a7a8e;
  --cap:      #555566;
  --serif:    Georgia, "Times New Roman", serif;
  --sans:     -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --radius:   4px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- Masthead ---- */
.masthead {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.masthead-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.masthead-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}

.masthead-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
}

.masthead-title em {
  font-style: normal;
  color: var(--red);
}

.masthead-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
}

.masthead-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.masthead-nav a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  transition: color 0.15s;
}

.masthead-nav a:hover { color: var(--text); }

.masthead-cta {
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  transition: background 0.15s;
}

.masthead-cta:hover { background: #b82424; color: #fff; }

/* ---- Hamburger button ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Mobile nav drawer ---- */
.mobile-nav {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-nav ul { list-style: none; }
.mobile-nav li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-nav li:last-child a { border-bottom: none; color: var(--red); }
.mobile-nav li a:hover { color: var(--text); }
.mobile-nav.is-open { display: block; }

/* ---- Broadcast banner ---- */
.broadcast-bar {
  background: var(--red);
  padding: 8px 24px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
}

.broadcast-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ---- Page wrapper ---- */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Hero (homepage featured post) ---- */
.hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-excerpt {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cap);
  font-weight: 600;
}

.hero-meta span { color: var(--muted); }

.hero-audio-wrap {
  margin-top: 24px;
}

.hero-play-btn {
  font-size: 13px;
  padding: 13px 24px;
}

.hero-play-btn .ep-audio.is-loaded {
  display: block;
  width: 100%;
}

.hero-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-img:hover img { transform: scale(1.03); }

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.15;
  fill: var(--text);
}

/* ---- Section headers ---- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.section-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  transition: color 0.15s;
}

.section-link:hover { color: var(--red); }

/* ---- Episode grid ---- */
.episodes {
  padding-bottom: 64px;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.ep-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.ep-card:hover {
  border-color: rgba(212,43,43,0.35);
  transform: translateY(-2px);
}

.ep-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface2);
  position: relative;
}

.ep-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface2), #0d0d1a);
}

.ep-card-img-placeholder svg {
  width: 40px;
  height: 40px;
  fill: var(--text);
  opacity: 0.08;
}

.ep-card-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border-radius: 3px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.ep-card-body {
  padding: 20px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ep-card-title {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.15s;
}

.ep-card:hover .ep-card-title { color: #fff; }

.ep-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ep-card-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ep-card-meta {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cap);
}

.ep-more-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  transition: color 0.15s;
}
.ep-more-link:hover { color: var(--text); }

/* Card audio player */
.ep-card-player {
  margin: 14px 0;
}

.ep-audio {
  display: none;
  width: 100%;
  height: 36px;
  border-radius: var(--radius);
  accent-color: var(--red);
}

.ep-audio.is-loaded {
  display: block;
}

.ep-play-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  justify-content: center;
}

.ep-play-btn:hover { background: #b82424; }

.ep-play-btn.is-playing { background: #222235; color: var(--muted); }

.ep-play-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ---- Post (single episode page) ---- */
.post-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.post-header-inner {
  max-width: 760px;
}

.post-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.post-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 20px;
}

.post-subtitle {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 28px;
}

.post-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cap);
  font-weight: 600;
}

.post-byline-name { color: var(--gold); }
.post-byline-divider { color: var(--border); }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 48px 0 80px;
  align-items: start;
}

/* ---- Post body ---- */
.post-content {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
  color: #d8d8e5;
}

.post-content p {
  margin-bottom: 1.6em;
}

.post-content p:first-child::first-letter {
  float: left;
  font-size: 4.2em;
  line-height: 0.78;
  margin-right: 6px;
  margin-top: 6px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--text);
}

.post-content h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  margin: 2em 0 0.6em;
  color: var(--text);
  letter-spacing: -0.3px;
}

.post-content h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin: 2em 0 0.6em;
}

.post-content blockquote {
  border-left: 3px solid var(--red);
  margin: 2em 0;
  padding: 4px 0 4px 24px;
  font-style: italic;
  color: var(--text);
  font-size: 21px;
}

.post-content a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--red);
}

.post-content figure {
  margin: 2em 0;
}

.post-content img {
  width: 100%;
  border-radius: var(--radius);
}

.post-content figcaption {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

.post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3em 0;
}

/* ---- Sidebar ---- */
.post-sidebar {}

.sidebar-listen {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
  position: sticky;
  top: 88px;
}

.sidebar-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}

.sidebar-show-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.sidebar-date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Sidebar audio player */
.sidebar-audio-wrap {
  margin: 0 0 4px;
}

.sidebar-audio {
  width: 100%;
  height: 40px;
  accent-color: var(--red);
  border-radius: var(--radius);
  display: block;
}

.sidebar-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.sidebar-station-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cap);
  margin-bottom: 8px;
}

.sidebar-station-info {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- About / static pages ---- */
.page-banner {
  width: 100%;
  margin-bottom: 0;
  border-radius: 6px;
  overflow: hidden;
}
.page-banner-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.page-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-content {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
  color: #d0d0de;
  padding-bottom: 80px;
}

.page-content p { margin-bottom: 1.4em; }

/* Portrait photo on static pages — float left beside text */
.page-content .kg-image-card {
  float: left;
  width: 200px;
  margin: 4px 32px 20px 0;
  clear: left;
}
.page-content .kg-image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}
.page-content .kg-image-card figcaption { display: none; }
.page-content::after { content: ''; display: table; clear: both; }

.page-content h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin: 2em 0 0.6em;
  color: var(--text);
}

/* ---- Coming Soon strip ---- */
.coming-soon-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(212,43,43,0.07);
  padding: 20px 0;
  margin: 0 0 48px;
}
.coming-soon-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.coming-soon-strip-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 4px;
}
.coming-soon-strip-text {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}
.coming-soon-strip-btn {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.coming-soon-strip-btn:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .coming-soon-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Ghost card width classes (required by GScan) ---- */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 50vw) * -1;
  transform: translateX(calc(50vw - 50%));
}
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: auto;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.footer-brand strong { color: var(--text); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cap);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text); }

.footer-wrzf {
  font-size: 11px;
  color: var(--cap);
  text-align: right;
}

.footer-wrzf a { color: var(--red); }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0 64px;
}

.page-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  transition: all 0.15s;
}

.page-btn:hover {
  border-color: var(--red);
  color: var(--text);
}

.page-num {
  font-size: 12px;
  color: var(--cap);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---- Tag page ---- */
.tag-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.tag-name {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 12px;
}

.tag-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---- 404 ---- */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 64px 24px;
}

.error-code {
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: var(--surface2);
  margin-bottom: 24px;
}

.error-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.error-msg {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---- Responsive — tablet (≤900px) ---- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-img { display: none; }
  .hero { padding: 32px 0 28px; margin-bottom: 32px; }

  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
  .post-body { padding: 0; }

  .page-content { font-size: 17px; }

  .coming-soon-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---- Responsive — mobile (≤640px) ---- */
@media (max-width: 640px) {
  /* Global */
  .page-wrap { padding: 0 16px; }

  /* Broadcast bar */
  .broadcast-bar {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 7px 16px;
  }

  /* Masthead */
  .masthead-inner { padding: 0 16px; height: 56px; gap: 12px; }
  .masthead-nav { display: none; }
  .masthead-sub { display: none; }
  .masthead-title { font-size: 15px; }
  .masthead-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 24px 0 20px; margin-bottom: 24px; }
  .hero-title { font-size: clamp(26px, 7vw, 38px); letter-spacing: -0.5px; }
  .hero-excerpt { font-size: 16px; }
  .hero-kicker { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 12px; }

  /* Coming Soon strip */
  .coming-soon-strip { padding: 16px 0; margin-bottom: 28px; }
  .coming-soon-strip-inner { padding: 0 16px; }
  .coming-soon-strip-text { font-size: 14px; }
  .coming-soon-strip-btn { width: 100%; text-align: center; padding: 12px 16px; }

  /* Episode grid */
  .episode-grid { grid-template-columns: 1fr; gap: 16px; }
  .episodes { padding-bottom: 40px; }
  .section-head { margin-bottom: 20px; }
  .ep-card-title { font-size: 17px; }
  .ep-card-body { padding: 16px 16px 12px; }

  /* Post page */
  .post-header { padding: 24px 0 20px; }
  .post-title { font-size: clamp(24px, 6vw, 36px); }
  .post-subtitle { font-size: 16px; }
  .post-content { font-size: 17px; }
  .post-kicker { font-size: 10px; }

  /* About / pages */
  .page-header { padding: 24px 0 20px; margin-bottom: 28px; }
  .page-title { font-size: clamp(24px, 6vw, 36px); }
  .page-content { font-size: 17px; padding-bottom: 48px; }

  /* Portrait photo — stack above text on mobile */
  .page-content .kg-image-card {
    float: none;
    width: 140px;
    margin: 0 auto 24px;
  }
  .page-content .kg-image-card img {
    height: 140px;
  }

  /* Page banner */
  .page-banner-img { max-height: 220px; }

  /* Footer */
  .site-footer { padding: 28px 0; }
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links { flex-direction: column; gap: 10px; }
  .footer-wrzf { text-align: left; font-size: 12px; }
  .footer-brand { font-size: 13px; }
}
