/* ─── Save State — Global CSS ─────────────────────────── */

/* Custom Properties (complement theme.json tokens) */
:root {
  --ss-border:        rgba(0, 245, 255, 0.14);
  --ss-border-glow:   rgba(0, 245, 255, 0.40);
  --ss-glow-cyan:     0 0 10px rgba(0, 245, 255, 0.8), 0 0 20px rgba(0, 245, 255, 0.5), 0 0 30px rgba(0, 245, 255, 0.3);
  --ss-glow-cyan-sm:  0 0 8px rgba(0, 245, 255, 0.6), 0 0 15px rgba(0, 245, 255, 0.3);
  --ss-glow-magenta:  0 0 10px rgba(255, 0, 255, 0.8), 0 0 20px rgba(255, 0, 255, 0.5);
  --ss-glow-violet:   0 0 8px #7c3aed, 0 0 20px rgba(124, 58, 237, 0.25);
}

/* ─── CRT Scanline Overlay ────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.04) 0px,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 9999;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── Skip to Content ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--wp--preset--color--cyan);
  color: #000;
  padding: 8px 16px;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 10000;
}
.skip-link:focus { top: 0; }

/* ─── Body Reset ──────────────────────────────────────── */
body {
  background-color: var(--wp--preset--color--bg);
  color: var(--wp--preset--color--text-primary);
  -webkit-font-smoothing: antialiased;
}

