/* ============================================================
   TEACHING SECTION
   ============================================================ */

.teaching {
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 6.25vw, 8rem);
  background: #08080a;
}

.teaching__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.teaching__content {
  min-width: 0;
}

.teaching__heading {
  margin: 0;
  color: #f4f4f6;
  font-size: clamp(2.6rem, 4.3vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.teaching__copy {
  max-width: 62rem;
  margin-top: clamp(1.75rem, 2.6vw, 2.6rem);
  color: #9898a1;
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.68;
}

.teaching__stats {
  display: grid;
  max-width: 55rem;
  margin-top: clamp(2.25rem, 3.7vw, 3.75rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 3rem);
}

.teaching__stat {
  min-width: 0;
}

.teaching__stat strong,
.teaching__stat span {
  display: block;
}

.teaching__stat strong {
  color: #f4f4f6;
  font-size: clamp(1.75rem, 2.25vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.teaching__stat span {
  margin-top: 0.45rem;
  color: #6f6f78;
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  line-height: 1.35;
}

.teaching__button {
  width: min(100%, 22rem);
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

@media (max-width: 1020px) {
  .teaching__content {
    max-width: 62rem;
  }
}

@media (max-width: 580px) {
  .teaching__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .teaching__stat span {
    margin-top: 0.25rem;
  }

  .teaching__button {
    width: 100%;
  }
}
