.article-hero {
  background: #2d2416;
  padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem;
}
.article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.article-hero__back:hover { color: var(--color-secondary); }
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.article-hero__cat {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-secondary);
}
.article-hero__sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: inline-block;
}
.article-hero__time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.article-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  color: #fff;
  line-height: 1.2;
  max-width: 46rem;
  margin-bottom: 1.75rem;
}
.article-hero__byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.article-hero__avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,97,0.3), rgba(139,111,71,0.15));
  border: 1px solid rgba(201,169,97,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}
.article-hero__author-name {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.article-hero__date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.1rem;
}

/* Article body */
.article-body {
  padding: 4rem 0 5rem;
  background: #fff;
}
.article-body__wrap {
  max-width: 44rem;
  margin: 0 auto;
}
.article-body__img {
  width: 100%; display: block;
  border-radius: var(--radius);
  max-height: 22rem; object-fit: cover;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.article-content {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #3a3028;
}
.article-content p { margin-bottom: 1.5rem; }
.article-content h2 { font-family: var(--font-serif); font-size: 1.625rem; color: #2d2416; margin: 2.5rem 0 1rem; }
.article-content h3 { font-family: var(--font-serif); font-size: 1.25rem; color: #2d2416; margin: 2rem 0 0.75rem; }
.article-content ul, .article-content ol { margin: 0 0 1.5rem 1.5rem; }
.article-content li { margin-bottom: 0.4rem; }
.article-content blockquote {
  border-left: 3px solid var(--color-secondary);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  color: #5a4a38; font-style: italic;
}

/* Bottom nav */
.article-foot {
  background: #faf8f5;
  border-top: 1px solid rgba(139,111,71,0.15);
  padding: 2.5rem 0;
}

/* Former inline */
.container--narrow {
  max-width: 52rem;
}
.article-foot__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-foot__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d2416;
  text-decoration: none;
}
.article-foot .btn--compact {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}
