/* ============================================================
   Blog & Article Hub — Ozone Phrae · Editorial v2
   Modern magazine-style layout · Forest + Earth palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&family=Prompt:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --forest-50:   #f2f7f4;
  --forest-100:  #e1efe5;
  --forest-300:  #8fb898;
  --forest-500:  #3a7d44;
  --forest-700:  #2d5a27;
  --forest-900:  #1a3a18;
  --earth-50:    #fdf8f5;
  --earth-100:   #f6ecd9;
  --earth-300:   #d9b88a;
  --earth-500:   #8b5a2b;
  --earth-700:   #5c4033;
  --accent:      #c98a3c;
  --accent-soft: #fbe9cd;
  --warm:        #b8533a;

  --bg:        var(--earth-50);
  --surface:   #ffffff;
  --surface-2: #f5eee2;
  --border:    #ebe3d2;
  --border-2:  #e6dcc9;
  --text:      #14201a;
  --text-2:    #4a3d31;
  --muted:     #8b7f6e;

  --shadow-xs: 0 1px 2px rgba(45,90,39,0.04);
  --shadow-sm: 0 2px 8px rgba(45,90,39,0.06);
  --shadow:    0 12px 32px rgba(45,90,39,0.10);
  --shadow-lg: 0 28px 64px rgba(45,90,39,0.18);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;

  --ease:  cubic-bezier(.32,.72,.27,.99);
  --container: 1280px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Kanit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, .heading {
  font-family: 'Prompt', 'Kanit', sans-serif;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--forest-900);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ── Reading progress bar (used in article.php) ─────── */
#reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--forest-500), var(--accent));
  z-index: 1000;
  transition: width .08s linear;
}

/* ── Site bar (sticky brand strip) ──────────────────── */
.site-bar {
  background: rgba(253, 248, 245, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; z-index: 60;
  position: sticky; top: 0;
}
.site-bar-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  color: var(--forest-900); letter-spacing: 0.02em;
  min-width: 0; overflow: hidden;
}
.site-bar-brand img, .site-bar-ico {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--forest-500), var(--forest-700));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; object-fit: cover;
  box-shadow: 0 2px 6px rgba(45,90,39,0.25);
}
.site-bar-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-bar-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--forest-700);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.86rem; font-weight: 600; flex-shrink: 0;
  transition: all .2s var(--ease);
}
.site-bar-back:hover {
  background: var(--forest-700); color: #fff; border-color: var(--forest-700);
  transform: translateY(-1px);
}

/* ── Page intro (editorial header) ──────────────────── */
.page-intro {
  padding: 64px 24px 32px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .page-intro { padding: 96px 40px 48px; text-align: left; }
}
.page-intro .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-500);
  background: var(--forest-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.page-intro h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 820px;
}
.page-intro p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-2);
  max-width: 640px;
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-intro p { margin: 0 auto; }
}

/* ── Cover Story (editorial hero card) ──────────────── */
.cover-story {
  display: block;
  max-width: var(--container);
  margin: 0 auto 56px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .cover-story { padding: 0 40px; }
}
.cover-story-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
  position: relative;
}
.cover-story:hover .cover-story-card {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
@media (min-width: 900px) {
  .cover-story-card { grid-template-columns: 1.4fr 1fr; }
}
.cs-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
@media (min-width: 900px) {
  .cs-img-wrap { aspect-ratio: auto; min-height: 480px; }
}
.cs-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 8s var(--ease);
}
.cover-story:hover .cs-img {
  transform: scale(1.04);
}
.cs-img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--forest-700), var(--earth-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.4);
}
.cs-content {
  padding: 32px 28px 36px;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 900px) {
  .cs-content { padding: 56px 48px; }
}
.cs-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.cs-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
}
.cs-cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.86rem;
  color: var(--forest-700);
  font-weight: 500;
}
.cs-cat .cat-emoji { font-size: 1.1em; }
.cover-story h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 4px 0 6px;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--forest-900);
  line-height: 1.15;
}
.cs-excerpt {
  font-size: 1.02rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 8px;
  flex-wrap: wrap;
}
.cs-meta .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; opacity: 0.6; }
.cs-readmore {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-700);
  align-self: flex-start;
  transition: gap .25s var(--ease);
}
.cover-story:hover .cs-readmore { gap: 14px; color: var(--forest-900); }
.cs-readmore i { transition: transform .25s var(--ease); }
.cover-story:hover .cs-readmore i { transform: translateX(3px); }

