@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@400;500;600;700&display=swap");

.page-venues {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: #faf6ef;
  color: #3d3428;
}

.page-venues .site-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3rem;
}

.page-venues .mast {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.page-venues .mast h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: #2c241c;
}
.page-venues .mast p {
  margin: 0;
  line-height: 1.65;
  color: #5c5348;
}

.page-venues .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.75rem;
  align-items: start;
}
@media (max-width: 820px) {
  .page-venues .grid {
    grid-template-columns: 1fr;
  }
}

.page-venues .map-panel {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5dccf;
  box-shadow: 0 16px 48px rgba(44, 36, 28, 0.08);
  background: #fff;
}
.page-venues .map-panel img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.page-venues .map-panel figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #6b5f52;
}

.page-venues .venues-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-venues .venue {
  background: #fff;
  border: 1px solid #e8dfd2;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  border-left: 4px solid #b45309;
}
.page-venues .venue h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.page-venues .venue p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5c5348;
}
