/* ============ Design tokens ============ */
:root {
  --color-navy: #24463d;      /* 深緑（旧: 紺） */
  --color-navy-dark: #17302a; /* 濃い深緑 */
  --color-navy-light: #3c6a5c;/* 明るい深緑 */
  --color-gold: #c1552c;      /* テラコッタ（旧: 金） */
  --color-bg: #fefdfa;
  --color-bg-soft: #f4f1e9;
  --color-border: #e6e1d3;
  --color-text: #26251f;
  --color-text-soft: #6b6558;
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --max-width: 1080px;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(23, 48, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.4; font-weight: 700; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
ul { padding-left: 1.3em; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap;
}

/* ============ Summary lede (要約ファースト) ============ */
.lede {
  font-size: 1em;
  line-height: 1.85;
  color: var(--color-navy-dark);
  background: var(--color-bg-soft);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 0 0 2em;
  font-weight: 500;
}

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--color-navy-dark);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-color: var(--color-gold);
  color: var(--color-navy);
}

@media (max-width: 820px) {
  .site-header .container { height: 56px; }
  .brand { font-size: 0.98rem; }
  .brand small { font-size: 0.62rem; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .main-nav.is-open { max-height: 420px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 20px 16px; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
}

/* ============ Hero ============ */
.hero {
  background: var(--color-navy-dark);
  background-image: linear-gradient(120deg, rgba(23,48,42,0.94), rgba(23,48,42,0.75)), url("../img/fukuoka-skyline-momochi.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 48px 0 48px;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero .container {
  width: 100%;
  position: relative;
}
.hero-name,
.hero-slogan,
.hero-actions {
  max-width: 600px;
}
.hero-actions {
  margin-top: 36px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  margin-bottom: 18px;
  color: #e8eef4;
}

/* --- Name block: name is the star (ver2) --- */
.hero-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 16px;
  margin-bottom: 6px;
}
.hero-name h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.1;
}
.hero-name-en {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.hero-name-role {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-navy-dark);
  background: #fff;
  padding: 3px 12px;
  border-radius: 999px;
  margin-top: 8px;
}
.hero-slogan {
  font-size: 1.05rem;
  color: #b9c6cf;
  max-width: 44ch;
  margin: 22px 0 0;
}
.hero p.lede-hero {
  font-size: 1.05rem;
  color: #dbe6ef;
  max-width: 46ch;
}

/* --- Result badges: catalog-style, bold & high-contrast --- */
.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-badges > li {
  flex: 1 1 0;
  min-width: 0;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-badge {
  display: block;
  background: #fff;
  color: var(--color-navy-dark);
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  padding: 12px 16px 10px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.32);
  border-color: var(--color-navy);
}
.hero-badge-value {
  display: block;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
}
.hero-badge-value small {
  font-size: 1.05rem;
  font-weight: 700;
  margin-left: 2px;
}
.hero-badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.hero-badge-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 2px;
}

.hero-photo-cutout {
  position: absolute;
  top: -130px;
  right: 0;
  bottom: -155px;
  width: 42%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.hero-photo-cutout picture {
  display: block;
  height: 100%;
}
.hero-photo-cutout img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
}
@media (max-width: 820px) {
  .hero { padding: 24px 0 10px; min-height: 0; }
  .hero .container { display: flex; flex-direction: column; }
  .hero-name, .hero-slogan, .hero-actions { max-width: none; }
  .hero-name { justify-content: center; }
  .hero-name h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-slogan { margin: 14px auto 0; text-align: center; font-size: 0.92rem; }
  .hero-photo-cutout {
    position: static;
    width: 100%;
    bottom: auto;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 14px 0 0;
  }
  .hero-photo-cutout img { height: 440px; width: auto; max-height: none; max-width: none; }
  .hero-actions {
    margin-top: 4px;
  }
  .hero-badges { justify-content: center; }
  .hero-buttons { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-badges { gap: 8px; }
  .hero-badge { padding: 8px 6px 6px; }
  .hero-badge-value { font-size: clamp(1.5rem, 8vw, 2.1rem); }
  .hero-badge-label { font-size: 0.62rem; }
  .hero-badge-sub { font-size: 0.58rem; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--color-gold); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(180,140,58,0.35); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost { background: var(--color-bg-soft); color: var(--color-navy-dark); border: 1px solid var(--color-border); }
.btn-ghost:hover { background: #eaf0f5; }

/* ============ Sections ============ */
section { padding: 64px 0; }
section.alt { background: var(--color-bg-soft); }
.section-head { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.section-head h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--color-navy-dark); }
.section-head .kicker {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ============ Cards grid ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
a.card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(15,53,89,0.14); }
.card .num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}
.card h3 { margin: 8px 0 10px; font-size: 1.15rem; color: var(--color-navy-dark); }
.card p { color: var(--color-text-soft); font-size: 0.94rem; margin-bottom: 0; }
.card { padding: 0; overflow: hidden; }
.card .card-photo { width: 100%; height: 150px; object-fit: cover; }
.card .card-body { padding: 24px 28px 28px; }

/* ============ Stat highlight cards ============ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.stat-card .value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-navy);
  display: block;
}
.stat-card .value small { font-size: 0.95rem; font-weight: 600; }
.stat-card .label { font-size: 0.86rem; color: var(--color-text-soft); margin-top: 6px; }

/* ============ News list ============ */
.news-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--color-border); }
.news-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
}
.news-item time {
  color: var(--color-text-soft);
  font-size: 0.82rem;
  display: block;
  margin-top: 6px;
}
.news-item .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-bg-soft);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 6px;
}
.news-item h3 { margin: 0; font-size: 1.02rem; color: var(--color-navy-dark); }
.news-item:hover h3 { text-decoration: underline; }

