/* Shared styles for individual program detail pages */

.page-hero {
  padding: var(--s-9) 0 var(--s-7);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: var(--step-4);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 24px 0 0;
  max-width: 18ch;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
  max-width: 52ch;
  color: var(--fg-2);
  font-size: var(--step-1);
  margin-top: 24px;
}
.page-hero .ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }

.prog-grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-7);
  align-items: start;
  padding: var(--s-9) 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .prog-grid-2 { grid-template-columns: 1fr; } }

.prog-overview h2 {
  font-size: var(--step-3);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 24px;
}
.prog-overview p {
  font-size: var(--step-1);
  color: var(--fg-2);
  line-height: 1.5;
  max-width: 56ch;
}
.disc-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 4px;
}
.disc-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: baseline;
}
.disc-list li:last-child { border-bottom: 1px solid var(--line); }
.disc-list .num {
  font-family: var(--mono); font-size: 12px;
  color: var(--fg-3); letter-spacing: 0.06em;
}
.disc-list .name { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.disc-list .age {
  font-family: var(--mono); font-size: 12px;
  color: var(--fg-3); letter-spacing: 0.04em;
}

.prog-aside {
  position: sticky; top: 120px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-6);
  background: var(--cream-2);
  display: grid;
  gap: var(--s-5);
}
.prog-aside h3 {
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.prog-aside .row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.prog-aside .row:first-child { border-top: 0; padding-top: 0; }
.prog-aside .label {
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-3); text-transform: uppercase;
  letter-spacing: 0.08em;
}
.prog-aside .val { font-size: 14px; line-height: 1.5; color: var(--fg); }
.prog-aside .ctas { display: grid; gap: 8px; margin-top: 8px; }

.sched-section { padding: var(--s-9) 0; border-bottom: 1px solid var(--line); }
.sched-table {
  display: grid; gap: 0;
  margin-top: var(--s-6);
  border-top: 1px solid var(--line);
}
.sched-row {
  display: grid;
  grid-template-columns: 110px 1fr 160px 120px auto;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) {
  .sched-row { grid-template-columns: 1fr; gap: 8px; }
}
.sched-row .day {
  font-family: var(--mono); font-size: 12px;
  color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.08em;
}
.sched-row .title { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.sched-row .level {
  font-family: var(--mono); font-size: 12px;
  color: var(--fg-2);
}
.sched-row .duration {
  font-family: var(--mono); font-size: 12px;
  color: var(--fg-3);
}

.levels-section { padding: var(--s-9) 0; border-bottom: 1px solid var(--line); background: var(--cream-2); }
.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.level-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: grid;
  gap: 10px;
}
.level-card .num {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent); letter-spacing: 0.08em;
}
.level-card h3 {
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.2;
  margin: 0;
}
.level-card p {
  font-size: 14px; color: var(--fg-2);
  line-height: 1.5; margin: 0;
}

.attire-section { padding: var(--s-9) 0; border-bottom: 1px solid var(--line); }
.attire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  margin-top: var(--s-6);
}
@media (max-width: 800px) { .attire-grid { grid-template-columns: 1fr; } }
.attire-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-6);
}
.attire-card h3 {
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
}
.attire-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.attire-card li {
  font-size: 15px; color: var(--fg-2);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.attire-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.cta-band {
  padding: var(--s-9) 0;
  background: var(--ink);
  color: var(--bg);
}
.cta-band h2 {
  font-size: var(--step-4);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 12px 0 16px;
  max-width: 22ch;
}
.cta-band p {
  font-size: var(--step-1);
  color: oklch(from var(--bg) l c h / 0.75);
  max-width: 52ch;
  margin: 0 0 32px;
  line-height: 1.5;
}
.cta-band .eyebrow { color: oklch(from var(--bg) l c h / 0.6); }
.cta-band .ctas { display: flex; gap: 10px; flex-wrap: wrap; }