/* ── Category Nav (sticky pill bar) ─────────────────── */
.cat-nav {
  position: sticky;
  top: 57px;
  z-index: 50;
  background: rgba(253, 248, 245, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-bottom: 40px;
}
.cat-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .cat-nav-inner { padding: 0 40px; }
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-inner a {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border-radius: 100px;
  background: transparent;
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
}
.cat-nav-inner a:hover {
  background: var(--surface);
  color: var(--forest-700);
  border-color: var(--border);
}
.cat-nav-inner a.active {
  background: var(--forest-900);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}

/* ── Section header ─────────────────────────────────── */
.section-head {
  max-width: var(--container);
  margin: 0 auto 24px;
  padding: 0 24px;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) {
  .section-head { padding: 0 40px; margin-bottom: 32px; }
}
.section-head h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.012em;
}
.section-head .count {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Article Grid (uniform, magazine style) ─────────── */
.article-grid {
  max-width: var(--container);
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 600px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .article-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 28px; padding: 0 40px; }
}

.article-card {
  display: flex; flex-direction: column;
  background: transparent;
  transition: transform .3s var(--ease);
}
.article-card:hover { transform: translateY(-4px); }

.ac-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s var(--ease);
}
.article-card:hover .ac-img-wrap { box-shadow: var(--shadow); }
.ac-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.article-card:hover .ac-img { transform: scale(1.05); }
.ac-img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--forest-100), var(--accent-soft));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: var(--forest-700);
  opacity: 0.6;
}

.ac-share {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 0;
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px);
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.article-card:hover .ac-share { opacity: 1; transform: translateY(0); }
.ac-share:hover { background: var(--forest-700); color: #fff; transform: scale(1.06); }

.ac-body {
  display: flex; flex-direction: column; gap: 8px;
}
.ac-cat {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem;
  color: var(--forest-500);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.ac-cat::before {
  content: '';
  width: 14px; height: 1.5px;
  background: var(--forest-500);
  opacity: 0.6;
}
.article-card h3 {
  font-size: 1.18rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.32;
  color: var(--forest-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s var(--ease);
}
.article-card:hover h3 { color: var(--forest-700); }
.ac-excerpt {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ac-meta {
  display: flex; align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  gap: 10px;
  margin-top: 6px;
}
.ac-meta .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; opacity: 0.6; }

/* ── Empty state ────────────────────────────────────── */
.empty-state {
  max-width: 480px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}
.empty-state .em-ico {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.empty-state h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  font-weight: 600;
}
.empty-state p {
  color: var(--muted);
  margin: 0 0 24px;
}
.empty-state a {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--forest-700);
  color: #fff;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all .2s var(--ease);
}
.empty-state a:hover { background: var(--forest-900); transform: translateY(-1px); }

/* ── Subscribe / Follow CTA (full-bleed) ────────────── */
.subscribe-cta {
  background:
    radial-gradient(circle at 85% 20%, rgba(217,184,138,0.22), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(58,125,68,0.25), transparent 55%),
    linear-gradient(135deg, var(--forest-900) 0%, #0e2412 100%);
  color: #fff;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .subscribe-cta { padding: 120px 40px; }
}
.subscribe-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,184,138,0.4), transparent);
}
.subscribe-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.subscribe-inner .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth-300);
  margin-bottom: 18px;
}
.subscribe-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.subscribe-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 32px;
  font-weight: 300;
  line-height: 1.65;
}
.subscribe-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.subscribe-actions a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.96rem;
  transition: all .2s var(--ease);
}
.subscribe-actions .primary {
  background: #fff;
  color: var(--forest-900);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.subscribe-actions .primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.32);
}
.subscribe-actions .ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
}
.subscribe-actions .ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
}

/* ── Footer (minimal) ───────────────────────────────── */
.blog-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
}
.blog-footer a { color: var(--forest-700); font-weight: 500; }

