/* ============================================================
   CLUB PAGE
   ============================================================ */
.club-section {
  padding: 120px 0;
  background: var(--ivory);
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media(max-width: 900px) {
  .club-grid {
    grid-template-columns: 1fr;
  }
}

.club-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  cursor: none;
}

.club-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0%;
  background: var(--gold);
  transition: height 0.5s var(--ease);
}

.club-card:hover::before {
  height: 100%;
}

.club-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--gold-pale);
}

.club-num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(184, 146, 58, 0.08);
  position: absolute;
  top: 20px;
  right: 30px;
  pointer-events: none;
  transition: color 0.4s;
}

.club-card:hover .club-num {
  color: rgba(184, 146, 58, 0.15);
}

.club-t {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.club-d {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-soft);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
