/* School-trip modal — reuses the .packages-modal shell (overlay/backdrop/panel/head/
   close/footnote from packages.css); this file only styles the school-specific body:
   a "why" feature grid, the day timeline, and the "what's included" grid. */

.school-section-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  margin: 2.4rem 0 1.2rem;
}

/* Why schools love Botfit — 4 feature cards */
.school-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.school-feature {
  background: #141414;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.school-feature__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.school-feature h3 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cyan, #00acdc);
  margin: 0;
}

.school-feature p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  margin: 0;
}

/* Day timeline */
.school-day__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--yellow, #ffde59);
  font-weight: 600;
  margin: -0.6rem 0 1.4rem;
}

.school-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.school-timeline li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #141414;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
}

.school-timeline__time {
  flex: 0 0 78px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--pink, #ee2a7b);
  padding-top: 0.1rem;
}

.school-timeline__body strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.school-timeline__body span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* What's included */
.school-included__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.school-included__grid > div {
  background: #0f0f0f;
  border: 2px solid var(--cyan, #00acdc);
  border-radius: 14px;
  padding: 1.1rem 1rem;
}

.school-included__grid strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--yellow, #ffde59);
  margin-bottom: 0.35rem;
}

.school-included__grid span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .school-features { grid-template-columns: repeat(2, 1fr); }
  .school-included__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .school-features { grid-template-columns: 1fr; }
  .school-included__grid { grid-template-columns: 1fr; }
  .school-timeline__time { flex-basis: 66px; font-size: 0.8rem; }
}
