/* ============================================================
   PROGRAM PAGE – program.css
   ============================================================ */

/* Age bands */
.age-bands {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.age-band {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 2rem;
  background: rgba(13,31,60,0.6);
  border: 1px solid rgba(74,158,221,0.15);
  border-radius: 0.75rem;
  padding: 2rem;
  align-items: start;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.age-band:hover {
  border-color: rgba(74,158,221,0.35);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

@media (max-width: 38em) {
  .age-band { grid-template-columns: 1fr; gap: 1rem; }
}

.age-badge {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  line-height: 1.2;
}

.age-junior  .age-badge { background: rgba(74,158,221,0.15); color: var(--clr-sky);    border: 1px solid rgba(74,158,221,0.3); }
.age-intermediate .age-badge { background: rgba(245,200,66,0.15); color: var(--clr-gold);   border: 1px solid rgba(245,200,66,0.3); }
.age-senior  .age-badge { background: rgba(232,0,61,0.15);   color: var(--clr-accent); border: 1px solid rgba(232,0,61,0.3); }

.age-content h3 { margin-bottom: 0.5rem; }
.age-content > p { color: var(--clr-muted); margin-bottom: 1rem; }

.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.module-list li {
  color: var(--clr-muted);
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}
.module-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
}

/* Schedule table */
.schedule-grid { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.schedule-table th,
.schedule-table td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(74,158,221,0.1);
}

.schedule-table th {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-sky);
  background: rgba(13,31,60,0.8);
}

.schedule-table td { color: var(--clr-muted); }
.schedule-table td:first-child { color: var(--clr-white); font-weight: 400; }

.schedule-table tr:hover td { background: rgba(74,158,221,0.04); }

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-right: 0.25rem;
  font-weight: 700;
}
.tag-all  { background: rgba(74,158,221,0.2); color: #a0d0f0; border: 1px solid rgba(74,158,221,0.3); }
.tag-jr   { background: rgba(74,158,221,0.15); color: var(--clr-sky); border: 1px solid rgba(74,158,221,0.25); }
.tag-int  { background: rgba(245,200,66,0.15); color: var(--clr-gold); border: 1px solid rgba(245,200,66,0.25); }
.tag-sr   { background: rgba(232,0,61,0.15); color: #ff6688; border: 1px solid rgba(232,0,61,0.25); }

/* Pillar cards with icons */
.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
}
.pillar-icon svg { width: 100%; height: 100%; }

/* CTA card reuse */
.cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(13,31,60,0.8), rgba(26,58,107,0.4));
  border: 1px solid rgba(74,158,221,0.2);
  border-radius: 1.25rem;
  padding: 4rem 2rem;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(74,158,221,0.1) 0%, transparent 70%);
  pointer-events: none;
}
