/* ==========================================================================
   Teaching page (teaching.html)
   Placeholder page — no content yet beyond the shared header and an
   "under development" note, centred in the viewport. ================== */

/* Abhaya Libre / Fanwood Text are loaded once via <link> in the
   page's own <head> (faster than @import, which blocks on an extra
   round trip). */

body.teaching {
  margin: 0;
  /* See the comment on body.home in home.css: 100svh avoids content
     being clipped behind the mobile browser's toolbar. */
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* --- Topbar (site title + nav), reused from home.css --- */

body.teaching .home-topbar {
  position: fixed;
  background: transparent;
  z-index: 5;
}

/* --- Centred placeholder message --- */

.teaching-notice h1 {
  font-family: "Abhaya Libre", serif;
  font-weight: 400;
  font-size: 2rem;
  margin: 0 0 0.5em;
  color: #23241f;
}

.teaching-notice p {
  font-style: italic;
  font-size: 1.0625rem;
  margin: 0;
  color: #23241f;
}

@media (max-width: 1100px) {
  .teaching-notice h1 {
    font-size: 1.75rem;
  }
}
