/* Teacher-training page: license introduction and classroom photograph. */
.teacher-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 340px); gap: clamp(34px, 5vw, 58px); align-items: start; }
.teacher-intro h2 { margin: 0 0 15px; font-size: clamp(27px, 3vw, 34px); line-height: 1.4; }
.teacher-intro p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.teacher-fact { padding: 22px 24px; color: #fff; background: var(--navy-800); border-radius: 8px; }
.teacher-fact span { color: #9ed5ff; font-size: 10px; font-weight: 800; }
.teacher-fact strong { display: block; margin-top: 8px; font-size: 19px; line-height: 1.55; }
.teacher-training-photo { margin: 0 0 18px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.teacher-training-photo img { width: 100%; height: clamp(280px, 32vw, 390px); object-fit: cover; object-position: center 46%; }
.teacher-training-photo figcaption { padding: 9px 12px; color: #607286; font-size: 10px; line-height: 1.6; }

.teacher-student-development {
  margin-top: 30px;
  padding: clamp(28px, 4vw, 44px);
  background: #e6f1f7;
  border-radius: 8px;
}

.teacher-student-development-lead {
  display: grid;
  grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.teacher-student-development-intro > small {
  color: #1876aa;
  font-size: 10px;
  font-weight: 850;
}

.teacher-student-development-intro h3 {
  margin: 8px 0 0;
  color: #123d5d;
  font-size: clamp(23px, 2.5vw, 31px);
  line-height: 1.48;
  letter-spacing: -.03em;
}

.teacher-student-development-intro p {
  margin: 14px 0 0;
  color: #48677d;
  font-size: 13px;
  line-height: 1.9;
}

.teacher-student-development-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.teacher-student-development-photo {
  overflow: hidden;
  margin: 0;
  color: #fff;
  background: #123d5d;
  border-radius: 7px;
}

.teacher-student-development-photo a {
  display: block;
  overflow: hidden;
}

.teacher-student-development-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .2s ease, opacity .2s ease;
}

.teacher-student-development-photo a:hover img {
  opacity: .92;
  transform: scale(1.012);
}

.teacher-student-development-photo a:focus-visible {
  outline: 3px solid #69bfff;
  outline-offset: -3px;
}

.teacher-student-development-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 10px 12px;
  color: #edf7ff;
  font-size: 10px;
  line-height: 1.6;
}

.teacher-student-development-photo figcaption strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.55;
}

.teacher-student-development-photo figcaption span {
  flex: 0 0 auto;
  color: #acdfff;
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.teacher-student-development-examples > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  padding: 18px 20px;
  color: inherit;
  background: #fff;
  border-radius: 6px;
  transition: background .18s ease, transform .18s ease;
}

.teacher-student-development-examples > a:hover,
.teacher-student-development-examples > a:focus-visible {
  color: inherit;
  background: #f7fbfd;
  transform: translateY(-1px);
}

.teacher-student-development-examples small {
  grid-column: 1;
  color: #1876aa;
  font-size: 9px;
  font-weight: 850;
}

.teacher-student-development-examples h4 {
  grid-column: 1;
  margin: 2px 0 0;
  color: #123d5d;
  font-size: 16px;
  line-height: 1.55;
}

.teacher-student-development-examples p {
  grid-column: 1;
  margin: 5px 0 0;
  color: #536f82;
  font-size: 11px;
  line-height: 1.75;
}

.teacher-student-development-examples span {
  grid-column: 2;
  grid-row: 1 / 4;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  align-self: center;
  color: #0c6fa8;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.teacher-student-development-examples i { font-size: 14px; font-style: normal; }

.teacher-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.teacher-evidence-card {
  display: flex;
  min-width: 0;
  min-height: 218px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  color: inherit;
  background: #edf5fa;
  border-radius: 5px;
}

.teacher-evidence-card:hover,
.teacher-evidence-card:focus-visible {
  color: inherit;
  background: #deedf6;
}

.teacher-evidence-card > small {
  color: #28779f;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.55;
}

.teacher-evidence-card h3 {
  margin: 7px 0 0;
  color: #123d5d;
  font-size: 17px;
  line-height: 1.5;
}

.teacher-evidence-card p {
  margin: 9px 0 0;
  color: #506b7f;
  font-size: 11.5px;
  line-height: 1.8;
}

.teacher-evidence-card > span {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  color: #0c6fa8;
  font-size: 10px;
  font-weight: 850;
}

.teacher-evidence-card > span i { font-size: 13px; font-style: normal; }

.teacher-support-feature {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(18px, 2.6vw, 28px);
  color: #fff;
  background: #0d456b;
}

.teacher-support-feature-photo {
  overflow: hidden;
  margin: 0;
  background: #082f4b;
}

.teacher-support-feature-photo a {
  display: block;
  overflow: hidden;
}

.teacher-support-feature-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 743;
  object-fit: cover;
  transition: opacity .2s ease, transform .2s ease;
}

.teacher-support-feature-photo a:hover img {
  opacity: .92;
  transform: scale(1.012);
}

.teacher-support-feature-photo a:focus-visible {
  outline: 3px solid #8ed7ff;
  outline-offset: -3px;
}

.teacher-support-feature-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  padding: 10px 12px;
  color: #e6f4fb;
  font-size: 9px;
  line-height: 1.65;
}

.teacher-support-feature-photo figcaption span {
  flex: 0 0 auto;
  color: #a9d8f0;
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.teacher-support-feature-copy { min-width: 0; padding-block: 8px; }
.teacher-support-feature small { color: #a9d8f0; font-size: 10px; font-weight: 850; }
.teacher-support-feature h2 { margin: 8px 0 0; color: #fff; font-size: clamp(25px, 2.8vw, 34px); line-height: 1.48; letter-spacing: -.035em; }
.teacher-support-feature p { max-width: 53em; margin: 13px 0 0; color: #d7e8f2; font-size: 12px; line-height: 1.9; }

.teacher-support-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.teacher-support-feature-actions a {
  display: inline-flex;
  min-height: 46px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: #0c4163;
  background: #fff;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 850;
}

.teacher-support-feature-actions a + a {
  color: #fff;
  background: #17628d;
}

.teacher-support-feature-actions a:hover,
.teacher-support-feature-actions a:focus-visible { color: #075a8d; background: #edf8fd; }
.teacher-support-feature-actions a + a:hover,
.teacher-support-feature-actions a + a:focus-visible { color: #fff; background: #0877bd; }

.teacher-evidence-related { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.teacher-evidence-related a { display: inline-flex; min-height: 40px; gap: 18px; align-items: center; padding: 8px 13px; color: #214c6b; background: #e5f0f6; border-radius: 4px; font-size: 10px; font-weight: 850; }
.teacher-evidence-related a:hover,
.teacher-evidence-related a:focus-visible { color: #fff; background: #0877bd; }

@media (min-width: 761px) and (max-width: 1180px) {
  .teacher-intro { grid-template-columns: 1fr; }
  .teacher-student-development-lead,
  .teacher-student-development-examples { grid-template-columns: minmax(0, 1fr); }
  .teacher-evidence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .teacher-support-feature { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .teacher-support-feature-photo { width: min(100%, 720px); }
}

@media (max-width: 760px) {
  .teacher-intro { grid-template-columns: 1fr; gap: 34px; }
  .teacher-intro h2 { font-size: 28px; }
  .teacher-training-photo img { height: 230px; }
  .teacher-student-development { padding: 24px 20px; }
  .teacher-student-development-lead,
  .teacher-student-development-examples { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .teacher-student-development-examples > a { grid-template-columns: minmax(0, 1fr); padding: 17px; }
  .teacher-student-development-examples span { grid-column: 1; grid-row: auto; margin-top: 9px; }
  .teacher-evidence-grid { grid-template-columns: minmax(0, 1fr); gap: 8px; margin-top: 22px; }
  .teacher-evidence-card { min-height: 0; padding: 18px; }
  .teacher-support-feature { grid-template-columns: minmax(0, 1fr); gap: 23px; margin-inline: -20px; padding: 20px 20px 32px; }
  .teacher-support-feature-photo { margin-inline: -20px; }
  .teacher-support-feature-photo figcaption { padding-inline: 20px; }
  .teacher-support-feature p { font-size: 12px; line-height: 1.85; }
  .teacher-support-feature-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
  .teacher-support-feature-actions a { width: 100%; }
  .teacher-evidence-related { display: grid; grid-template-columns: minmax(0, 1fr); }
  .teacher-evidence-related a { justify-content: space-between; }
}
