/* Two-column front page: wide left, narrow right */
.pb-front {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
  margin: 1rem 0 2rem;
}
@media (max-width: 900px) {
  .pb-front {
    grid-template-columns: 1fr;
  }
}
.pb-front__intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.pb-card {
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.pb-card h3 {
  margin-top: 0;
}
.pb-card__name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.pb-map {
  height: 260px;
  border-radius: 6px;
  margin-top: 0.75rem;
}
.pb-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pb-hours li {
  padding: 0.25rem 0;
  border-bottom: 1px dashed #e2e2e2;
}
.pb-faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.4rem 0;
}
.pb-faq p {
  margin: 0.25rem 0 0.75rem;
}
.pb-front__terms {
  border-top: 1px solid #e2e2e2;
  padding-top: 1rem;
  text-align: center;
}

/* 18+ informed consent overlay */
.pb-age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 20, 20, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.pb-age-gate__box {
  background: #fff;
  border-radius: 10px;
  max-width: 480px;
  padding: 2rem;
  text-align: center;
}
body.pb-age-gate-open {
  overflow: hidden;
}
