/*
Theme Name: Moban 8-2-11
Description: Chủ đề WordPress tùy chỉnh cho cổng thông tin game Bầu Cua Tôm Cá (Hoo Hey How) – phong cách hội chợ xuân nhiều gian hàng, cờ đuôi nheo, đa sắc đỏ vàng xanh hồng, tối ưu SEO.
Version: 1.0
Author: Moban82
Text Domain: moban82
*/

/* Google Fonts (Philosopher + Source Sans 3) are enqueued in functions.php — no @import here. */

/* ============================================================
   1. Design tokens — phiên chợ Tết đa sắc
   ============================================================ */
:root {
  --paper: #fdf3e0;
  --paper-deep: #f6e6c8;
  --ink: #33201a;
  --red: #c1121f;
  --red-deep: #8f0d17;
  --gold: #e0a100;
  --gold-soft: #f5c94d;
  --green: #2e6b3e;
  --pink: #d8447c;
  --blue: #1d5f8a;
  --line: rgba(51, 32, 26, 0.22);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-fair: 6px 6px 0 rgba(51, 32, 26, 0.16);
  --font-display: 'Philosopher', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --wrap: 1200px;
}

/* ============================================================
   2. Reset & base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 6% 8%, rgba(193, 18, 31, 0.06) 0 3px, transparent 4px),
    radial-gradient(circle at 94% 14%, rgba(224, 161, 0, 0.09) 0 3px, transparent 4px),
    radial-gradient(circle at 18% 88%, rgba(46, 107, 62, 0.07) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 82% 92%, rgba(216, 68, 124, 0.06) 0 2.5px, transparent 3.5px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--red-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.22;
  color: var(--red);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(1.9rem, 4.8vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.15rem); }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.35rem); }

p {
  margin: 0 0 1.2em;
}

.wrap {
  width: min(var(--wrap), 92%);
  margin-inline: auto;
}

.section {
  padding: 3.2rem 0;
}

.section-kicker {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  padding: 0.32rem 1rem;
  margin-bottom: 0.9rem;
  box-shadow: 3px 3px 0 rgba(51, 32, 26, 0.18);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.7rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 130px;
  height: 8px;
  background-image: linear-gradient(90deg,
    var(--red) 0 22px, var(--gold) 22px 44px,
    var(--green) 44px 66px, var(--pink) 66px 88px,
    var(--blue) 88px 110px, transparent 110px);
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============================================================
   3. Header — cờ đuôi nheo trên cổng chợ
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 6px 20px rgba(51, 32, 26, 0.14);
}

.site-header::before {
  content: '';
  display: block;
  height: 14px;
  background-image:
    linear-gradient(135deg, var(--red) 25%, transparent 25%),
    linear-gradient(225deg, var(--red) 25%, transparent 25%);
  background-size: 22px 14px;
  background-repeat: repeat-x;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  position: relative;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-brand__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--red);
  box-shadow: 3px 3px 0 rgba(51, 32, 26, 0.2);
}

.site-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--red);
  line-height: 1.05;
}

.site-brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}

.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  display: block;
  padding: 0.5rem 0.9rem 0.4rem;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--ink);
  border-bottom: 4px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.site-nav__list li:nth-child(5n + 1) .site-nav__link { border-bottom-color: var(--red); }
.site-nav__list li:nth-child(5n + 2) .site-nav__link { border-bottom-color: var(--gold); }
.site-nav__list li:nth-child(5n + 3) .site-nav__link { border-bottom-color: var(--green); }
.site-nav__list li:nth-child(5n + 4) .site-nav__link { border-bottom-color: var(--pink); }
.site-nav__list li:nth-child(5n + 5) .site-nav__link { border-bottom-color: var(--blue); }

.site-nav__link:hover,
.site-nav__link:focus {
  color: var(--red);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav.is-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 14px 30px rgba(51, 32, 26, 0.2);
}

.site-nav.is-open .site-nav__list {
  flex-direction: column;
  padding: 0.7rem 4%;
}

.site-nav.is-open .site-nav__link {
  padding: 0.75rem 0.9rem;
}

@media (min-width: 960px) {
  .site-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }
}

/* ============================================================
   4. Front page — banner hội chợ
   ============================================================ */