/* ─── Glitch Keyframes ────────────────────────────────── */
@keyframes ss-glitch {
  0%, 88%, 100% {
    transform: none;
    text-shadow: var(--ss-glow-cyan-sm);
  }
  90% { transform: skew(-2deg); text-shadow: 3px 0 #ff00ff, -3px 0 #00f5ff; }
  92% { transform: skew(1deg);  text-shadow: -2px 0 #00f5ff, 2px 0 #ff00ff; }
  94% { transform: none; }
}

/* ─── Navigation Block ────────────────────────────────── */
.wp-block-template-part.save-state-header,
header.save-state-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.wp-block-navigation {
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
  padding: 0 32px;
  min-height: 56px;
}

/* Logo — glitch on hover (from 21st.dev) */
.wp-block-site-title a,
.wp-block-site-logo a {
  font-family: var(--wp--preset--font-family--heading) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 5px !important;
  text-transform: uppercase !important;
  color: var(--wp--preset--color--cyan) !important;
  text-shadow: var(--ss-glow-cyan);
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.wp-block-site-title a:hover { animation: ss-glitch 0.4s ease; }

/* Nav links — underline slide-in from 21st.dev */
.wp-block-navigation-item__content {
  font-family: var(--wp--preset--font-family--heading) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--wp--preset--color--text-secondary) !important;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline slide-in animation (adapted from 21st.dev) */
.wp-block-navigation-item .wp-block-navigation-item__content::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wp--preset--color--cyan);
  box-shadow: 0 0 8px rgba(0, 245, 255, 0.8);
  transition: width 0.3s ease;
}
.wp-block-navigation-item:hover .wp-block-navigation-item__content::after,
.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after {
  width: 100%;
}
.wp-block-navigation-item:hover .wp-block-navigation-item__content,
.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content {
  color: var(--wp--preset--color--cyan) !important;
  text-shadow: var(--ss-glow-cyan-sm);
}

/* Nav dropdown */
.wp-block-navigation__submenu-container {
  background: rgba(10, 10, 18, 0.98) !important;
  border: 1px solid var(--ss-border) !important;
  border-top: 2px solid var(--wp--preset--color--cyan) !important;
  border-radius: 0 0 4px 4px;
  min-width: 180px;
}

/* Mobile hamburger */
.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg {
  stroke: var(--wp--preset--color--cyan);
  filter: drop-shadow(0 0 4px #00f5ff);
}
.wp-block-navigation__responsive-container.is-menu-open {
  background: rgba(10, 10, 18, 0.98) !important;
  backdrop-filter: blur(12px);
}

/* Mobile nav links — translateX slide (from 21st.dev) */
.wp-block-navigation__responsive-container .wp-block-navigation-item__content {
  font-size: 20px !important;
  letter-spacing: 4px !important;
  transition: all 0.3s ease;
}
.wp-block-navigation__responsive-container .wp-block-navigation-item:hover .wp-block-navigation-item__content {
  color: var(--wp--preset--color--cyan) !important;
  text-shadow: var(--ss-glow-cyan);
  transform: translateX(10px);
}

/* ─── Post Grid ───────────────────────────────────────── */
.save-state-post-grid .wp-block-post {
  background: var(--wp--preset--color--surface);
  border: 1px solid var(--ss-border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.save-state-post-grid .wp-block-post:hover {
  border-color: var(--ss-border-glow);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

/* Post card image */
.save-state-post-grid .wp-block-post-featured-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.save-state-post-grid .wp-block-post-featured-image.has-image-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #0d1a2e, #1a0d2e);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Post card title */
.save-state-post-grid .wp-block-post-title a {
  font-family: var(--wp--preset--font-family--heading) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--wp--preset--color--text-primary) !important;
  text-decoration: none !important;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.save-state-post-grid .wp-block-post-title a:hover {
  color: var(--wp--preset--color--cyan) !important;
  text-shadow: var(--ss-glow-cyan-sm);
}

/* Post card excerpt */
.save-state-post-grid .wp-block-post-excerpt__excerpt {
  font-size: 12px;
  color: var(--wp--preset--color--text-secondary);
  line-height: 1.6;
}

/* Post card date */
.save-state-post-grid .wp-block-post-date a,
.save-state-post-grid .wp-block-post-date {
  font-size: 11px;
  color: var(--wp--preset--color--text-muted);
}

/* ─── Category Tags ───────────────────────────────────── */
.save-state-cat-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: var(--wp--preset--font-family--heading) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 1px solid;
  transition: box-shadow 0.15s;
}

.cat-story-driven    { background: rgba(0,245,255,0.08);  color: #00f5ff; border-color: rgba(0,245,255,0.3); }
.cat-racing          { background: rgba(249,115,22,0.08); color: #f97316; border-color: rgba(249,115,22,0.3); }
.cat-rpg             { background: rgba(124,58,237,0.08); color: #7c3aed; border-color: rgba(124,58,237,0.3); }
.cat-survival        { background: rgba(34,197,94,0.08);  color: #22c55e; border-color: rgba(34,197,94,0.3); }
.cat-retro           { background: rgba(244,63,94,0.08);  color: #f43f5e; border-color: rgba(244,63,94,0.3); }

/* ─── Homepage: Splash Hero ──────────────────────────── */
.save-state-home-hero {
  border-bottom: 1px solid var(--ss-border);
  background: linear-gradient(135deg,
    var(--wp--preset--color--surface) 0%,
    rgba(0, 10, 20, 0.95) 100%);
  position: relative;
  overflow: hidden;
}
.save-state-home-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,245,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.save-state-home-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px var(--wp--preset--spacing--32);
}
.save-state-home-hero__label {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wp--preset--color--cyan);
  margin: 0 0 24px;
}
.save-state-home-hero__title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--wp--preset--color--text-primary);
  margin: 0 0 20px;
}
.save-state-home-hero__sub {
  font-size: 15px;
  color: var(--wp--preset--color--text-secondary);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 520px;
}

/* ─── Homepage: Categories Browse ────────────────────── */
.save-state-home-cats {
  border-bottom: 1px solid var(--ss-border);
}
.save-state-home-cats__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px var(--wp--preset--spacing--32);
}
.save-state-home-cats__heading {
  margin-bottom: 32px;
}
.save-state-home-cat-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--ss-border);
}
.save-state-home-cat-row:last-of-type {
  border-bottom: none;
}
.save-state-home-cat-row__thumb {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 16/9;
}
.save-state-home-cat-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}
.save-state-home-cat-row:hover .save-state-home-cat-row__thumb img {
  transform: scale(1.04);
}
.save-state-home-cat-row__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.save-state-home-cat-row__title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.save-state-home-cat-row__title a {
  color: var(--wp--preset--color--text-primary);
  text-decoration: none;
}
.save-state-home-cat-row__title a:hover {
  color: var(--wp--preset--color--cyan);
}
.save-state-home-cat-row__excerpt {
  font-size: 12px;
  color: var(--wp--preset--color--text-secondary);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.save-state-home-cat-row__cta {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wp--preset--color--cyan);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 14px;
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 3px;
  transition: background 0.15s, box-shadow 0.15s;
}
.save-state-home-cat-row__cta:hover {
  background: rgba(0,245,255,0.08);
  box-shadow: var(--ss-glow-cyan-sm);
}
.save-state-home-cats__footer {
  text-align: center;
  padding-top: 36px;
}
@media (max-width: 768px) {
  .save-state-home-cat-row {
    grid-template-columns: 80px 1fr auto;
    gap: 12px;
  }
  .save-state-home-hero__inner {
    padding: 48px 20px;
  }
  .save-state-home-cats__inner {
    padding: 32px 20px;
  }
}
@media (max-width: 480px) {
  .save-state-home-cat-row {
    grid-template-columns: 1fr auto;
  }
  .save-state-home-cat-row__thumb {
    display: none;
  }
}

/* ─── Hero Section ────────────────────────────────────── */
.save-state-hero {
  border-bottom: 1px solid var(--ss-border);
}
/* Strip list styles from post-template ul */
.save-state-hero > .wp-block-post-template {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Apply two-column grid at the post (li) level — the actual parent of content + image */
.save-state-hero .wp-block-post-template > .wp-block-post {
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 360px;
}
@media (max-width: 768px) {
  .save-state-hero .wp-block-post-template > .wp-block-post {
    grid-template-columns: 1fr;
  }
}

.save-state-hero__content {
  background: linear-gradient(135deg,
    var(--wp--preset--color--surface) 0%,
    var(--wp--preset--color--surface-2) 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.save-state-hero__content::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0,245,255,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.save-state-hero__eyebrow {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--wp--preset--color--cyan);
  margin-bottom: 12px;
}

.save-state-hero .wp-block-post-title {
  font-family: var(--wp--preset--font-family--heading) !important;
  font-size: clamp(20px, 3vw, 30px) !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--wp--preset--color--text-primary) !important;
  line-height: 1.2;
  margin-bottom: 14px;
}
.save-state-hero .wp-block-post-title a { color: inherit !important; text-decoration: none !important; }

.save-state-hero__rule {
  width: 48px;
  height: 2px;
  background: var(--wp--preset--color--cyan);
  box-shadow: var(--ss-glow-cyan-sm);
  border-radius: 1px;
  margin-bottom: 14px;
}

.save-state-hero .wp-block-post-excerpt__excerpt {
  font-size: 13px;
  color: var(--wp--preset--color--text-secondary);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 20px;
}

.save-state-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wp--preset--color--cyan);
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: var(--ss-glow-cyan-sm);
  width: fit-content;
  transition: opacity 0.15s;
}
.save-state-hero__cta:hover { opacity: 0.85; }

