.page-index main {
  max-width: 760px;
  text-align: center;
}

.page-index section {
  text-align: left;
}

.page-index .event-banner {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.page-index .event-card {
  position: relative;
  min-height: 180px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 24px rgba(10, 20, 50, 0.16);
}

.page-index .event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.1));
}

.page-index .event-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
}

.page-index .event-card-bbq {
  background-image: url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=900&q=80");
}

.page-index .event-card-pool {
  background-image: url("https://images.unsplash.com/photo-1530549387789-4c1017266635?auto=format&fit=crop&w=900&q=80");
}

.page-index .event-card-hike {
  background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=900&q=80");
}

.page-index .cta-row {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.page-index .button-link {
  min-width: 260px;
}

.page-index .value-prop {
  text-align: center;
}

@media (max-width: 780px) {
  .page-index .event-banner {
    grid-template-columns: 1fr;
  }

  .page-index .button-link {
    width: 100%;
    min-width: 0;
  }
}
