/* =========================================================================
   MyDominicanTrip — Blog styles
   blog.html (listing) + blog-post.html (single article)
   ========================================================================= */

/* ============ BLOG HERO ============ */
.bl-hero {
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 280px);
  padding: 56px 0 36px;
}
.bl-hero .eyebrow {
  font-family: var(--font-heading); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mdt-red);
  margin-bottom: 14px;
}
.bl-hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(36px, 5.4vw, 60px); line-height: 1.02;
  letter-spacing: -0.025em; color: var(--mdt-navy);
  max-width: 18ch; text-wrap: balance;
}
.bl-hero h1 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; letter-spacing: -0.01em; }
.bl-hero .sub {
  margin-top: 16px; max-width: 580px;
  font-size: 18px; color: var(--fg-2); line-height: 1.5;
}

.bl-search {
  margin-top: 28px;
  display: flex; gap: 0; max-width: 520px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 999px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(26,42,82,0.04);
}
.bl-search input {
  flex: 1; padding: 14px 22px;
  border: none; background: transparent;
  font-family: var(--font-body); font-size: 15px; color: var(--mdt-navy);
}
.bl-search input::placeholder { color: var(--fg-4); }
.bl-search input:focus { outline: none; }
.bl-search button {
  padding: 0 26px;
  background: var(--mdt-red); color: #fff; border: none;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--t-base) var(--ease);
}
.bl-search button:hover { background: var(--red-600); }

/* ============ CATEGORY CHIPS ============ */
.bl-cats {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 24px 0 8px;
  overflow-x: auto;
}
.bl-cat {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  color: var(--fg-2); text-decoration: none;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}
.bl-cat:hover { border-color: var(--mdt-navy); color: var(--mdt-navy); }
.bl-cat.active { background: var(--mdt-navy); color: #fff; border-color: var(--mdt-navy); }
.bl-cat .count {
  font-size: 11px; color: var(--fg-4); font-weight: 500;
}
.bl-cat.active .count { color: rgba(255,255,255,0.7); }

/* ============ FEATURED POST ============ */
.bl-featured {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  margin-top: 28px;
  padding-bottom: 36px; border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) {
  .bl-featured { grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
}
.bl-featured-img {
  position: relative; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  border-radius: var(--r-lg); overflow: hidden;
}
.bl-featured-img .tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--mdt-red); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.bl-featured-body .cat {
  font-family: var(--font-heading); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mdt-red);
}
.bl-featured-body h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--mdt-navy);
  margin: 10px 0 16px; text-wrap: balance;
}
.bl-featured-body h2 a { color: inherit; text-decoration: none; }
.bl-featured-body h2 a:hover { color: var(--mdt-red); }
.bl-featured-body p {
  font-size: 16.5px; color: var(--fg-2); line-height: 1.55;
  margin-bottom: 18px;
}
.bl-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 13px; color: var(--fg-3);
}
.bl-meta .av {
  width: 32px; height: 32px; border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--mdt-navy);
}
.bl-meta strong { color: var(--mdt-navy); font-weight: 600; }
.bl-meta .dot { color: var(--gray-300); }

/* ============ POST GRID ============ */
.bl-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  padding: 36px 0;
}
@media (min-width: 640px) { .bl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bl-grid { grid-template-columns: repeat(3, 1fr); } }

.bl-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out);
}
.bl-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(26,42,82,0.10); }
.bl-card-img {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background-color: var(--gray-100);
  position: relative;
}
.bl-card-img .tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(26,42,82,0.92); color: #fff;
  padding: 5px 11px; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.bl-card-body {
  padding: 18px 20px 20px;
  flex: 1; display: flex; flex-direction: column;
}
.bl-card .cat {
  font-family: var(--font-heading); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mdt-red);
}
.bl-card h3 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 19px; line-height: 1.25;
  letter-spacing: -0.005em; color: var(--mdt-navy);
  margin: 8px 0 10px; text-wrap: balance;
}
.bl-card h3 a { color: inherit; text-decoration: none; }
.bl-card h3 a:hover { color: var(--mdt-red); }
.bl-card .excerpt {
  font-size: 14px; color: var(--fg-3); line-height: 1.55;
  margin-bottom: 14px;
}
.bl-card .foot {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-100);
  display: flex; gap: 12px; align-items: center;
  font-size: 12.5px; color: var(--fg-3);
}
.bl-card .foot .av {
  width: 26px; height: 26px; border-radius: 50%;
  background-color: var(--mdt-navy);
  background-size: cover; background-position: center;
}
.bl-card .foot strong { color: var(--mdt-navy); font-weight: 600; }