.fair-banner {
  position: relative;
  margin-top: 2rem;
  background: var(--red);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 2.6rem 6% 3.4rem;
  text-align: center;
  color: var(--paper);
  box-shadow: var(--shadow-fair);
  overflow: hidden;
}

.fair-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 8% 18%, rgba(245, 201, 77, 0.25) 0 4px, transparent 5px),
    radial-gradient(circle at 92% 26%, rgba(245, 201, 77, 0.2) 0 3px, transparent 4px),
    radial-gradient(circle at 20% 84%, rgba(245, 201, 77, 0.16) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 80%, rgba(245, 201, 77, 0.2) 0 4px, transparent 5px);
  pointer-events: none;
}

.fair-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 16px;
  background-image:
    radial-gradient(circle at 8px -6px, transparent 12px, var(--red) 13px);
  background-size: 16px 16px;
  background-repeat: repeat-x;
  transform: scaleY(-1);
  filter: drop-shadow(0 3px 0 rgba(51, 32, 26, 0.25));
}

.fair-banner__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.fair-banner h1 {
  color: var(--gold-soft);
  margin: 0.35em auto 0.5em;
  max-width: 24ch;
  text-shadow: 2px 2px 0 rgba(51, 32, 26, 0.35);
}

.fair-banner__lead {
  max-width: 66ch;
  margin: 0 auto 1.6em;
  color: rgba(253, 243, 224, 0.94);
}

.fair-banner__photo {
  margin: 2rem auto 0;
  max-width: 880px;
  border: 6px solid var(--paper);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(51, 32, 26, 0.28);
  transform: rotate(-0.8deg);
}

.fair-banner__photo img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* ============================================================
   5. Stall grids — dãy gian hàng
   ============================================================ */
.stall-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .stall-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stall-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stall {
  background: #fffdf6;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-fair);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.stall:hover {
  transform: translateY(-7px) rotate(-0.5deg);
  box-shadow: 9px 9px 0 rgba(51, 32, 26, 0.2);
}

