@import url("shared.css");

/* ================= INTRO (overrides on top of shared.css) ================= */
.intro {
  padding: 88px 0 56px;
}
.intro h2 {
  max-width: 24ch;
  margin-bottom: 18px;
}
.intro p {
  max-width: 60ch;
}

/* ================= CLUB ROWS (horizontal bands) ================= */
.clubs {
  padding: 10px 0 30px;
}

.club-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(0, 33, 71, 0.1);
}
.club-row:last-child {
  border-bottom: none;
}
.club-row.reverse {
  flex-direction: row-reverse;
}

.club-text {
  flex: 1 1 0;
  min-width: 0;
}
.club-index {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.club-text h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--main);
  margin-bottom: 16px;
  line-height: 1.2;
}
.club-text p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.75;
  color: #4a4a4a;
  max-width: 52ch;
}

.club-images {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.club-images .frame {
  height: 230px;
  border-radius: 2px;
}
.club-images .frame:nth-child(2) {
  margin-top: 34px;
}
.club-row.reverse .club-images .frame:nth-child(2) {
  margin-top: 34px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .club-row,
  .club-row.reverse {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 48px 0;
  }
  .club-images .frame:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .club-images {
    grid-template-columns: 1fr;
  }
  .club-images .frame {
    height: 200px;
  }
}