/* ============ PAGINATION ============ */
.bl-pagination {
  display: flex; gap: 6px; justify-content: center; align-items: center;
  padding: 12px 0 64px;
}
.bl-pagination a {
  min-width: 38px; height: 38px; padding: 0 12px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  color: var(--mdt-navy); text-decoration: none;
  border: 1px solid var(--border); background: #fff;
  transition: all var(--t-base) var(--ease);
}
.bl-pagination a:hover { border-color: var(--mdt-navy); }
.bl-pagination a.active { background: var(--mdt-navy); color: #fff; border-color: var(--mdt-navy); }
.bl-pagination a.disabled { color: var(--gray-300); pointer-events: none; }
.bl-pagination .gap { color: var(--gray-400); padding: 0 4px; }

/* ============ NEWSLETTER CTA ============ */
.bl-newsletter {
  margin: 0 0 64px;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  color: #fff;
  position: relative; overflow: hidden;
}
@media (max-width: 720px) { .bl-newsletter { padding: 36px 24px; } }
.bl-newsletter::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--mdt-red); opacity: 0.18;
}
.bl-newsletter > div { position: relative; z-index: 1; max-width: 540px; }
.bl-newsletter .eyebrow {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-400);
  margin-bottom: 14px;
}
.bl-newsletter h3 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(24px, 3vw, 32px); line-height: 1.1;
  color: #fff; margin-bottom: 12px;
}
.bl-newsletter h3 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.bl-newsletter p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.55; margin-bottom: 22px; }
.bl-newsletter form {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.bl-newsletter input {
  flex: 1; min-width: 200px; padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: 999px;
  background: rgba(255,255,255,0.06); color: #fff;
  font-family: var(--font-body); font-size: 14.5px;
}
.bl-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.bl-newsletter input:focus { outline: none; border-color: var(--mdt-red); background: rgba(255,255,255,0.10); }
.bl-newsletter button {
  padding: 14px 26px; border-radius: 999px;
  background: var(--mdt-red); color: #fff; border: none;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(220,38,38,0.32);
}
.bl-newsletter button:hover { background: var(--red-600); }
.bl-newsletter .legal {
  margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.5);
}

/* =========================================================================
   POST PAGE (blog-post.html)
   ========================================================================= */

.bp-bread {
  padding: 22px 0 0;
}
.bp-bread > div {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--fg-3);
}
.bp-bread a { color: var(--fg-3); text-decoration: none; }
.bp-bread a:hover { color: var(--mdt-red); }
.bp-bread svg { color: var(--gray-400); }

.bp-head {
  padding: 26px 0 32px;
}
.bp-cat {
  display: inline-block;
  font-family: var(--font-heading); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mdt-red);
  margin-bottom: 14px;
}
.bp-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(32px, 5vw, 56px); line-height: 1.04;
  letter-spacing: -0.025em; color: var(--mdt-navy);
  max-width: 22ch; text-wrap: balance;
  margin-bottom: 18px;
}
.bp-title em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.bp-lead {
  max-width: 720px;
  font-size: 19px; color: var(--fg-2); line-height: 1.5;
  margin-bottom: 28px;
}
.bp-byline {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.bp-author-av {
  width: 44px; height: 44px; border-radius: 50%;
  background-color: var(--mdt-navy);
  background-size: cover; background-position: center;
}
.bp-author-info {
  font-size: 13.5px; color: var(--fg-3); line-height: 1.3;
}
.bp-author-info strong {
  display: block;
  font-family: var(--font-heading); color: var(--mdt-navy); font-weight: 700;
  font-size: 14.5px;
}
.bp-meta-pills {
  margin-left: auto;
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--fg-3);
}
.bp-meta-pills span {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 999px;
  background: var(--gray-100);
}
.bp-meta-pills svg { color: var(--mdt-red); }

.bp-hero-img {
  aspect-ratio: 16/9; max-height: 540px;
  background-size: cover; background-position: center;
  background-color: var(--gray-100);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
}
.bp-hero-caption {
  font-size: 12.5px; color: var(--fg-4); text-align: center; margin-bottom: 36px;
}

/* ============ BODY LAYOUT ============ */
.bp-layout {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  padding-bottom: 56px;
}
@media (min-width: 1000px) {
  .bp-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 64px; align-items: start; }
}

