.hero > .hero-copy { grid-column: 1; grid-row: 1; }
.hero > .hero-visual { grid-column: 2; grid-row: 1; }
.teacher-quote {
  grid-column: 1 / -1;
  grid-row: 2;
  min-width: 0;
  color: #fff3d5;
  background: linear-gradient(115deg, #47151a, #70212a 66%, #49151b);
  border-top: 1px solid #e2b6665c;
  border-bottom: 1px solid #e2b6665c;
}
.teacher-quote-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 230px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 36px 6%;
}
.teacher-quote-copy { min-width: 0; }
.teacher-quote-label {
  margin: 0 0 12px;
  color: #efd097;
  font-size: 15px;
  letter-spacing: .12em;
}
.teacher-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.85;
  text-wrap: pretty;
}
.teacher-quote blockquote span { color: #ffe2a4; }
.teacher-quote blockquote strong { color: #ffe2a4; font-weight: 700; }
.teacher-tissue {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 12px 0 22px;
  isolation: isolate;
}
.teacher-tissue::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 62%;
  height: 12%;
  left: 19%;
  bottom: 3%;
  border-radius: 50%;
  background: #1b050b80;
  filter: blur(10px);
}
.teacher-tissue img {
  width: 100%;
  height: auto;
  filter: drop-shadow(5px 14px 9px #17030b66);
  animation: tissue-float 5s ease-in-out infinite;
}
@keyframes tissue-float {
  0%, 100% { transform: translateY(3px) rotate(-4deg); }
  50% { transform: translateY(-9px) rotate(3deg); }
}
@media (max-width: 700px) {
  .hero > .hero-visual { grid-column: 1; grid-row: 1; }
  .hero > .teacher-quote { grid-column: 1; grid-row: 2; }
  .hero > .hero-copy { grid-column: 1; grid-row: 3; }
  .teacher-quote-inner { grid-template-columns: minmax(0, 1fr) minmax(80px, 29%); gap: 14px; padding: 28px 6%; }
  .teacher-quote-label { margin-bottom: 9px; font-size: 14px; letter-spacing: .07em; }
  .teacher-quote blockquote { font-size: clamp(18px, 4.6vw, 25px); line-height: 1.85; }
  .teacher-tissue { padding-bottom: 16px; }
  .teacher-tissue img { filter: drop-shadow(3px 10px 6px #17030b80); }
}
@media (prefers-reduced-motion: reduce) {
  .teacher-tissue img { animation: none; transform: rotate(-3deg); }
}
