/* Article layout for the blog — reuses the site's :root variables + nav/footer. */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 120px 24px 72px; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.article-kicker {
  color: var(--gold); font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; font-size: 0.78rem;
}
.article-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(2rem, 1rem + 4vw, 3rem); color: var(--white);
  line-height: 1.12; margin: 0.5rem 0 1rem;
}
.article-lead { font-size: 1.18rem; color: var(--muted); line-height: 1.6; margin-bottom: 2.4rem; }
.article-body h2 {
  font-family: 'Playfair Display', serif; font-size: 1.55rem;
  color: var(--white); margin: 2.2rem 0 0.7rem;
}
.article-body h3 { font-size: 1.12rem; color: var(--white); margin: 1.5rem 0 0.4rem; }
.article-body p { font-size: 1.06rem; color: var(--text); line-height: 1.78; margin-bottom: 1rem; }
.article-body ul, .article-body ol { margin: 0.3rem 0 1.3rem 1.2rem; }
.article-body li { font-size: 1.06rem; color: var(--text); line-height: 1.7; margin-bottom: 0.45rem; }
.article-body strong { color: var(--white); }
.swatch-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.2rem 0 1.8rem; }
.swatch { width: 86px; text-align: center; font-size: 0.72rem; color: var(--muted); }
.swatch::before {
  content: ''; display: block; width: 100%; height: 46px;
  border-radius: 8px; border: 1px solid var(--border); margin-bottom: 6px; background: var(--c);
}
.cta-card {
  background: var(--surface); border: 1px solid var(--gold);
  border-radius: 14px; padding: 28px; margin: 2.6rem 0; text-align: center;
}
.cta-card h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.cta-card p { color: var(--muted); margin-bottom: 16px; }
.related { border-top: 1px solid var(--border); margin-top: 3rem; padding-top: 1.4rem; }
.related-h { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }
.related a { display: block; color: var(--gold); padding: 6px 0; font-weight: 500; }

/* Blog index grid */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 44px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.blog-card .k { color: var(--gold); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.blog-card h2 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.3rem; margin: 8px 0 8px; line-height: 1.25; }
.blog-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
