/* === Blog Article Styles === */
/* Extends shared.css for long-form content pages */

/* ARTICLE HERO — full-width image banner */
.article-hero {
  margin-top: 72px;
  position: relative;
  height: clamp(260px, 40vw, 420px);
  overflow: hidden;
}
.article-hero img {
  width: 100%; height: 100%; object-fit: cover;
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
}
.article-hero-overlay .eyebrow {
  font-size: 0.64rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--gold-light); margin-bottom: 0.5rem;
}
.article-hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 700; color: #fff; line-height: 1.2; max-width: 760px;
}
.article-meta {
  font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem;
}

/* ARTICLE BODY */
.article-body {
  max-width: 760px; margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700; color: var(--brown-dark);
  margin: 2.5rem 0 0.75rem; line-height: 1.25;
}
.article-body h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--brown-dark); margin: 1.75rem 0 0.5rem;
}
.article-body p {
  font-size: 0.9rem; color: var(--text-body);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.25rem 1.25rem;
}
.article-body li {
  font-size: 0.88rem; color: var(--text-body);
  line-height: 1.8; margin-bottom: 0.4rem;
}
.article-body strong {
  color: var(--text-dark); font-weight: 600;
}
.article-body a {
  color: var(--gold-dark); text-decoration: underline;
  text-underline-offset: 2px; transition: color 0.3s;
}
.article-body a:hover { color: var(--gold); }

/* COMPARISON TABLE */
.compare-table {
  width: 100%; border-collapse: collapse;
  margin: 1.5rem 0 2rem; font-size: 0.82rem;
}
.compare-table th {
  background: var(--brown-dark); color: #fff;
  padding: 0.75rem 1rem; text-align: left;
  font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.compare-table td {
  padding: 0.7rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text-body);
}
.compare-table tr:hover td { background: var(--cream-light); }
.compare-table .highlight-row td {
  background: rgba(184,134,11,0.06);
  font-weight: 600; color: var(--text-dark);
}

/* CALLOUT BOX */
.callout {
  background: var(--cream-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.callout p { margin-bottom: 0.5rem; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--gold-dark); }

/* ARTICLE CTA CARD */
.article-cta {
  background: var(--brown-dark);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  text-align: center;
}
.article-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; margin: 0 0 0.5rem;
}
.article-cta p {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem; line-height: 1.7;
}
.article-cta .btn-gold { font-size: 0.72rem; }

/* RELATED ARTICLES */
.related-section {
  background: var(--cream-light);
  padding: 3.5rem 2.5rem;
}
.related-inner {
  max-width: 960px; margin: 0 auto;
}
.related-inner .sec-eyebrow { text-align: center; }
.related-inner .sec-title { text-align: center; margin-bottom: 2rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.related-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.4s, box-shadow 0.4s;
  text-decoration: none; display: block;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(58,42,26,0.08);
}
.related-card img {
  width: 100%; height: 180px; object-fit: cover;
}
.related-card-body {
  padding: 1.25rem;
}
.related-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--brown-dark); margin-bottom: 0.4rem; line-height: 1.3;
}
.related-card-body p {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.6;
}

/* BLOG INDEX */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem; margin-top: 2rem;
}
.blog-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.4s, box-shadow 0.4s;
  text-decoration: none; display: block;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(58,42,26,0.08);
}
.blog-card img {
  width: 100%; height: 200px; object-fit: cover;
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-body .card-tag {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold-dark); margin-bottom: 0.5rem;
}
.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--brown-dark); margin-bottom: 0.5rem; line-height: 1.3;
}
.blog-card-body p {
  font-size: 0.8rem; color: var(--text-body); line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .article-hero { margin-top: 60px; height: 240px; }
  .article-hero-overlay { padding: 1.5rem 1.25rem; }
  .article-body { padding: 2rem 1.25rem 3rem; }
  .callout { padding: 1rem 1.25rem; }
  .article-cta { padding: 1.5rem; margin: 2rem 0; }
  .related-section { padding: 2.5rem 1.25rem; }
  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 0.5rem 0.6rem; }
}