/* ============ Breadcrumb ============ */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  padding: 16px 0 0;
}
.breadcrumb a { color: var(--color-text-soft); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============ Page header (inner pages) ============ */
.page-head {
  background: var(--color-bg-soft);
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--color-border);
}
.page-head h1 { color: var(--color-navy-dark); font-size: clamp(1.5rem, 3vw, 2rem); }
@media (max-width: 820px) {
  .page-head { padding: 16px 0 20px; }
  .page-head h1 { font-size: clamp(1.3rem, 6vw, 1.6rem); }
}

/* ============ Prose / content blocks ============ */
.prose { max-width: 760px; }
.prose h2 { color: var(--color-navy-dark); font-size: 1.4rem; margin-top: 2em; }
.prose h3 { color: var(--color-navy); font-size: 1.12rem; margin-top: 1.6em; }
.summary-box {
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 500;
  margin: 0.6em 0 1.4em;
}

/* ============ Timeline ============ */
.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--color-border); }
.timeline li { position: relative; padding: 0 0 22px 24px; }
.timeline li::before {
  content: "";
  position: absolute; left: -6px; top: 4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-gold);
}
.timeline .t-year { font-weight: 700; color: var(--color-navy); margin-right: 8px; }

/* ============ Chart blocks ============ */
.chart-block {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.chart-block h3 { color: var(--color-navy-dark); margin-bottom: 4px; }
.chart-block .chart-note { font-size: 0.86rem; color: var(--color-text-soft); margin-bottom: 16px; }
.chart-svg { width: 100%; height: auto; display: block; }
@media (max-width: 820px) {
  .chart-svg text { font-size: 22px; }
}
.data-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; margin-top: 14px; overflow-x: auto; display: block; }
.data-table th, .data-table td { border: 1px solid var(--color-border); padding: 6px 8px; text-align: right; white-space: nowrap; }
.data-table th:first-child, .data-table td:first-child { text-align: left; }

/* ============ FAQ ============ */
.faq-item { border-bottom: 1px solid var(--color-border); padding: 18px 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-navy-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--color-gold); font-size: 1.3rem; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 12px; color: var(--color-text-soft); }

/* ============ Video embed ============ */
.video-embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a2440;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--color-navy-dark);
  color: #cdd8e2;
  padding: 48px 0 28px;
  margin-top: 40px;
  font-size: 0.9rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { font-weight: 700; color: #fff; margin-bottom: 8px; }
.sns-links { display: flex; gap: 12px; list-style: none; padding: 0; margin: 0; }
.sns-links a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  text-decoration: none; color: #fff;
  transition: background .2s ease;
}
.sns-links a svg { width: 18px; height: 18px; }
.sns-links a:hover { background: var(--color-gold); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: #cdd8e2; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-top: 18px; font-size: 0.8rem; color: #93a4b3;
}

/* ============ Utility ============ */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.tag-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-bg-soft);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0 6px 6px 0;
}

/* ============ Stat cards as links w/ sparkline ============ */
a.stat-card { text-decoration: none; color: inherit; display: block; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
a.stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(23,48,42,0.12); border-color: var(--color-navy-light); }
.stat-card .spark { width: 100%; height: 40px; margin-top: 10px; display: block; }
.stat-card .jump { display: block; font-size: 0.74rem; color: var(--color-gold); font-weight: 700; margin-top: 8px; }

