/*
Theme Name: DAB Coaching
Description: A classic WordPress theme based on the DAB Coaching homepage design, with a dynamic Curated News section and WordPress-powered contact form.
Author: DAB Coaching
Version: 1.1.0
Text Domain: dab-coaching
*/

:root {
      /* ===== 6-COLOR PALETTE ===== */
      --navy:   #0f1d3d;   /* dark surfaces + headings */
      --crimson:#c2102e;   /* primary action accent */
      --gold:   #f2b441;   /* secondary accent / highlight */
      --cream:  #e7d8c0;   /* page background */
      --paper:  #fdf6ea;   /* cards / light surfaces */
      --ink:    #2b2419;   /* body text */
      /* ---- derived tints (opacity of the 6, not new colors) ---- */
      --navy-12:  rgba(15, 29, 61, 0.12);
      --navy-06:  rgba(15, 29, 61, 0.06);
      --gold-22:  rgba(242, 180, 65, 0.22);
      --gold-12:  rgba(242, 180, 65, 0.12);
      --crimson-10: rgba(194, 16, 46, 0.10);
      --muted:    rgba(43, 36, 25, 0.62);
      --border:   rgba(43, 36, 25, 0.18);
      --shadow: 0 20px 48px rgba(15, 29, 61, 0.20);
      --soft-shadow: 0 12px 28px rgba(15, 29, 61, 0.10);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: "Bitter", Georgia, serif;
      font-size: 18px;
      line-height: 1.62;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    .wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
    h1, h2, h3, h4 {
      margin: 0;
      font-family: "Fira Sans", Arial, sans-serif;
      line-height: 1.05;
      letter-spacing: -0.035em;
    }
    p { margin: 16px 0 0; }
    /* ===== RIBBON ===== */
    .top-ribbon {
      background: linear-gradient(90deg, var(--crimson), #8c0a20);
      color: var(--paper);
      padding: 12px 14px;
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-align: center;
      text-transform: uppercase;
    }
    .top-ribbon a { color: var(--gold); text-decoration: underline; }
    /* ===== NAV ===== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--navy);
      border-bottom: 4px solid var(--gold);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 0;
      flex-wrap: wrap;
    }
    .logo {
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 1.5rem;
      font-weight: 900;
      letter-spacing: 0.02em;
      color: var(--paper);
      text-transform: uppercase;
    }
    .logo span { color: var(--gold); }
    .menu { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
    .menu a {
      padding: 9px 14px;
      border-radius: 999px;
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 0.92rem;
      font-weight: 800;
      color: #d9d2c5;
      transition: background 150ms ease, color 150ms ease;
    }
    .menu a:hover { background: rgba(255,255,255,0.08); color: var(--paper); }
    .menu a.cta-btn {
      background: linear-gradient(180deg, #ffd97a, var(--gold));
      color: var(--navy);
      box-shadow: 0 6px 0 #a8760f;
    }
    .menu a.cta-btn:hover { color: var(--navy); transform: translateY(1px); box-shadow: 0 4px 0 #a8760f; }
    /* ===== HERO ===== */
    .hero {
      overflow: hidden;
      color: var(--paper);
      background:
        radial-gradient(circle at 14% 16%, rgba(242, 180, 65, 0.30), transparent 30%),
        radial-gradient(circle at 84% 22%, rgba(242, 180, 65, 0.14), transparent 32%),
        radial-gradient(circle at 62% 92%, rgba(194, 16, 46, 0.26), transparent 30%),
        linear-gradient(135deg, var(--navy), #060f24);
      padding: 64px 0 84px;
      border-bottom: 8px solid var(--gold);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(290px, 0.88fr);
      gap: 42px;
      align-items: center;
    }
    .eyebrow {
      display: inline-block;
      margin: 0 0 20px;
      padding: 8px 14px;
      border: 2px solid #ffbf00;
      border-radius: 999px;
      background: #e7d8c0 !important;
      color: var(--crimson);
      box-shadow: none;
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 0.86rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .hero h1 {
      font-size: clamp(2.3rem, 5.6vw, 4.6rem);
      font-weight: 900;
      text-transform: uppercase;
    }
    .hero h1 .l1 { display: block; color: var(--gold); }
    .hero h1 .l2 { display: block; color: var(--paper); }
    .hero-subhead {
      max-width: 560px;
      margin: 24px 0 0;
      color: #f1ece1;
      font-size: clamp(1.08rem, 2vw, 1.28rem);
      font-weight: 700;
    }
    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin: 30px 0 0;
    }
    .checks {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      margin: 26px 0 0;
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 0.92rem;
      font-weight: 800;
      color: #e6ddcf;
    }
    .checks span { display: flex; align-items: center; gap: 7px; }
    .checks span::before { content: "✓"; color: var(--gold); font-weight: 900; }
    .button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 56px;
      padding: 16px 28px;
      border: 0;
      border-radius: 999px;
      color: var(--navy);
      background: linear-gradient(180deg, #ffd97a, var(--gold));
      box-shadow: 0 12px 0 #a8760f, 0 18px 35px rgba(15, 29, 61, 0.24);
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 1rem;
      font-weight: 900;
      line-height: 1.1;
      text-align: center;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 150ms ease, box-shadow 150ms ease;
    }
    .button:hover {
      transform: translateY(2px);
      box-shadow: 0 9px 0 #a8760f, 0 14px 27px rgba(15, 29, 61, 0.22);
    }
    .button.red-button {
      color: var(--paper);
      background: linear-gradient(180deg, #e23a52, var(--crimson));
      box-shadow: 0 12px 0 #6f0a19, 0 18px 35px rgba(15, 29, 61, 0.22);
    }
    .button.red-button:hover { box-shadow: 0 9px 0 #6f0a19, 0 14px 27px rgba(15, 29, 61, 0.22); }
    /* HERO "WHO IS THIS FOR" CARD */
    .hero-card {
      padding: 28px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(242, 180, 65, 0.40);
      box-shadow: var(--shadow);
    }
    .hero-card h3 { color: var(--paper); font-size: 1.4rem; }
    .hero-card .small { color: #d9d2c5; font-size: 0.96rem; margin: 6px 0 16px; }
    .who-list { list-style: none; margin: 0; padding: 0; }
    .who-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(242,180,65,0.18);
      font-family: "Fira Sans", Arial, sans-serif;
      font-weight: 700;
      color: var(--paper);
    }
    .who-list li:last-child { border-bottom: 0; }
    .who-list li::before { content: "✓"; color: var(--gold); font-weight: 900; }
    /* ===== STATS ===== */
    .stats { background: var(--cream); }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      text-align: center;
      margin: -36px auto 0;
      max-width: 1000px;
      background: var(--paper);
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
      z-index: 5;
    }
    .stat { padding: 30px 14px; border-right: 1px solid var(--border); }
    .stat:last-child { border-right: 0; }
    .stat .num {
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 2.6rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--navy);
    }
    .stat .num.gold { color: var(--gold); }
    .stat .num.crimson { color: var(--crimson); }
    .stat .lbl {
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
    }
    /* ===== SECTIONS ===== */
    section.block { padding: 70px 0; border-bottom: 1px solid var(--border); }
    section.block:last-of-type { border-bottom: 0; }
    .sec-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
    .lead {
      margin: 0 0 10px;
      color: var(--crimson);
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 1rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .sec-head h2 {
      color: var(--navy);
      font-size: clamp(2rem, 4.2vw, 3.2rem);
      font-weight: 900;
      text-transform: uppercase;
    }
    .sec-head p { color: var(--ink); font-size: 1.12rem; font-weight: 600; }
    .highlight-line {
      display: inline;
      background: linear-gradient(transparent 56%, var(--gold-22) 56%);
      font-weight: 900;
    }
    /* ===== ABOUT ===== */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .founder {
      padding: 30px;
      border-radius: 22px;
      background: var(--paper);
      border: 1px solid var(--border);
      border-top: 6px solid var(--gold);
      box-shadow: var(--soft-shadow);
    }
    .founder.crimson-top { border-top-color: var(--crimson); }
    .avatar {
      width: 78px; height: 78px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 18px;
      margin-bottom: 16px;
      background: linear-gradient(135deg, var(--navy), #060f24);
      color: var(--gold);
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 1.7rem;
      font-weight: 900;
    }
    .founder h3 { color: var(--navy); font-size: 1.55rem; }
    .founder .role {
      margin: 4px 0 12px;
      font-family: "Fira Sans", Arial, sans-serif;
      font-weight: 800;
      font-size: 0.92rem;
      color: var(--crimson);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .founder p { margin: 0; color: var(--ink); font-size: 1rem; }
    /* ===== BENEFITS ===== */
    .benefits { background: var(--cream); }
    .ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .ben-card {
      padding: 26px;
      border-radius: 20px;
      background: var(--paper);
      border: 1px solid var(--border);
      box-shadow: var(--soft-shadow);
      transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
    }
    .ben-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: var(--navy);
    }
    .ben-icon {
      width: 54px; height: 54px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 14px;
      margin-bottom: 14px;
      font-size: 1.6rem;
      background: var(--gold-22);
    }
    .ben-card h4 { color: var(--navy); font-size: 1.2rem; }
    .ben-card p { margin: 8px 0 0; color: var(--ink); font-size: 0.98rem; }
    /* ===== PRODUCTS ===== */
    .prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .prod {
      display: flex;
      flex-direction: column;
      border-radius: 22px;
      overflow: hidden;
      background: var(--paper);
      border: 1px solid var(--border);
      box-shadow: var(--soft-shadow);
    }
    .prod-top {
      padding: 16px 22px;
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--paper);
      background: var(--navy);
    }
    .prod:nth-child(2) .prod-top { background: var(--crimson); }
    .prod:nth-child(3) .prod-top { background: linear-gradient(180deg, #ffd97a, var(--gold)); color: var(--navy); }
    .prod-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
    .prod-body h3 { color: var(--navy); font-size: 1.3rem; }
    .prod-body p { color: var(--ink); font-size: 0.98rem; flex: 1; }
    .prod-body a.plink {
      display: inline-block;
      margin-top: 18px;
      padding: 13px;
      text-align: center;
      border-radius: 999px;
      background: var(--navy-06);
      border: 1px solid var(--border);
      font-family: "Fira Sans", Arial, sans-serif;
      font-weight: 900;
      color: var(--navy);
      text-transform: uppercase;
      font-size: 0.86rem;
      letter-spacing: 0.04em;
      transition: background 150ms ease, color 150ms ease;
    }
    .prod-body a.plink:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    /* ===== QUOTE STRIP ===== */
    .quote-strip {
      padding: 64px 24px;
      text-align: center;
      color: var(--paper);
      background: linear-gradient(135deg, var(--navy), #060f24);
    }
    .quote-strip .stars { font-size: 1.5rem; letter-spacing: 6px; color: var(--gold); }
    .quote-strip blockquote {
      max-width: 800px;
      margin: 16px auto 14px;
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }
    .quote-strip cite { font-style: normal; font-weight: 800; color: var(--gold); }
    /* ===== NEWS ===== */
    .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .news-card {
      padding: 26px;
      border-radius: 20px;
      background: var(--paper);
      border: 1px solid var(--border);
      box-shadow: var(--soft-shadow);
      transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
    }
    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: var(--navy);
    }
    .news-card .cat {
      display: inline-block;
      margin-bottom: 12px;
      padding: 6px 12px;
      border-radius: 999px;
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: var(--navy-06);
      color: var(--navy);
    }
    .news-card:nth-child(2) .cat { background: var(--crimson-10); color: var(--crimson); }
    .news-card:nth-child(3) .cat { background: var(--gold-22); color: #8a6512; }
    .news-card h4 { color: var(--navy); font-size: 1.2rem; }
    .news-card p { margin: 8px 0 0; color: var(--ink); font-size: 0.96rem; }
    .news-card .read {
      display: inline-block;
      margin-top: 14px;
      font-family: "Fira Sans", Arial, sans-serif;
      font-weight: 900;
      font-size: 0.9rem;
      color: var(--crimson);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    /* ===== CONTACT ===== */
    .contact { background: var(--cream); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
    .contact-info h3 { color: var(--navy); font-size: 1.6rem; }
    .contact-info p { color: var(--ink); }
    .contact-info .item {
      display: flex; align-items: center; gap: 12px;
      margin-top: 16px;
      font-family: "Fira Sans", Arial, sans-serif;
      font-weight: 800;
      color: var(--navy);
    }
    .contact-info .item .ic {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 12px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--navy), #060f24);
      color: var(--gold);
      font-size: 1.1rem;
    }
    form.cf {
      padding: 30px;
      border-radius: 22px;
      background: var(--paper);
      border: 1px solid var(--border);
      box-shadow: var(--soft-shadow);
    }
    form.cf label {
      display: block;
      margin-bottom: 6px;
      font-family: "Fira Sans", Arial, sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--navy);
    }
    form.cf input, form.cf textarea {
      width: 100%;
      margin-bottom: 18px;
      padding: 13px 15px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #fff;
      font-family: "Bitter", Georgia, serif;
      font-size: 1rem;
      color: var(--ink);
    }
    form.cf input:focus, form.cf textarea:focus { outline: none; border-color: var(--gold); }
    form.cf .button { width: 100%; }
    /* ===== FOOTER ===== */
    .footer {
      padding: 54px 0 40px;
      text-align: center;
      color: #c8d0de;
      background: var(--navy);
    }
    .footer .flogo {
      font-family: "Fira Sans", Arial, sans-serif;
      font-size: 1.5rem;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--paper);
    }
    .footer .flogo span { color: var(--gold); }
    .footer .fmenu {
      display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
      margin: 20px 0;
      font-family: "Fira Sans", Arial, sans-serif;
      font-weight: 800;
      font-size: 0.92rem;
    }
    .footer .fmenu a:hover { color: var(--gold); }
    .footer .copy {
      margin-top: 22px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.12);
      font-size: 0.84rem;
      opacity: 0.8;
    }
    /* ===== RESPONSIVE ===== */
    @media (max-width: 980px) {
      .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .ben-grid, .prod-grid, .news-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat:nth-child(2) { border-right: 0; }
    }
    @media (max-width: 600px) {
      body { font-size: 17px; }
      .ben-grid, .prod-grid, .news-grid { grid-template-columns: 1fr; }
      .menu a { font-size: 0.84rem; padding: 7px 10px; }
      .logo { font-size: 1.25rem; }
      .button { width: 100%; }
    }

/* ===== WORDPRESS THEME SUPPORT ===== */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--paper);
  clip: auto !important;
  clip-path: none;
  color: var(--navy);
  display: block;
  font-size: 14px;
  font-weight: 800;
  height: auto;
  left: 8px;
  line-height: normal;
  padding: 12px 16px;
  top: 8px;
  width: auto;
  z-index: 100000;
}

.menu ul,
.menu-list,
.footer-menu-list {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li { margin: 0; }
.menu .current-menu-item > a,
.menu .current_page_item > a { color: var(--paper); background: rgba(255,255,255,0.08); }
.menu .cta-btn > a,
.menu a.cta-btn {
  background: linear-gradient(180deg, #ffd97a, var(--gold));
  color: var(--navy);
  box-shadow: 0 6px 0 #a8760f;
}
.menu .cta-btn > a:hover,
.menu a.cta-btn:hover { color: var(--navy); transform: translateY(1px); box-shadow: 0 4px 0 #a8760f; }

.site-brand-link { display: inline-block; }
.site-brand-link:hover { opacity: .96; }
.logo .custom-logo-link { display: block; }
.logo .custom-logo { width: auto; max-height: 56px; }

.page-hero {
  padding: 62px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 16%, rgba(242, 180, 65, 0.24), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(194, 16, 46, 0.20), transparent 32%),
    linear-gradient(135deg, var(--navy), #060f24);
  border-bottom: 6px solid var(--gold);
}

.dab-breadcrumbs {
  margin: 0 0 16px;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.45;
  text-transform: uppercase;
}
.dab-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dab-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.dab-breadcrumbs li + li::before {
  content: ">";
  margin: 0 9px;
  color: var(--gold);
  font-weight: 900;
}
.dab-breadcrumbs a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 246, 234, .38);
  transition: color 150ms ease, border-color 150ms ease;
}
.dab-breadcrumbs a:hover,
.dab-breadcrumbs a:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.dab-breadcrumbs [aria-current="page"] {
  color: var(--gold);
}

.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { color: var(--paper); font-size: clamp(2.2rem, 5vw, 4rem); text-transform: uppercase; }
.page-hero p { max-width: 760px; color: #f1ece1; font-weight: 700; }

.content-area { padding: 64px 0 76px; }
.content-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--soft-shadow);
}
.content-card.wide { width: 100%; }
.entry-title { color: var(--navy); font-size: clamp(2rem, 4vw, 3.3rem); }
.entry-meta {
  margin-top: 12px;
  color: var(--muted);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.entry-meta a { color: var(--crimson); }
.entry-content { margin-top: 28px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2,
.entry-content h3,
.entry-content h4 { color: var(--navy); margin-top: 34px; }
.entry-content h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.entry-content h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.entry-content a { color: var(--crimson); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.entry-content ul,
.entry-content ol { margin: 18px 0 0 24px; padding: 0; }
.entry-content li { margin: 8px 0; }
.entry-content blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 6px solid var(--gold);
  background: var(--gold-12);
  color: var(--navy);
  font-weight: 700;
}
.entry-content img,
.wp-block-image img { border-radius: 18px; }
.entry-content table { width: 100%; border-collapse: collapse; margin-top: 22px; }
.entry-content th,
.entry-content td { border: 1px solid var(--border); padding: 12px; text-align: left; }
.entry-content th { background: var(--navy); color: var(--paper); font-family: "Fira Sans", Arial, sans-serif; }

.post-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--soft-shadow);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--navy); }
.post-card .cat {
  align-self: flex-start;
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy-06);
  color: var(--navy);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.post-card h2,
.post-card h3 { color: var(--navy); font-size: 1.35rem; }
.post-card p { flex: 1; }
.post-card .read { margin-top: 18px; color: var(--crimson); font-family: "Fira Sans", Arial, sans-serif; font-weight: 900; text-transform: uppercase; font-size: .9rem; }

.pagination { margin-top: 38px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pagination a,
.pagination .current {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--navy);
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 900;
}
.pagination .current,
.pagination a:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }

.post-navigation { margin-top: 34px; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-navigation a { display: block; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--navy-06); color: var(--navy); font-family: "Fira Sans", Arial, sans-serif; font-weight: 800; }

.comments-area { width: min(900px, 100%); margin: 28px auto 0; padding: 30px; border-radius: 22px; background: var(--paper); border: 1px solid var(--border); box-shadow: var(--soft-shadow); }
.comments-title,
.comment-reply-title { color: var(--navy); }
.comment-list { list-style: none; padding: 0; }
.comment-list .children { list-style: none; }
.comment-body { padding: 18px 0; border-bottom: 1px solid var(--border); }
.comment-meta { font-family: "Fira Sans", Arial, sans-serif; font-size: .9rem; font-weight: 800; }
.comment-form label { display: block; margin: 14px 0 6px; color: var(--navy); font-family: "Fira Sans", Arial, sans-serif; font-weight: 800; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-form input[type="search"] {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.comment-form .submit,
.search-form .search-submit {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--crimson);
  color: var(--paper);
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.form-notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--gold-12);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 800;
}
.form-notice.error { background: var(--crimson-10); border-color: var(--crimson); color: var(--crimson); }

.footer-menu-list { justify-content: center; gap: 18px; }
.footer-menu-list a:hover { color: var(--gold); }
.footer a { color: inherit; }
.footer .copy a { color: var(--gold); text-decoration: underline; }

.alignwide { margin-left: auto; margin-right: auto; max-width: 1080px; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption, .gallery-caption { max-width: 100%; }
.sticky { outline: 2px solid var(--gold); outline-offset: 4px; }
.bypostauthor { }

@media (max-width: 980px) {
  .post-list-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .post-list-grid { grid-template-columns: 1fr; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .nav-inner { align-items: flex-start; }
  .menu { width: 100%; }
}
