:root {
  --cream-bg: #f5efe6;
  --dark-green: #2c2420;
  --gold-accent: #b8693d;
}

.category-chip {
  border: 1px solid rgba(44, 36, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.62);
  padding: 0.62rem 0.95rem;
  color: #5f5751;
  font-size: 0.72rem;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.category-chip:hover,
.category-chip.active {
  border-color: rgba(184, 105, 61, 0.48);
  background: rgba(184, 105, 61, 0.08);
  color: #985432;
}

.article-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(44, 36, 32, 0.15);
  background: transparent;
  color: inherit;
  text-decoration: none;
}

.article-card-media {
  display: block;
  overflow: hidden;
  border-radius: 1.15rem;
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 1.25rem;
}

.article-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 1.15rem;
  object-fit: cover;
  transition: transform 450ms ease;
}

.article-category {
  color: #b8693d;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0.7rem 0 0;
  color: #2c2420;
  font-family: "Fraunces", serif;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.12;
}

.article-card h3 a {
  color: inherit;
  text-decoration: none;
}

.article-card p {
  margin-top: 0.8rem;
  color: #655d57;
  font-size: 0.92rem;
  line-height: 1.75;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  color: #7a716b;
  font-size: 0.72rem;
}

.article-card .article-meta {
  margin-top: auto;
  padding-top: 1rem;
}

.article-card:hover img {
  transform: scale(1.025);
}

.btn-gold-fill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #2d3e35;
  background: #2d3e35;
  padding: 0.78rem 1.25rem;
  color: #fffaf4;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.btn-gold-fill:hover {
  border-color: #223128;
  background: #223128;
  box-shadow: 0 12px 28px rgba(45, 62, 53, 0.22);
  transform: translateY(-2px);
}

.btn-dark-outline {
  display: inline-flex;
  border: 1px solid rgba(45, 62, 53, 0.42);
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  color: #2d3e35;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}

.btn-dark-outline:hover {
  border-color: #2d3e35;
  background: rgba(122, 140, 110, 0.13);
  color: #2d3e35;
}

.prose {
  color: #4f4945;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.95;
}

.prose h2,
.prose h3 {
  color: #2c2420;
  font-family: "Fraunces", serif;
  font-weight: 500;
}

.prose blockquote {
  border-left-color: #b8693d;
}

.prose img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .article-card img {
    min-height: 190px;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
}
