/* Teen route for the kids programme, 2026-09-03. */
.kids-age-groups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kids-age-groups article {
  min-height: 29rem;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.kids-age-groups article:nth-child(2) {
  color: #eef7f4;
  background: #0d1b18;
}

.kids-age-groups article:nth-child(3) {
  color: #29423c;
  background: #d8e3df;
}

.kids-age-groups article:nth-child(3) span {
  color: var(--program-teal-dark);
}

.kids-age-groups h2 {
  font-size: clamp(2.45rem, 3.8vw, 4.15rem);
  text-wrap: balance;
}

.kids-age-groups article:nth-child(3) p {
  color: #40534d;
}

.kids-age-groups article > a {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--program-teal-dark);
  border-bottom: 1px solid currentColor;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.kids-age-groups article > a:hover { color: #0f6f68; transform: translateY(-2px); }
.kids-age-groups article > a:focus-visible { outline: 2px solid var(--program-teal-dark); outline-offset: 5px; }

.kids-teen-program {
  padding: clamp(5rem, 9vw, 9rem) 0;
  color: #eef7f4;
  background: #0d1b18;
  scroll-margin-top: 6rem;
}

.kids-teen-intro {
  display: grid;
  grid-template-columns: minmax(19rem, .85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.kids-teen-intro .program-kicker { color: #70d8d0; }
.kids-teen-intro h2 { max-width: 9ch; margin: .8rem 0 0; color: #ffe1a0; font-size: clamp(3.4rem, 6vw, 6.2rem); line-height: .92; text-wrap: balance; }
.kids-teen-copy { max-width: 43rem; }
.kids-teen-copy p { margin: 0 0 1.2rem; color: rgba(238, 247, 244, .78); font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.7; }

.kids-teen-adventures {
  display: grid;
  grid-template-columns: minmax(12rem, .45fr) minmax(0, 1.55fr);
  gap: 2rem;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(112, 216, 208, .3);
  border-bottom: 1px solid rgba(112, 216, 208, .3);
}

.kids-teen-adventures > p { margin: 0; color: #70d8d0; font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.kids-teen-adventures ul { display: flex; flex-wrap: wrap; gap: .65rem 1.6rem; margin: 0; padding: 0; list-style: none; }
.kids-teen-adventures li { color: #fffaf0; font-size: clamp(.95rem, 1.3vw, 1.12rem); }
.kids-teen-adventures li::before { content: "◇"; margin-right: .55rem; color: #d6a94b; }

.kids-teen-workshops { margin-top: clamp(4rem, 7vw, 7rem); }
.kids-teen-workshops > header { display: grid; grid-template-columns: minmax(12rem, .45fr) minmax(0, 1.55fr); gap: 2rem; align-items: end; margin-bottom: 2rem; }
.kids-teen-workshops .program-kicker { color: #70d8d0; }
.kids-teen-workshops h3 { max-width: 16ch; margin: 0; color: #eef7f4; font-size: clamp(2.35rem, 4.5vw, 4.5rem); line-height: .98; text-wrap: balance; }

.kids-teen-workshop-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(112, 216, 208, .24);
}

.kids-teen-workshop-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(8rem, .55fr);
  gap: 1.25rem;
  align-items: baseline;
  min-height: 5.4rem;
  padding: 1.2rem 1.35rem;
  border-right: 1px solid rgba(112, 216, 208, .24);
  border-bottom: 1px solid rgba(112, 216, 208, .24);
}

.kids-teen-workshop-list article:nth-child(even) { border-right: 0; }
.kids-teen-workshop-list strong { color: #fffaf0; font-size: .96rem; line-height: 1.4; }
.kids-teen-workshop-list span { color: #d6a94b; font-size: .75rem; font-weight: 650; line-height: 1.4; }

@media (max-width: 980px) {
  .kids-age-groups { grid-template-columns: 1fr; }
  .kids-age-groups article { min-height: auto; }
  .kids-teen-intro { grid-template-columns: 1fr; gap: 2rem; }
  .kids-teen-workshop-list { grid-template-columns: 1fr; }
  .kids-teen-workshop-list article { border-right: 0; }
}

@media (max-width: 600px) {
  .kids-teen-program { padding-top: 4.5rem; }
  .kids-teen-intro h2 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .kids-teen-adventures, .kids-teen-workshops > header { grid-template-columns: 1fr; gap: 1rem; }
  .kids-teen-adventures ul { display: grid; grid-template-columns: 1fr; gap: .75rem; }
  .kids-teen-workshop-list article { grid-template-columns: 1fr; gap: .35rem; min-height: auto; padding: 1rem 0; }
}