/* ── Article detail (used in article.php) ───────────── */
.article-hero {
  position: relative;
  height: clamp(280px, 50vh, 440px);
  overflow: hidden;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(253,248,245,1) 100%);
}
.article-container {
  max-width: 720px;
  margin: -80px auto 0;
  padding: 0 18px 80px;
  position: relative;
  z-index: 2;
}
.article-meta-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  font-size: 0.86rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.article-meta-top .cat-pill {
  background: var(--forest-700);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}
.article-meta-top .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.article-title {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--forest-900);
}
.article-excerpt {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 26px;
  font-weight: 300;
  border-left: 4px solid var(--forest-500);
  padding: 4px 0 4px 18px;
}
.article-body { font-size: 17px; line-height: 1.85; color: var(--text); }
.article-body p { margin: 0 0 1.2em; }
.article-body h2 { font-size: 1.55rem; margin: 1.8em 0 0.6em; color: var(--forest-900); }
.article-body h3 { font-size: 1.25rem; margin: 1.5em 0 0.5em; color: var(--forest-700); }
.article-body img { width: 100%; border-radius: var(--r); margin: 1.4em 0; box-shadow: var(--shadow); }
.article-body ul, .article-body ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.article-body li { margin-bottom: 0.4em; }
.article-body a:not(.article-cta) {
  color: var(--forest-700);
  border-bottom: 1px solid var(--forest-300);
  font-weight: 500;
}
.article-body blockquote {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  margin: 1.5em 0;
  padding: 14px 20px;
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--earth-700);
  font-style: italic;
}

/* In-article CTA card */
.article-cta {
  display: flex !important;
  align-items: stretch;
  margin: 1.8em 0;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--forest-100);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  color: var(--text) !important;
  text-decoration: none !important;
  border-bottom: 2px solid var(--forest-100) !important;
}
.article-cta:hover {
  transform: translateY(-2px);
  border-color: var(--forest-500) !important;
  box-shadow: var(--shadow-lg);
}
.article-cta .cta-img {
  width: 38%; min-height: 140px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.article-cta .cta-img-fallback {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--forest-100), var(--accent-soft));
}
.article-cta .cta-body {
  flex: 1; padding: 16px 18px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.article-cta .cta-tag {
  font-size: 0.74rem; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.article-cta .cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--forest-900); line-height: 1.25;
}
.article-cta .cta-meta { font-size: 0.85rem; color: var(--muted); margin: 2px 0 8px; }
.article-cta .cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--forest-500), var(--forest-700));
  color: #fff;
  padding: 9px 16px;
  border-radius: 22px;
  font-size: 0.86rem;
  font-weight: 600;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(45,90,39,0.25);
  transition: transform .15s;
}
.article-cta:hover .cta-btn { transform: scale(1.03); }
.article-cta.simple { display: block !important; }
.article-cta.simple .cta-body { padding: 18px 22px; }
@media (max-width: 520px) {
  .article-cta { flex-direction: column; }
  .article-cta .cta-img { width: 100%; min-height: 0; aspect-ratio: 16/9; }
}

/* Article footer (share + related) */
.article-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.share-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.share-row .label { font-size: 0.86rem; color: var(--muted); align-self: center; margin-right: 6px; }
.share-row button, .share-row a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 22px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-2);
  font-family: inherit; font-size: 0.86rem; font-weight: 500;
  cursor: pointer; transition: all .15s;
}
.share-row button:hover, .share-row a:hover {
  background: var(--forest-100); color: var(--forest-700); border-color: var(--forest-300);
}
.share-row .fb { background: #1877f2; color: #fff; border-color: transparent; }
.share-row .ln { background: #00B100; color: #fff; border-color: transparent; }
.related-head {
  font-family: 'Prompt', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--forest-900); margin: 0 0 14px;
}
.related-list { display: grid; gap: 14px; }
@media (min-width: 560px) { .related-list { grid-template-columns: 1fr 1fr; } }

/* ── Toast ──────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(26,58,24,0.96);
  color: #fff;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  z-index: 250;
  opacity: 0;
  transition: all .3s var(--ease);
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast i { color: var(--accent); }