.stall__awning {
  height: 22px;
  background-image: repeating-linear-gradient(90deg,
    currentColor 0 18px, #fffdf6 18px 36px);
  border-bottom: 2px solid var(--ink);
}

.stall:nth-of-type(4n + 1) .stall__awning { color: var(--red); }
.stall:nth-of-type(4n + 2) .stall__awning { color: var(--green); }
.stall:nth-of-type(4n + 3) .stall__awning { color: var(--gold); }
.stall:nth-of-type(4n + 4) .stall__awning { color: var(--pink); }

.stall__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.stall__body {
  padding: 1.05rem 1.15rem 1.3rem;
}

.stall__title {
  margin-bottom: 0.3em;
  color: var(--ink);
}

.stall:nth-of-type(4n + 1) .stall__title { color: var(--red); }
.stall:nth-of-type(4n + 2) .stall__title { color: var(--green); }
.stall:nth-of-type(4n + 3) .stall__title { color: #9a6f00; }
.stall:nth-of-type(4n + 4) .stall__title { color: var(--pink); }

.stall__text {
  font-size: 0.92rem;
  margin: 0;
  color: #5a4038;
}

/* Symbol booths */
.booth-row {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .booth-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .booth-row {
    grid-template-columns: repeat(6, 1fr);
  }
}

.booth {
  text-align: center;
  background: #fffdf6;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.2rem 0.8rem;
  box-shadow: var(--shadow-fair);
  transition: transform 0.3s ease;
  position: relative;
}

.booth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  border-radius: 10px 10px 0 0;
  background-image: repeating-linear-gradient(90deg, currentColor 0 12px, #fffdf6 12px 24px);
}

.booth:nth-child(6n + 1) { color: var(--red); }
.booth:nth-child(6n + 2) { color: var(--green); }
.booth:nth-child(6n + 3) { color: var(--gold); }
.booth:nth-child(6n + 4) { color: var(--pink); }
.booth:nth-child(6n + 5) { color: var(--blue); }
.booth:nth-child(6n + 6) { color: var(--red-deep); }

.booth:hover {
  transform: translateY(-6px) rotate(1deg);
}

.booth img {
  width: 84px;
  height: 84px;
  margin: 0.4rem auto 0.7rem;
  border-radius: 50%;
  border: 3px solid currentColor;
}

.booth__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

/* Notice board — bảng niêm yết */
.notice-board {
  margin: 1.8rem auto 0;
  max-width: 900px;
  background: #f0d9a8;
  border: 10px solid #8a5a2b;
  border-radius: var(--radius);
  box-shadow: var(--shadow-fair), inset 0 0 40px rgba(138, 90, 43, 0.25);
  padding: 1.6rem 1.6rem 1.4rem;
}

.notice-board table {
  width: 100%;
  border-collapse: collapse;
  background: #fffdf6;
  border: 1px dashed var(--ink);
}

.notice-board th,
.notice-board td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px dashed rgba(51, 32, 26, 0.3);
  font-size: 0.95rem;
}

.notice-board th {
  background: var(--red);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.notice-board tbody tr:hover {
  background: rgba(224, 161, 0, 0.12);
}

.table-scroll {
  overflow-x: auto;
}

/* Folk corner — góc truyền miệng */
.folk-quote {
  margin: 2rem auto 0;
  max-width: 760px;
  text-align: center;
  background: var(--green);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 2rem 8%;
  box-shadow: var(--shadow-fair);
  position: relative;
}

.folk-quote::before {
  content: '❝';
  display: block;
  font-size: 2.6rem;
  line-height: 0.8;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}

.folk-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  margin-bottom: 0.6em;
}

.folk-quote footer {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Fair voices — tiếng rao */
.voice-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

@media (min-width: 860px) {
  .voice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.voice-card {
  margin: 0;
  background: #fffdf6;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.2rem;
  box-shadow: var(--shadow-fair);
  position: relative;
}

.voice-card::after {
  content: '';
  position: absolute;
  left: 26px;
  bottom: -14px;
  width: 22px;
  height: 22px;
  background: #fffdf6;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}

.voice-card__stars {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-shadow: 1px 1px 0 rgba(51, 32, 26, 0.3);
  margin-bottom: 0.5rem;
}

.voice-card__text {
  font-size: 0.94rem;
  font-style: italic;
  color: #4c332b;
}

.voice-card__author {
  margin: 1.6rem 0 0;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--red);
}

/* Stage — sân khấu chính */
.stage {
  position: relative;
  text-align: center;
  margin: 2rem 0 3rem;
  padding: 3rem 8% 2.6rem;
  background: var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow-fair);
  color: var(--paper);
  overflow: hidden;
}

.stage::before,
.stage::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  background: repeating-linear-gradient(180deg, var(--red-deep) 0 18px, var(--red) 18px 36px);
  border: 2px solid var(--red-deep);
}

.stage::before {
  left: 0;
  border-radius: var(--radius) 0 0 var(--radius);
}

.stage::after {
  right: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.stage h2 {
  color: var(--gold-soft);
  text-shadow: 2px 2px 0 rgba(51, 32, 26, 0.35);
}

.stage p {
  color: rgba(253, 243, 224, 0.92);
}

/* ============================================================
   6. CTA button — vé vào cổng
   ============================================================ */
.cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  color: var(--red-deep);
  background: linear-gradient(160deg, var(--gold-soft), var(--gold) 60%, #b58300);
  border: 2px dashed var(--red-deep);
  border-radius: var(--radius-sm);
  padding: 0.85rem 2.4rem;
  box-shadow: 5px 5px 0 rgba(51, 32, 26, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  color: var(--red-deep);
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 8px 8px 0 rgba(51, 32, 26, 0.3);
}

.cta-btn--block {
  display: block;
  width: max-content;
  margin-inline: auto;
}

.cta-strip {
  text-align: center;
  padding: 2.4rem 1rem;
  margin: 2rem 0 3rem;
  border: 2px dashed var(--ink);
  border-radius: var(--radius);
  background: var(--paper-deep);
}

/* ============================================================
   7. Breadcrumbs
   ============================================================ */
.breadcrumbs {
  padding: 1rem 0 0;
  font-size: 0.85rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #6b4c40;
}

.breadcrumbs li + li::before {
  content: '➤';
  margin-right: 0.4rem;
  color: var(--gold);
  font-size: 0.7rem;
}

.breadcrumbs a {
  color: #6b4c40;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs [aria-current="page"] {
  color: var(--red);
  font-weight: 700;
}

/* ============================================================
   8. Archive — gian hàng bài viết
   ============================================================ */
.page-head {
  padding: 2.2rem 0 0.6rem;
}

.post-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
  padding: 1.6rem 0 3rem;
}

@media (min-width: 640px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  background: #fffdf6;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-fair);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.post-card::before {
  content: '';
  display: block;
  height: 14px;
  background-image: repeating-linear-gradient(90deg, currentColor 0 14px, #fffdf6 14px 28px);
  border-bottom: 2px solid var(--ink);
}

.post-grid .post-card:nth-child(4n + 1),
.related-block .post-card:nth-child(3n + 1) { color: var(--red); }
.post-grid .post-card:nth-child(4n + 2),
.related-block .post-card:nth-child(3n + 2) { color: var(--green); }
.post-grid .post-card:nth-child(4n + 3),
.related-block .post-card:nth-child(3n + 3) { color: var(--gold); }
.post-grid .post-card:nth-child(4n + 4) { color: var(--pink); }

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 9px 9px 0 rgba(51, 32, 26, 0.2);
}

.post-card__media {
  display: block;
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card__body {
  padding: 1.1rem 1.2rem 1.4rem;
}

.post-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.post-card__title a {
  color: var(--ink);
}

.post-card__title a:hover {
  color: var(--red);
}

.post-card__excerpt {
  font-size: 0.9rem;
  color: #5a4038;
  margin-bottom: 0.8rem;
}

.post-card__meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: #6b4c40;
}

/* Pagination */
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.5rem 0 3rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.7rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 700;
  background: #fffdf6;
  box-shadow: 3px 3px 0 rgba(51, 32, 26, 0.2);
}

.page-numbers.current {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}

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

.page-numbers.current:hover {
  color: var(--paper);
}

/* ============================================================
   9. Single post — áp phích hội xuân
   ============================================================ */
.single-head {
  padding: 2.2rem 0 1rem;
  border-bottom: 3px dashed var(--ink);
}

.single-head h1 {
  max-width: 26ch;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b4c40;
  margin-bottom: 1.4rem;
}

.single-head img {
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-fair);
}

