.venues-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
  background: rgba(250, 250, 234, 0.94);
  backdrop-filter: blur(16px);
}

.venues-header nav {
  margin-left: auto;
}

.venues-header .site-nav-link.is-active {
  color: #1b4d2e;
  font-weight: 800;
}

.venues-header .lang-toggle {
  transition: background-color 180ms ease, color 180ms ease;
}

.venues-header .lang-toggle.is-active {
  background: #1b4d2e;
  color: #fff;
  font-weight: 700;
}

.venue-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(27, 77, 46, 0.08);
  background: #fff;
  box-shadow: 0 22px 40px rgba(40, 45, 29, 0.08);
}

.venue-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.venue-card__media {
  aspect-ratio: 4 / 4.2;
  background-position: center;
  background-size: cover;
  transition: transform 320ms ease;
}

.venue-card--link:hover .venue-card__media {
  transform: scale(1.03);
}

.venue-card__body {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.venue-card__eyebrow {
  margin: 0;
  color: #8b5a2b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.venue-card__title {
  margin: 0;
  color: #1b4d2e;
  font-family: "Libre Caslon Text", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.venue-card__copy,
.venue-card__meta {
  margin: 0;
  color: #454937;
  font-size: 1rem;
  line-height: 1.65;
}

.venue-card__meta {
  color: #506600;
  font-weight: 700;
}

.facility-list > :is(p, button) {
  display: flex;
  align-items: center;
  min-height: 58px;
}

.facility-option {
  width: 100%;
  min-width: 0;
  border: 2px solid transparent;
  font: inherit;
  text-align: left;
  overflow-wrap: anywhere;
  white-space: normal;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.facility-option:hover {
  transform: translateY(-1px);
}

.facility-option[aria-pressed="true"] {
  border-color: #1b4d2e;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.facility-option:focus-visible {
  outline: 3px solid #a66a18;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .venues-header {
    padding: 16px 80px;
  }

  .facility-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
