.club-visual {
  height: 35vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f6b93b 0%, #e58e26 100%);
  margin-bottom: 3rem;
}
.club-visual .sub-hero__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 0 1rem;
  max-width: 90%;
}
.club-visual .sub-hero__lead {
  color: #fff;
  opacity: 0.95;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.info-grid {
  margin-bottom: 4rem;
}
.info-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.info-box {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.8rem 1.4rem;
  text-align: center;
}

.event-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}
.event-image {
  width: 260px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.event-details {
  flex: 1;
}
.event-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.event-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
}
@media (max-width: 640px) {
  .event-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .event-image {
    width: 70%;
  }
}

.action-section {
  margin: 4rem 0 0;
  padding: 3rem 1.2rem;
  text-align: center;
  background: #f6b93b;
  color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.action-button {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.action-button:hover {
  transform: translateY(-2px);
}