.save-state-hero__image {
  background: linear-gradient(135deg, #0d1a2e, #1a0a2e);
  overflow: hidden;
}
.save-state-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Category Filter Bar ─────────────────────────────── */
.save-state-filter {
  display: flex;
  gap: 8px;
  padding: 14px 32px;
  border-bottom: 1px solid var(--ss-border);
  background: var(--wp--preset--color--surface);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.save-state-filter::-webkit-scrollbar { display: none; }

.save-state-filter a {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.15s;
  cursor: pointer;
}
/* Default (inactive) states */
.save-state-filter .filter-all          { background: rgba(0,245,255,0.06);  color: #00f5ff; border-color: rgba(0,245,255,0.3);  }
.save-state-filter .filter-story-driven { background: rgba(0,245,255,0.06);  color: #00f5ff; border-color: rgba(0,245,255,0.3);  }
.save-state-filter .filter-racing       { background: rgba(249,115,22,0.06); color: #f97316; border-color: rgba(249,115,22,0.3); }
.save-state-filter .filter-rpg          { background: rgba(124,58,237,0.06); color: #7c3aed; border-color: rgba(124,58,237,0.3); }
.save-state-filter .filter-survival     { background: rgba(34,197,94,0.06);  color: #22c55e; border-color: rgba(34,197,94,0.3);  }
.save-state-filter .filter-retro        { background: rgba(244,63,94,0.06);  color: #f43f5e; border-color: rgba(244,63,94,0.3);  }
/* Active states */
.save-state-filter .filter-all.is-active          { background: #00f5ff; color: #000; border-color: #00f5ff; box-shadow: var(--ss-glow-cyan-sm); }
.save-state-filter .filter-story-driven.is-active { background: #00f5ff; color: #000; border-color: #00f5ff; box-shadow: 0 0 8px rgba(0,245,255,0.5); }
.save-state-filter .filter-racing.is-active       { background: #f97316; color: #000; border-color: #f97316; box-shadow: 0 0 8px rgba(249,115,22,0.5); }
.save-state-filter .filter-rpg.is-active          { background: #7c3aed; color: #fff; border-color: #7c3aed; box-shadow: 0 0 8px rgba(124,58,237,0.5); }
.save-state-filter .filter-survival.is-active     { background: #22c55e; color: #000; border-color: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.save-state-filter .filter-retro.is-active        { background: #f43f5e; color: #fff; border-color: #f43f5e; box-shadow: 0 0 8px rgba(244,63,94,0.5); }

/* ─── Single Post ─────────────────────────────────────── */
.save-state-post-header {
  background: linear-gradient(180deg, var(--wp--preset--color--surface), transparent);
  padding: 40px 40px 32px;
  border-bottom: 1px solid var(--ss-border);
}
.save-state-post-header .wp-block-post-title {
  font-family: var(--wp--preset--font-family--heading) !important;
  font-size: clamp(22px, 3.5vw, 32px) !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1.2;
  margin-bottom: 14px;
}
.save-state-post-header-rule {
  width: 48px; height: 2px;
  background: var(--wp--preset--color--cyan);
  box-shadow: var(--ss-glow-cyan-sm);
  border-radius: 1px;
  margin-bottom: 14px;
}
.save-state-post-header .wp-block-post-date {
  font-size: 11px;
  color: var(--wp--preset--color--text-muted);
}

.save-state-post-columns {
  align-items: start !important;
}
.save-state-post-content {
  padding: 32px 40px;
}
.save-state-post-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--wp--preset--color--text-secondary);
  max-width: 62ch;
  margin-bottom: 16px;
}
.save-state-post-content h2,
.save-state-post-content h3 {
  font-family: var(--wp--preset--font-family--heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--wp--preset--color--text-primary);
  margin: 24px 0 12px;
}

.save-state-post-sidebar {
  padding: 24px 20px;
  background: var(--wp--preset--color--surface);
  border-left: 1px solid var(--ss-border);
  min-height: 100%;
}
.save-state-sidebar-heading {
  font-family: var(--wp--preset--font-family--heading) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--wp--preset--color--text-muted) !important;
  border-bottom: 1px solid var(--ss-border);
  padding-bottom: 8px;
  margin-bottom: 12px !important;
}
.save-state-sidebar-post {
  padding: 10px;
  background: var(--wp--preset--color--bg);
  border: 1px solid var(--ss-border);
  border-radius: 4px;
  margin-bottom: 8px;
  transition: border-color 0.15s;
}
.save-state-sidebar-post:hover { border-color: var(--ss-border-glow); }
.save-state-sidebar-post .wp-block-post-title {
  font-size: 10px !important;
  font-family: var(--wp--preset--font-family--heading) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  line-height: 1.3;
}
.save-state-sidebar-post .wp-block-post-title a {
  color: var(--wp--preset--color--text-secondary) !important;
  text-decoration: none !important;
  transition: color 0.15s;
}
.save-state-sidebar-post .wp-block-post-title a:hover { color: var(--wp--preset--color--cyan) !important; }

/* ─── Footer ──────────────────────────────────────────── */
.save-state-footer {
  background: var(--wp--preset--color--surface);
  border-top: 1px solid var(--ss-border);
  padding: 20px 32px;
}
.save-state-footer .wp-block-site-title a {
  font-family: var(--wp--preset--font-family--heading) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: var(--wp--preset--color--cyan) !important;
  text-shadow: var(--ss-glow-cyan-sm);
  text-decoration: none !important;
}
.save-state-footer .wp-block-navigation-item__content {
  font-size: 9px !important;
  letter-spacing: 2px !important;
  color: var(--wp--preset--color--text-muted) !important;
}
.save-state-footer .wp-block-navigation-item:hover .wp-block-navigation-item__content {
  color: var(--wp--preset--color--cyan) !important;
}
.save-state-rss-link {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wp--preset--color--text-muted);
  text-decoration: none;
  border: 1px solid var(--ss-border);
  padding: 5px 12px;
  border-radius: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.save-state-rss-link:hover { color: var(--wp--preset--color--cyan); border-color: var(--ss-border-glow); }

/* ─── About Page ──────────────────────────────────────── */
.save-state-about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px;
}
.save-state-about__section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ss-border);
}
.save-state-about__section:last-child { border-bottom: none; }
.save-state-about__label {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--wp--preset--color--cyan);
  margin-bottom: 16px;
}
.save-state-about__title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wp--preset--color--text-primary);
  margin-bottom: 8px;
}

/* ─── Archive Page ────────────────────────────────────── */
.save-state-archive-header {
  padding: 40px 32px 24px;
  border-bottom: 1px solid var(--ss-border);
  background: linear-gradient(180deg, var(--wp--preset--color--surface), transparent);
}
.save-state-archive-header .wp-block-query-title {
  font-family: var(--wp--preset--font-family--heading) !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: var(--wp--preset--color--cyan) !important;
  text-shadow: var(--ss-glow-cyan);
}

/* ─── Focus Rings (Accessibility) ────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--wp--preset--color--cyan);
  outline-offset: 2px;
  box-shadow: var(--ss-glow-cyan-sm);
}

/* ─── Responsive Adjustments ─────────────────────────── */
@media (max-width: 768px) {
  .save-state-post-header { padding: 24px 20px 20px; }
  .save-state-post-content { padding: 24px 20px; }
  .save-state-post-sidebar {
    border-left: none;
    border-top: 1px solid var(--ss-border);
    padding: 20px;
  }
  .save-state-about { padding: 32px 20px; }
  .save-state-filter { padding: 10px 16px; }
  .wp-block-navigation { padding: 0 16px; }
}

@media (max-width: 480px) {
  .save-state-hero__content { padding: 24px 20px; }
  .save-state-footer { padding: 16px 20px; }
}