/* ============ Figures / photos in prose ============ */
.figure { margin: 1.6em 0; }
.figure img { border-radius: var(--radius); width: 100%; height: auto; }
.figure figcaption { font-size: 0.8rem; color: var(--color-text-soft); margin-top: 8px; text-align: center; }
.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 1.8em 0;
}
@media (max-width: 700px) { .media-row { grid-template-columns: 1fr; } }
.media-row .figure { margin: 0; }
.media-row.thirds { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .media-row.thirds { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .media-row.thirds { grid-template-columns: 1fr; } }

/* ============ Policy pillar icon rows ============ */
.icon-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin: 1.6em 0 2em;
}
.icon-item {
  text-align: center;
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: 20px 12px;
}
.icon-item svg { width: 40px; height: 40px; margin: 0 auto 10px; display: block; color: var(--color-navy); }
.icon-item .icon-label { font-size: 0.82rem; font-weight: 600; color: var(--color-navy-dark); }

/* ============ Before/after compare bars (infographic) ============ */
.compare {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 1.6em 0;
}
.compare-row { margin-bottom: 16px; }
.compare-row:last-child { margin-bottom: 0; }
.compare-label { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; }
.compare-label strong { color: var(--color-navy-dark); }
.compare-track { background: var(--color-bg-soft); border-radius: 999px; height: 14px; overflow: hidden; }
.compare-fill { height: 100%; border-radius: 999px; background: var(--color-navy); }
.compare-fill.accent { background: var(--color-gold); }

/* ============ Inline stat badges within prose ============ */
.inline-stats { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.4em 0; }
.inline-stat {
  flex: 1 1 140px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
}
.inline-stat .n { display: block; font-size: 1.3rem; font-weight: 800; color: var(--color-navy); }
.inline-stat .l { font-size: 0.76rem; color: var(--color-text-soft); }

/* ============ News thumbnails ============ */
.news-item img {
  width: 120px; height: 84px; object-fit: cover; border-radius: 6px; flex: 0 0 auto;
}
.article-hero { border-radius: var(--radius); overflow: hidden; margin: 0 0 28px; }
.article-hero img { width: 100%; height: auto; display: block; }

/* ============ Photo credit ============ */
.photo-credit { font-size: 0.72rem; color: var(--color-text-soft); opacity: 0.8; }

/* ============ Profile hero (photo + lede) ============ */
.profile-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 2em;
}
@media (max-width: 700px) {
  .profile-hero { grid-template-columns: 1fr; }
  .profile-hero .figure { max-width: 100%; margin: 0 auto; }
}

/* ============ Media appearances (YouTube) ============ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 1.6em 0 2em;
}
@media (max-width: 900px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .media-grid { grid-template-columns: 1fr; } }
.media-card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.media-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(15,53,89,0.14); }
.media-thumb { position: relative; aspect-ratio: 16/9; background: #17302a; }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-thumb::before {
  content: "";
  position: absolute; right: 8px; bottom: 8px;
  width: 44px; height: 31px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 64'%3E%3Cpath d='M88 10c-1-4-4-7-8-8C72 0 45 0 45 0S18 0 10 2C6 3 3 6 2 10 0 18 0 32 0 32s0 14 2 22c1 4 4 7 8 8 8 2 35 2 35 2s27 0 35-2c4-1 7-4 8-8 2-8 2-22 2-22s0-14-2-22z' fill='%23FF0000'/%3E%3Cpolygon points='36,20 36,44 58,32' fill='%23FFFFFF'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.55));
  z-index: 1;
}
.media-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(23,48,42,0.15);
  opacity: 0; transition: opacity .18s ease;
}
.media-card:hover .media-thumb::after { opacity: 1; }
.media-body { padding: 16px 18px 18px; }
.media-channel {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-bg-soft);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.media-card h3 { font-size: 0.96rem; margin: 0 0 8px; color: var(--color-navy-dark); line-height: 1.5; }
.media-guest { font-size: 0.84rem; font-weight: 700; color: var(--color-gold); margin: 0; }
.media-note { font-size: 0.84rem; color: var(--color-text-soft); margin: 0; }

/* ============ Facebook page embed ============ */
.fb-embed {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}
.fb-embed .fb-page,
.fb-embed iframe {
  width: 100% !important;
  max-width: 100%;
}