.entry-content {
  max-width: 760px;
}

.entry-content img {
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-fair);
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
}

.entry-content blockquote {
  margin: 1.7em 0;
  padding: 1.2rem 1.5rem;
  border: 2px solid var(--ink);
  border-left: 10px solid var(--gold);
  border-radius: var(--radius);
  background: #fffdf6;
  box-shadow: var(--shadow-fair);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--red-deep);
}

.related-block {
  padding: 2.5rem 0 3rem;
}

/* ============================================================
   10. Footer
   ============================================================ */
.site-footer {
  border-top: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper-deep);
  padding: 2.8rem 0 1.6rem;
  text-align: center;
}

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.6rem;
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
}

.site-footer__nav a {
  color: var(--paper-deep);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-footer__nav a:hover {
  color: var(--gold-soft);
}

.site-footer__badge {
  margin: 1.4rem 0;
}

.site-footer__disclaimer {
  max-width: 720px;
  margin: 1.2rem auto 0;
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(246, 230, 200, 0.72);
}

.site-footer__disclaimer p {
  margin: 0.3em 0;
}

.site-footer__copy {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: rgba(246, 230, 200, 0.45);
}

/* ============================================================
   11. Motion & a11y
   ============================================================ */
@keyframes fair-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.fair-banner__photo {
  animation: fair-bounce 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
