/* Club block definition (After School Enrichment page): one after-school
   activity as a card — day / name / grades beside a photo, the description
   below, and a sign-up button at the bottom. Scoped under .bt-club. */
.bt-club {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  background: #ffffff;
}

.bt-club__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.bt-club__head h3 { font-size: 1.35rem; margin: 0 0 0.35em 0; }
.bt-club__head h4 { font-size: 1.15rem; margin: 0 0 0.3em 0; }
.bt-club__grades { margin: 0; font-weight: 600; font-size: 0.95rem; }
.bt-club__photo { flex: 0 0 160px; }
.bt-club__photo img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.bt-club__body { flex: 1 1 auto; font-size: 0.95rem; }
.bt-club__body p:last-child { margin-bottom: 0; }

.bt-club__cta { margin-top: 1.25rem; text-align: center; }
.bt-club__cta .bt-btn { font-size: 0.85rem; }

@media (max-width: 479px) {
  .bt-club__head { flex-direction: column-reverse; }
  .bt-club__photo { flex-basis: auto; width: 100%; }
  .bt-club__photo img { width: 100%; height: auto; }
}
