/* ── Blog shared styles ─────────────────────────────────────── */

/* Article body typography */
.article-body {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: #2d2e1e;
  max-width: 44rem;
}

.article-body p {
  margin-bottom: 1.4rem;
  text-wrap: pretty;
}

.article-body h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #2d2e1e;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.article-body h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2e1e;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.article-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.article-body ul li {
  padding-left: 1.25rem;
  position: relative;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: #BF8211;
  border-radius: 50%;
}

.article-body strong {
  font-weight: 600;
  color: #2d2e1e;
}

/* Article hero */
.article-hero {
  position: relative;
  padding-top: clamp(5rem, 10vw, 7rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background-color: #F2EFE9;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .article-hero {
    padding-top: clamp(2rem, 5vw, 3rem);
  }
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: image-set(
    url('../images/webp/blog-hero-bg-800.webp') 1x,
    url('../images/webp/blog-hero-bg-1200.webp') 2x
  );
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.article-hero > * {
  position: relative;
  z-index: 1;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #5C5C4A;
  margin-bottom: 1.5rem;
}

.article-breadcrumb a {
  color: #9a6a0e;
  text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: #9A6A0E; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  font-family: 'Figtree', system-ui, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #5C5C4A;
  margin-top: 1.5rem;
}

.article-meta__dot {
  width: 4px;
  height: 4px;
  background: #E4E0D8;
  border-radius: 50%;
}

/* Blog listing card */
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #E4E0D8;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  border-color: #BF8211;
  box-shadow: 0 4px 24px rgba(191,130,17,0.08);
}

.blog-card__tag {
  font-size: 0.75rem;
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #BF8211;
  text-transform: uppercase;
}

.blog-card__title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #2d2e1e;
}

.blog-card__excerpt {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #514535;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #BF8211;
  margin-top: auto;
  transition: gap 0.2s, color 0.2s;
  text-decoration: none;
}

.blog-card__link:hover {
  color: #9A6A0E;
  gap: 0.55rem;
}

/* Pull quote */
.article-pullquote {
  border-left: 3px solid #BF8211;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #F2EFE9;
  font-size: 1.0625rem;
  font-style: italic;
  color: #514535;
  line-height: 1.6;
}

/* Article CTA band */
.article-cta {
  background: #2d2e1e;
  color: #fff;
  padding: clamp(2rem, 6vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

/* Related articles */
.related-card {
  display: block;
  padding: 1.5rem;
  border: 1px solid #E4E0D8;
  text-decoration: none;
  transition: border-color 0.2s;
}
.related-card:hover { border-color: #BF8211; }
.related-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #BF8211;
  text-transform: uppercase;
  font-family: 'Figtree', system-ui, sans-serif;
}
.related-card__title {
  margin-top: 0.5rem;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: #2d2e1e;
}

@media (max-width: 767px) {
  .article-breadcrumb {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .article-meta {
    gap: 0.5rem 1rem;
  }

  .blog-card {
    padding: 1.25rem;
  }

  .article-pullquote {
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 1.125rem;
  }

  .related-card {
    padding: 1.125rem;
  }
}
