.card {
  background: white;
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body { padding: 1.5rem; }

.card-title {
  font-family: "Playfair Display", serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: .5rem;
}

.card-text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
}

.card-footer {
  padding: 1rem 1.5rem;
  background: var(--stone);
  border-top: 1px solid var(--sand);
}

.card-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark-35);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* News card */
.news-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--sand);
  transition: box-shadow .2s, transform .2s;
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.news-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--forest), var(--moss));
}

.news-card-body { padding: 1.25rem; }

.news-card-meta {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-bottom: .5rem;
}

.news-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.news-card-text {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.6;
}

/* Stat card */
.stat-card {
  background: white;
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: .3rem;
}

.stat-sub {
  font-size: var(--fs-xs);
  color: var(--accent);
  font-weight: 600;
  margin-top: .25rem;
}
