/* ============================================================
   Gemeente page
   ============================================================ */

.gemeente-avg {
  background: var(--color-cream-warm);
  border: var(--border-hairline);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.restaurant-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
}

.restaurant-tile__price {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--color-burgundy);
  letter-spacing: -0.01em;
}

.restaurant-tile__meta {
  color: var(--color-ink-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Cheapest/priciest highlight */
.restaurant-tile--cheap {
  border-color: var(--color-green);
}

.restaurant-tile--cheap .restaurant-tile__price {
  color: var(--color-green);
}

.restaurant-tile--pricey {
  border-color: var(--color-burgundy-light);
}

.section {
  padding-block: var(--space-7);
}
