:root {
  color-scheme: light;
  --bg: #f7f5f1;
  --paper: #ffffff;
  --ink: #1f2933;
  --muted: #586272;
  --accent: #b45309;
  --line: rgba(31, 41, 55, 0.15);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #f7f5f1 0%, #f3f1ed 100%);
  color: var(--ink);
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.masthead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}

.mastheadMedia {
  background: #f1ede6;
  padding: 12px;
  border-radius: 20px;
}

.mastheadVideo {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.mastheadText h1 {
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.role {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.contactList {
  list-style: none;
  display: grid;
  gap: 10px;
  padding-left: 0;
  margin: 0;
}

.contactList a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contactList a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.teachingPromo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.teachingPromoContent h2 {
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.teachingPromoContent p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

.teachingPromoLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent) !important;
  color: #fff !important;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none !important;
  border: 0;
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.teachingPromoLink:hover,
.teachingPromoLink:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(180, 83, 9, 0.28);
}

.sectionTitle h2 {
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.sectionBody p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.entry {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.entry:last-child {
  border-bottom: none;
}

.entryHeader {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.entry h3 {
  font-size: 1.15rem;
  color: var(--ink);
}

.entry span {
  font-size: 0.85rem;
  color: var(--muted);
}

.entry .meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.entry a {
  color: var(--accent);
  text-decoration: none;
}

.entry a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .masthead {
    grid-template-columns: 1fr;
  }

  .entryHeader {
    flex-direction: column;
    align-items: flex-start;
  }

  .teachingPromo {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 40px 18px 72px;
  }

  .section {
    padding: 24px;
  }
}
