/* Bright Branches teacher page: page-specific layout only. */
.teacher-main {
  background: var(--bg-about);
}

.teacher-heading {
  position: relative;
  overflow: hidden;
  padding: 48px 0 31px;
  background:
    radial-gradient(circle at 10% 15%, rgba(250, 211, 67, .13), transparent 25%),
    var(--bg-hero);
}

.teacher-heading .section-title {
  margin: 0;
  font-size: 28px;
}

.teacher-heading-en {
  margin: 11px 0 0;
  color: var(--olive);
  text-align: center;
  font-size: 11px;
  letter-spacing: .18em;
}

.teacher-heading .features-title-decoration {
  margin-top: 15px;
  margin-bottom: 0;
}

.teacher-profile {
  padding-top: 58px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  grid-template-areas: "copy gallery";
  gap: 64px;
  align-items: start;
}

.teacher-copy {
  grid-area: copy;
  padding-top: 12px;
}

.teacher-copy .eyebrow {
  color: var(--olive);
}

.teacher-copy h2 {
  margin: 0 0 28px;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .18em;
}

.teacher-biography p {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 2.2;
}

.teacher-biography p:last-child {
  margin-bottom: 0;
}

.teacher-gallery {
  grid-area: gallery;
}

.teacher-main-photo {
  --image-position: 48% 45%;
  height: clamp(430px, 40vw, 590px);
  border-radius: 18px;
}

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

.teacher-thumbnail {
  --image-position: 50% 50%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .teacher-profile {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    gap: 32px;
  }

  .teacher-biography p {
    font-size: 12px;
    line-height: 2;
  }

  .teacher-main-photo {
    height: 460px;
  }

  .teacher-thumbnails {
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .teacher-heading {
    padding: 38px 0 27px;
  }

  .teacher-heading .section-title {
    font-size: 24px;
  }

  .teacher-profile {
    padding-top: 34px;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .teacher-gallery {
    width: 100%;
    order: 1;
  }

  .teacher-copy {
    width: 100%;
    padding-top: 32px;
    order: 2;
  }

  .teacher-copy .eyebrow {
    margin-bottom: 12px;
  }

  .teacher-copy h2 {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .teacher-main-photo {
    height: clamp(360px, 118vw, 520px);
  }

  .teacher-thumbnails {
    margin-top: 14px;
    gap: 9px;
  }

  .teacher-thumbnail {
    border-radius: 9px;
  }

  .teacher-biography p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 2;
  }
}
