/* ============================================
   BLOG LISTING PAGE STYLES
   ============================================ */

.blog-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: center center / cover no-repeat;
  background-color: #111613;
  color: #fff;
  border-bottom: 1px solid rgba(61, 90, 58, 0.1);
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 22, 19, 0.55) 0%,
    rgba(17, 22, 19, 0.70) 55%,
    rgba(17, 22, 19, 0.90) 100%
  );
  pointer-events: none;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: calc(38px + 64px + 40px) 28px 80px;
}

.blog-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4A24C;
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 1.5px solid rgba(212, 162, 76, 0.4);
  border-radius: 50px;
  background: rgba(212, 162, 76, 0.08);
}

.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
  color: #fff;
}

.blog-hero p {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

.blog-section {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* BLOG CARD */
.blog-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(61, 90, 58, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  border-color: var(--accent, #3D5A3A);
  box-shadow: 0 8px 24px rgba(61, 90, 58, 0.12);
}

.blog-card-header {
  margin-bottom: 16px;
}

.blog-card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent, #3D5A3A);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px 0;
  line-height: 1.4;
  color: var(--text-primary, #1a1a1a);
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: var(--accent, #3D5A3A);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary, #666);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-weight: 300;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-tertiary, #999);
  margin-bottom: 20px;
  margin-top: auto;
}

.blog-card-meta span:not(.meta-dot) {
  font-weight: 400;
}

.meta-dot {
  width: 4px;
  height: 4px;
  background: var(--accent, #3D5A3A);
  border-radius: 50%;
  margin: 0 8px;
}

.blog-card-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent, #3D5A3A);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-cta:hover {
  color: var(--warm, #B8985A);
}

/* CTA SECTION */
.blog-cta-section {
  padding: 80px 0;
  text-align: center;
  background: rgba(61, 90, 58, 0.04);
  border-top: 1px solid rgba(61, 90, 58, 0.1);
  border-bottom: 1px solid rgba(61, 90, 58, 0.1);
}

.blog-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.blog-cta-section p {
  font-size: 16px;
  color: var(--text-secondary, #666);
  margin-bottom: 32px;
  font-weight: 300;
}

/* ============================================
   INDIVIDUAL BLOG POST STYLES
   ============================================ */

.blog-post {
  padding: 60px 0;
}

.blog-post-header {
  margin-bottom: 60px;
  max-width: 800px;
}

.blog-post-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent, #3D5A3A);
  margin-bottom: 16px;
}

.blog-post h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 500;
  margin: 0 0 24px 0;
  line-height: 1.2;
  color: var(--text-primary, #1a1a1a);
  letter-spacing: -0.5px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary, #666);
  font-weight: 400;
}

.blog-post-meta span:not(.meta-dot) {
  margin-right: 0;
}

/* BLOG POST BODY */
.blog-post-body {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 60px;
}

.blog-post-body p {
  margin-bottom: 24px;
  font-weight: 300;
}

.blog-post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  margin: 48px 0 24px 0;
  color: var(--text-primary, #1a1a1a);
  line-height: 1.3;
}

.blog-post-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin: 36px 0 16px 0;
  color: var(--text-primary, #1a1a1a);
}

.blog-post-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 12px 0;
  color: var(--text-primary, #1a1a1a);
  letter-spacing: 0.3px;
}

.blog-post-body strong {
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
}

.blog-post-body em {
  font-style: italic;
  color: var(--text-secondary, #666);
}

/* Lists */
.blog-post-body ul,
.blog-post-body ol {
  margin: 24px 0;
  padding-left: 24px;
}

.blog-post-body li {
  margin-bottom: 12px;
  font-weight: 300;
}

.blog-post-body ul li::marker {
  color: var(--accent, #3D5A3A);
}

.blog-post-body ol li::marker {
  color: var(--accent, #3D5A3A);
  font-weight: 600;
}

/* Blockquotes */
.blog-post-body blockquote {
  margin: 32px 0;
  padding: 24px;
  border-left: 4px solid var(--accent, #3D5A3A);
  background: rgba(61, 90, 58, 0.04);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary, #666);
}

.blog-post-body blockquote p {
  margin: 0 0 12px 0;
}

.blog-post-body blockquote p:last-child {
  margin-bottom: 0;
}

/* Links */
.blog-post-body a {
  color: var(--accent, #3D5A3A);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(61, 90, 58, 0.2);
  transition: all 0.2s ease;
}

.blog-post-body a:hover {
  border-bottom-color: var(--accent, #3D5A3A);
  color: var(--warm, #B8985A);
}

/* Tables */
.blog-post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.6;
}

.blog-post-body table thead {
  background: rgba(61, 90, 58, 0.08);
}

.blog-post-body table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
  border-bottom: 2px solid var(--accent, #3D5A3A);
}

.blog-post-body table td {
  padding: 16px;
  border-bottom: 1px solid rgba(61, 90, 58, 0.1);
}

.blog-post-body table tbody tr:hover {
  background: rgba(61, 90, 58, 0.04);
}

/* CTA BOX */
.blog-post-cta {
  max-width: 800px;
  padding: 48px;
  background: rgba(61, 90, 58, 0.04);
  border: 1px solid rgba(61, 90, 58, 0.1);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 60px;
}

.blog-post-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: var(--text-primary, #1a1a1a);
}

.blog-post-cta p {
  font-size: 16px;
  color: var(--text-secondary, #666);
  margin: 0 0 24px 0;
  font-weight: 300;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--accent, #3D5A3A);
  color: #fff;
}

.btn-primary:hover {
  background: var(--warm, #B8985A);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(61, 90, 58, 0.2);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 0 40px;
  }

  .blog-hero h1 {
    font-size: 42px;
  }

  .blog-hero p {
    font-size: 16px;
  }

  .blog-section {
    padding: 60px 0;
  }

  .blog-post {
    padding: 40px 0;
  }

  .blog-post-header {
    margin-bottom: 40px;
  }

  .blog-post h1 {
    font-size: 36px;
  }

  .blog-post-body h2 {
    font-size: 26px;
    margin: 36px 0 16px 0;
  }

  .blog-post-body h3 {
    font-size: 20px;
    margin: 28px 0 12px 0;
  }

  .blog-cta-section {
    padding: 60px 0;
  }

  .blog-cta-section h2 {
    font-size: 32px;
  }

  .blog-post-cta {
    padding: 32px 24px;
    margin-bottom: 40px;
  }

  .blog-post-cta h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 32px;
  }

  .blog-hero p {
    font-size: 14px;
  }

  .blog-grid {
    gap: 16px;
  }

  .blog-card {
    padding: 20px;
  }

  .blog-card h3 {
    font-size: 18px;
  }

  .blog-card-excerpt {
    font-size: 13px;
  }

  .blog-post h1 {
    font-size: 28px;
  }

  .blog-post-body {
    font-size: 15px;
  }

  .blog-post-body h2 {
    font-size: 22px;
  }

  .blog-post-body h3 {
    font-size: 18px;
  }

  .blog-cta-section h2 {
    font-size: 24px;
  }

  .blog-post-cta {
    padding: 24px 16px;
  }

  .blog-post-cta h3 {
    font-size: 18px;
  }
}

/* ============================================
   FLAGSHIP POST ENHANCEMENTS (Apr 2026 refresh)
   ============================================ */

/* --- POST HERO --- */
.post-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, rgba(61,90,58,0.06) 0%, rgba(184,152,90,0.03) 100%);
  border-bottom: 1px solid rgba(61,90,58,0.08);
}

.post-hero .container {
  max-width: 860px;
}

.post-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #3D5A3A);
  margin-bottom: 20px;
}

.post-hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent, #3D5A3A);
}

.post-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-primary, #1a1a1a);
  margin: 0 0 24px 0;
  max-width: 20ch;
}

.post-hero-dek {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--text-secondary, #555);
  max-width: 58ch;
  margin: 0 0 36px 0;
}

.post-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-secondary, #666);
  letter-spacing: 0.02em;
}

.post-hero-meta .meta-dot {
  width: 3px;
  height: 3px;
  background: var(--warm, #B8985A);
  border-radius: 50%;
}

.post-hero-meta .meta-chip {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(61,90,58,0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #3D5A3A);
}

/* --- ARTICLE LAYOUT (TOC + body) --- */
.post-layout {
  padding: clamp(48px, 6vw, 72px) 0;
}

.post-layout .container {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  max-width: 1180px;
}

@media (max-width: 960px) {
  .post-layout .container {
    grid-template-columns: 1fr;
  }
}

/* --- TABLE OF CONTENTS --- */
.post-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 24px 0;
  border-top: 2px solid var(--accent, #3D5A3A);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.post-toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm, #B8985A);
  margin: 0 0 16px 0;
}

.post-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.post-toc li {
  counter-increment: toc;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.post-toc li::before {
  content: counter(toc, decimal-leading-zero);
  display: inline-block;
  width: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--warm, #B8985A);
}

.post-toc a {
  color: var(--text-secondary, #666);
  text-decoration: none;
  border-bottom: 0;
  transition: color 0.2s ease;
}

.post-toc a:hover,
.post-toc a.is-active {
  color: var(--accent, #3D5A3A);
  font-weight: 500;
}

@media (max-width: 960px) {
  .post-toc {
    position: static;
    max-height: none;
    padding-bottom: 0;
  }
}

/* --- TL;DR BOX --- */
.post-tldr {
  margin: 0 0 48px 0;
  padding: 28px 32px;
  background: #fdfaf3;
  border: 1px solid rgba(184,152,90,0.25);
  border-left: 4px solid var(--warm, #B8985A);
  border-radius: 4px;
}

.post-tldr-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm, #B8985A);
  margin: 0 0 12px 0;
}

.post-tldr p,
.post-tldr ul {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-primary, #1a1a1a);
}

.post-tldr ul {
  padding-left: 18px;
}

.post-tldr li {
  margin-bottom: 6px;
  font-weight: 400;
}

/* --- PULL QUOTE --- */
.post-pullquote {
  margin: 48px auto;
  padding: 32px 24px;
  text-align: center;
  max-width: 660px;
  border-top: 2px solid rgba(61,90,58,0.15);
  border-bottom: 2px solid rgba(61,90,58,0.15);
}

.post-pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.45;
  color: var(--accent, #3D5A3A);
  margin: 0;
}

/* --- COMPARISON TABLE (flagship) --- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 36px 0;
  font-size: 14px;
  background: #fff;
  border: 1px solid rgba(61,90,58,0.12);
  border-radius: 6px;
  overflow: hidden;
}

.compare-table thead {
  background: linear-gradient(180deg, rgba(61,90,58,0.08), rgba(61,90,58,0.03));
}

.compare-table th {
  padding: 16px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #3D5A3A);
  border-bottom: 2px solid var(--accent, #3D5A3A);
  vertical-align: bottom;
}

.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(61,90,58,0.08);
  vertical-align: top;
  line-height: 1.55;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table tr:nth-child(even) td {
  background: rgba(61,90,58,0.025);
}

.compare-table .verdict {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--accent, #3D5A3A);
}

.compare-table .row-hero {
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
}

.compare-pill {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.compare-pill.green { background: rgba(61,90,58,0.12); color: var(--accent, #3D5A3A); }
.compare-pill.gold  { background: rgba(184,152,90,0.18); color: #8b6e3a; }
.compare-pill.red   { background: rgba(180,60,60,0.12);  color: #a34040; }

/* --- INLINE PRODUCT CARD (within article) --- */
.post-product {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 20px;
  margin: 36px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(61,90,58,0.12);
  border-left: 4px solid var(--accent, #3D5A3A);
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.post-product:hover {
  border-color: var(--accent, #3D5A3A);
  box-shadow: 0 6px 20px rgba(61,90,58,0.08);
}

.post-product-img {
  width: 110px;
  height: 110px;
  background: #faf7f2;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.post-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.post-product-meta {
  min-width: 0;
}

.post-product-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm, #B8985A);
  margin: 0 0 4px 0;
}

.post-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 6px 0;
  color: var(--text-primary, #1a1a1a);
}

.post-product-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary, #666);
  margin: 0;
  font-weight: 400;
}

.post-product-cta {
  display: inline-block;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent, #3D5A3A);
  color: #fff !important;
  border-radius: 4px;
  border: 0 !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.post-product-cta:hover {
  background: var(--warm, #B8985A);
  color: #fff !important;
}

@media (max-width: 640px) {
  .post-product {
    grid-template-columns: 80px 1fr;
  }
  .post-product-img { width: 80px; height: 80px; }
  .post-product-cta {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* --- DROP CAP for first paragraph --- */
.blog-post-body > p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  float: left;
  font-size: 58px;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--accent, #3D5A3A);
  font-weight: 500;
}

/* Let the TL;DR override the drop cap when it's first */
.blog-post-body > .post-tldr:first-child + p::first-letter {
  font-family: 'Playfair Display', serif;
  float: left;
  font-size: 58px;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--accent, #3D5A3A);
  font-weight: 500;
}

/* --- AUTHOR CARD --- */
.post-author {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 64px 0;
  padding: 32px;
  background: rgba(61,90,58,0.04);
  border-radius: 6px;
  border: 1px solid rgba(61,90,58,0.1);
}

.post-author-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #3D5A3A);
  margin: 0;
}

.post-author-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--text-primary, #1a1a1a);
}

.post-author-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary, #555);
  margin: 0;
  font-weight: 300;
}

/* --- EMAIL INLINE CTA --- */
.post-email-cta {
  margin: 56px 0;
  padding: 40px 32px;
  background: #3D5A3A;
  color: #fff;
  border-radius: 6px;
  text-align: center;
}

.post-email-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm, #B8985A);
  margin: 0 0 12px 0;
}

.post-email-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 10px 0;
  color: #fff;
}

.post-email-cta p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px 0;
  font-weight: 300;
}

.post-email-cta > div {
  max-width: 420px;
  margin: 0 auto;
}

/* --- RELATED POSTS (article footer) --- */
.post-related {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg-sage, rgba(61,90,58,0.04));
  border-top: 1px solid rgba(61,90,58,0.08);
}

.post-related-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm, #B8985A);
  margin: 0 0 8px 0;
}

.post-related h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  margin: 0 0 40px 0;
  color: var(--text-primary, #1a1a1a);
}

.post-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.post-related-card {
  display: block;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(61,90,58,0.08);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.post-related-card:hover {
  border-color: var(--accent, #3D5A3A);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(61,90,58,0.1);
}

.post-related-card .cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm, #B8985A);
  margin-bottom: 10px;
  display: block;
}

.post-related-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 10px 0;
  color: var(--text-primary, #1a1a1a);
}

.post-related-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary, #666);
  margin: 0;
  font-weight: 300;
}

/* --- SOURCE CITATION LIST --- */
.post-sources {
  margin: 56px 0 0;
  padding: 28px 0 0;
  border-top: 2px solid rgba(61,90,58,0.12);
}

.post-sources h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 18px 0;
  color: var(--text-primary, #1a1a1a);
}

.post-sources ol {
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary, #666);
}

.post-sources li {
  margin-bottom: 10px;
}

.post-sources a {
  color: var(--accent, #3D5A3A);
  text-decoration: underline;
  text-underline-offset: 2px;
  border-bottom: 0;
  font-weight: 400;
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-card h3 a,
  .blog-card-cta,
  .btn-primary,
  .post-related-card {
    transition: none;
    transform: none !important;
  }
}

/* Dark mode intentionally removed — the site has a single light theme,
   and the previous prefers-color-scheme block flipped blog text to white
   against light backgrounds when the OS was in dark mode. */