/* ============ ARTICLE BODY ============ */
.bp-article {
  max-width: 740px;
}
.bp-article p, .bp-article ul, .bp-article ol, .bp-article blockquote, .bp-article figure {
  margin-bottom: 22px;
}
.bp-article p {
  font-family: var(--font-body); font-size: 18px; line-height: 1.7;
  color: var(--fg-2);
  text-wrap: pretty;
}
.bp-article p > strong { color: var(--mdt-navy); }
.bp-article a:not(.bp-cta):not(.bp-tag) {
  color: var(--mdt-red); text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.bp-article a:not(.bp-cta):not(.bp-tag):hover { color: var(--red-600); }
.bp-article h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 28px; line-height: 1.15;
  letter-spacing: -0.015em; color: var(--mdt-navy);
  margin: 44px 0 16px; scroll-margin-top: 100px;
}
.bp-article h3 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 21px; line-height: 1.25;
  color: var(--mdt-navy);
  margin: 28px 0 10px; scroll-margin-top: 100px;
}
.bp-article ul, .bp-article ol { padding-left: 22px; }
.bp-article li {
  font-size: 17px; line-height: 1.65; color: var(--fg-2);
  margin-bottom: 8px;
}
.bp-article li::marker { color: var(--mdt-red); }
.bp-article blockquote {
  padding: 18px 26px;
  border-left: 4px solid var(--mdt-red);
  background: var(--gray-50);
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  font-size: 20px; line-height: 1.45;
  color: var(--mdt-navy);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.bp-article blockquote cite {
  display: block; margin-top: 10px;
  font-family: var(--font-heading); font-style: normal; font-weight: 600;
  font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-3);
}
.bp-article figure { margin: 28px 0; }
.bp-article figure img {
  width: 100%; height: auto; border-radius: var(--r-md);
  display: block;
}
.bp-article figcaption {
  margin-top: 10px;
  font-size: 13px; color: var(--fg-4); text-align: center;
}
.bp-article .lead-graf::first-letter {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 68px; line-height: 0.85;
  float: left; margin: 4px 10px 0 0;
  color: var(--mdt-red);
}

/* Highlight callout */
.bp-callout {
  margin: 32px 0;
  background: var(--red-50); border: 1px solid var(--red-100);
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: grid; grid-template-columns: 44px 1fr; gap: 16px;
  align-items: flex-start;
}
.bp-callout-ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mdt-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bp-callout h4 {
  font-family: var(--font-heading); font-weight: 800; font-size: 15px;
  color: var(--mdt-navy); margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.bp-callout p {
  font-size: 14.5px !important; margin-bottom: 0 !important;
  color: var(--fg-2); line-height: 1.55 !important;
}

/* Internal-link card */
.bp-internal {
  margin: 32px 0;
  display: grid; grid-template-columns: 120px 1fr; gap: 18px;
  padding: 14px;
  border: 1px solid var(--border); border-radius: var(--r-md);
  text-decoration: none !important;
  background: #fff;
  transition: all var(--t-base) var(--ease);
}
.bp-internal:hover { border-color: var(--mdt-red); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(26,42,82,0.08); }
.bp-internal-img {
  width: 120px; height: 100px;
  background-size: cover; background-position: center;
  background-color: var(--gray-100);
  border-radius: var(--r-sm);
}
.bp-internal-body { padding: 4px 6px 4px 0; align-self: center; }
.bp-internal-body .eyebrow {
  font-family: var(--font-heading); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mdt-red);
  display: block;
}
.bp-internal-body h5 {
  font-family: var(--font-heading); font-weight: 800; font-size: 15px;
  color: var(--mdt-navy); margin-top: 4px; line-height: 1.3;
}
.bp-internal-body .arrow {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 6px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  color: var(--mdt-red); text-decoration: none !important;
}

/* Tags strip */
.bp-tags {
  margin: 36px 0 0;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.bp-tag {
  display: inline-block;
  padding: 6px 14px; border-radius: 999px;
  background: var(--gray-100); color: var(--fg-2);
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  text-decoration: none !important;
  transition: all var(--t-base) var(--ease);
}
.bp-tag:hover { background: var(--mdt-red); color: #fff !important; }

/* Share row */
.bp-share {
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.bp-share-label {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
}
.bp-share a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gray-100); color: var(--mdt-navy);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none !important;
  transition: all var(--t-base) var(--ease);
}
.bp-share a:hover { background: var(--mdt-red); color: #fff; }

/* Author bio block */
.bp-author-bio {
  margin: 32px 0;
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  display: grid; grid-template-columns: 80px 1fr; gap: 18px;
  align-items: flex-start;
}
@media (max-width: 600px) { .bp-author-bio { grid-template-columns: 1fr; } }
.bp-author-bio .av {
  width: 80px; height: 80px; border-radius: 50%;
  background-color: var(--mdt-navy);
  background-size: cover; background-position: center;
}
.bp-author-bio .meta {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
}
.bp-author-bio h5 {
  font-family: var(--font-heading); font-weight: 800; font-size: 20px;
  color: var(--mdt-navy); margin-top: 2px;
}
.bp-author-bio p {
  font-size: 14.5px !important; line-height: 1.55 !important;
  color: var(--fg-2) !important; margin: 8px 0 12px !important;
}
.bp-author-bio .links a {
  display: inline-flex; align-items: center; gap: 5px;
  margin-right: 14px;
  font-family: var(--font-heading); font-size: 12.5px; font-weight: 600;
  color: var(--mdt-navy); text-decoration: none !important;
}
.bp-author-bio .links a:hover { color: var(--mdt-red); }

/* ============ SIDEBAR (sticky) ============ */
.bp-aside {}
@media (min-width: 1000px) { .bp-aside { position: sticky; top: 100px; } }
.bp-aside h6 {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 14px;
}

/* Table of contents */
.bp-toc { margin-bottom: 32px; }
.bp-toc-list { list-style: none; padding: 0; display: grid; gap: 8px; }
.bp-toc-list a {
  display: block;
  font-size: 14px; color: var(--fg-2); text-decoration: none;
  padding: 6px 12px; border-left: 2px solid var(--gray-200);
  border-radius: 0 6px 6px 0;
  transition: all var(--t-base) var(--ease);
  line-height: 1.4;
}
.bp-toc-list a:hover, .bp-toc-list a.active {
  background: var(--red-50); color: var(--mdt-red);
  border-left-color: var(--mdt-red); font-weight: 600;
}
.bp-toc-list li.lvl-3 a { padding-left: 24px; font-size: 13px; color: var(--fg-3); }

/* Reading progress (top bar) */
.bp-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 60;
  background: var(--mdt-red);
  width: 0%; transition: width 0.1s linear;
}

/* Newsletter mini sidebar */
.bp-newsletter-mini {
  background: var(--mdt-navy); color: #fff;
  border-radius: var(--r-md);
  padding: 22px;
  margin-bottom: 24px;
}
.bp-newsletter-mini h6 {
  color: var(--red-400); margin-bottom: 10px;
}
.bp-newsletter-mini .h {
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
  line-height: 1.2; margin-bottom: 14px;
}
.bp-newsletter-mini input {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 13.5px;
  margin-bottom: 8px;
}
.bp-newsletter-mini input::placeholder { color: rgba(255,255,255,0.45); }
.bp-newsletter-mini button {
  width: 100%; padding: 11px;
  background: var(--mdt-red); color: #fff; border: none; border-radius: var(--r-sm);
  font-family: var(--font-heading); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer;
}
.bp-newsletter-mini button:hover { background: var(--red-600); }

/* Popular posts sidebar */
.bp-popular { display: grid; gap: 14px; margin-bottom: 32px; }
.bp-popular a {
  display: grid; grid-template-columns: 72px 1fr; gap: 12px;
  text-decoration: none;
  align-items: center;
}
.bp-popular .img {
  width: 72px; height: 56px; border-radius: var(--r-sm);
  background-size: cover; background-position: center;
  background-color: var(--gray-100);
}
.bp-popular .ttl {
  font-family: var(--font-heading); font-weight: 700; font-size: 13.5px;
  color: var(--mdt-navy); line-height: 1.3;
  text-wrap: balance;
}
.bp-popular a:hover .ttl { color: var(--mdt-red); }
.bp-popular .date { font-size: 11.5px; color: var(--fg-4); margin-top: 3px; }

/* ============ RELATED POSTS (bottom of post) ============ */
.bp-related {
  background: var(--gray-50);
  padding: 56px 0;
}
.bp-related .head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.bp-related h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(22px, 2.8vw, 30px); line-height: 1.15;
  letter-spacing: -0.015em; color: var(--mdt-navy);
}
.bp-related h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.bp-related .all {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  color: var(--mdt-red); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
