:root {
  --ink: #17212b;
  --muted: #5f6f7b;
  --line: #dce6ec;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --soft-orange: #fff3ea;
  --navy: #064568;
  --blue: #0874ad;
  --orange: #f26a00;
  --orange-dark: #c95100;
  --gold: #d8ad45;
  --rose: #b31924;
  --shadow: 0 18px 48px rgba(6, 69, 104, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.top-anchor {
  display: block;
  height: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 3px solid var(--orange);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 116px;
  height: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 6px 12px;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(6, 69, 104, 0.16);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a,
.campus-link {
  border-radius: 6px;
  padding: 10px 12px;
  color: #263746;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.campus-link:hover {
  background: var(--soft);
}

.campus-link {
  color: #fff;
  background: var(--orange);
}

.campus-link:hover {
  color: #fff;
  background: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 69, 104, 0.91), rgba(6, 69, 104, 0.56) 54%, rgba(242, 106, 0, 0.32));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 0 clamp(20px, 6vw, 88px) 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(48px, 8vw, 96px);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.course-card a,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.lead-form button {
  color: #fff;
  background: var(--orange);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(6, 69, 104, 0.42);
}

section {
  padding: 88px clamp(20px, 5vw, 76px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
}

h3 {
  margin: 0 0 8px;
  line-height: 1.18;
}

p {
  margin: 0;
}

.intro-copy p,
.section-head p,
.curriculum p,
.platform p,
.processing p,
.contact p {
  color: var(--muted);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stats-row span {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats-row strong {
  display: block;
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
}

.courses,
.processing,
.passers {
  background: linear-gradient(180deg, var(--soft-orange) 0%, #ffffff 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.courses-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
  max-width: none;
}

.section-head p:last-child {
  margin-top: 14px;
}

.processing-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  max-width: none;
  margin-bottom: 42px;
}

.processing-head img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(6, 69, 104, 0.14);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.course-card {
  min-height: 236px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(22, 42, 63, 0.05);
}

.course-card.featured {
  grid-column: span 2;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 52%, var(--orange) 100%);
}

.course-card.featured span {
  display: inline-block;
  margin-bottom: 24px;
  color: #ffe2a7;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.course-card h3 {
  font-size: 25px;
}

.course-card p {
  min-height: 76px;
  color: inherit;
  opacity: 0.8;
}

.course-card a {
  margin-top: 22px;
  color: #fff;
  background: var(--blue);
}

.course-card.featured a {
  color: var(--orange-dark);
  background: #fff;
}

.course-card.muted {
  background: #fff7e8;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.passeasy-brand {
  max-width: 420px;
  margin-top: 28px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(6, 69, 104, 0.16);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.courses-brand {
  justify-self: end;
  width: min(100%, 330px);
  max-width: 330px;
  margin-top: 0;
  padding: 10px;
  box-shadow: 0 10px 24px rgba(6, 69, 104, 0.1);
}

.passeasy-brand img {
  width: 100%;
  border-radius: 10px;
}

.feature-list div,
.process-grid div {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.platform {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 38px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 54%, var(--orange-dark) 100%);
  color: #fff;
}

.course-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1;
}

.course-hero p:not(.eyebrow) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.course-hero-image {
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
}

.course-hero-image img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 10px;
}

.course-logo-panel {
  max-width: 360px;
  justify-self: end;
  background: #fff;
}

.course-logo-panel img {
  max-height: 180px;
}

.campus-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 58%, var(--orange) 100%);
}

.campus-hero-copy {
  max-width: 780px;
}

.campus-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
}

.campus-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.campus-hero-panel {
  padding: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(6, 40, 61, 0.26);
}

.campus-hero-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 14px;
  background: #fff;
  border-radius: 12px;
}

.student-portal-hero .campus-hero-panel img,
.campus-hero-panel img[src$="passeasy-logo.jpg"],
.campus-platform img[src$="passeasy-logo.jpg"] {
  max-width: 52%;
  margin: 0 auto;
}

.campus-access {
  background: linear-gradient(180deg, #fff 0%, var(--soft-orange) 100%);
}

.campus-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.campus-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.campus-card.featured {
  background: linear-gradient(135deg, #063f60 0%, #075b83 68%, #d95700 100%);
  border-color: transparent;
  color: #fff;
}

.campus-card-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.campus-card.featured .campus-card-kicker {
  color: #ffbf7a;
}

.campus-card h3 {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.12;
}

.campus-card p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.campus-card.featured p,
.campus-card.featured h3 {
  color: #fff;
}

.campus-card .button {
  margin-top: auto;
}

.campus-account-reveal {
  margin-top: auto;
}

.campus-account-reveal summary {
  width: fit-content;
  cursor: pointer;
  list-style: none;
}

.campus-account-reveal summary::-webkit-details-marker {
  display: none;
}

.campus-account-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.campus-account-options[hidden] {
  display: none;
}

.campus-account-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 14px;
  color: #063f60;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.campus-account-options a::after {
  content: ">";
  color: var(--orange);
  font-weight: 900;
}

.campus-button {
  color: #fff;
  background: var(--navy);
}

.campus-platform img {
  background: #fff;
  object-fit: contain;
}

.course-package {
  background: linear-gradient(180deg, var(--soft-orange) 0%, #fff 100%);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.program-package-card {
  color: #fff;
  background: linear-gradient(135deg, #063f60 0%, #075b83 64%, #d95700 100%) !important;
  border-color: rgba(6, 63, 96, 0.18) !important;
  box-shadow: 0 18px 40px rgba(6, 63, 96, 0.18);
}

.program-package-card h3 {
  color: #fff;
}

.program-package-card .package-name {
  margin: 8px 0 18px;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  color: #063f60;
  background: #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.program-package-card li {
  color: #fff !important;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.program-package-card li::before {
  background: #ffb36b;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.24);
}

.package-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.package-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.package-grid li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.testmasters {
  background: #fff;
}

.testmasters .section-head {
  margin-bottom: 24px;
}

.testmaster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.single-testmaster {
  grid-template-columns: minmax(0, 460px);
}

.testmaster-grid article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid rgba(6, 69, 104, 0.14);
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.testmaster-photo,
.testmaster-initials {
  width: 88px;
  height: 88px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(6, 69, 104, 0.14);
}

.testmaster-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.testmaster-initials {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  font-size: 28px;
  font-weight: 900;
}

.testmaster-grid h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.18;
}

.testmaster-grid span {
  display: block;
  min-height: 34px;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.testmaster-grid p {
  margin-top: auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.single-form {
  grid-template-columns: minmax(0, 1fr);
}

.platform img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(6, 69, 104, 0.18), rgba(242, 106, 0, 0.2)),
    var(--soft);
  border: 1px solid rgba(6, 69, 104, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.platform ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.platform li {
  margin-top: 10px;
  padding: 12px 14px;
  border-left: 4px solid var(--orange);
  background: var(--soft-orange);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid strong {
  color: var(--orange);
}

.services-card {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue)) !important;
  border-color: transparent !important;
}

.services-card strong,
.services-card p {
  color: rgba(255, 255, 255, 0.86);
}

.why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-list span {
  padding: 12px 14px;
  border: 1px solid #f0c29b;
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.team {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 69, 104, 0.06), rgba(242, 106, 0, 0.08)),
    #fff;
}

.team::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  content: "";
  background: radial-gradient(circle, rgba(242, 106, 0, 0.16), rgba(242, 106, 0, 0) 68%);
  pointer-events: none;
}

.team-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.team-head p:last-child {
  color: var(--muted);
}

.leadership-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.leader-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 69, 104, 0.14);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.leader-card:nth-child(odd) {
  border-top: 5px solid var(--blue);
}

.leader-card:nth-child(even) {
  border-top: 5px solid var(--orange);
}

.leader-photo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--soft);
}

.leader-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, rgba(6, 69, 104, 0), rgba(6, 69, 104, 0.2));
}

.leader-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-photo {
  background: #fff;
}

.founder-photo img {
  object-position: center top;
}

.leader-copy {
  display: flex;
  flex-direction: column;
  padding: 2px 0 0;
}

.leader-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--orange-dark);
  background: var(--soft-orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.leader-card h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.leader-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.credential-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  position: relative;
  padding-left: 18px;
  color: #263746;
  font-size: 14px;
  line-height: 1.42;
}

.credential-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial {
  display: block;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.testimonial p {
  font-size: 17px;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--blue);
}

.new-story {
  border-color: #f3c39d;
  background: linear-gradient(180deg, #fff, var(--soft-orange));
}

.contact {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 6vw, 80px);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 54%, var(--orange-dark) 100%);
  color: #fff;
}

.contact p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.form-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  color: var(--ink);
}

.lead-form h3 {
  color: var(--navy);
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
}

.lead-form .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 76px);
  color: #fff;
  background: #07283d;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .campus-link {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .campus-link {
    display: flex;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.nav-open .campus-link {
    grid-column: 1 / -1;
  }

  .section-grid,
  .course-hero,
  .campus-hero,
  .platform,
  .team-head,
  .courses-head,
  .processing-head,
  .form-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .course-grid,
  .campus-card-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  section {
    padding: 64px 18px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 0 18px 54px;
  }

  .course-hero {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .hero p:not(.eyebrow),
  .testimonial p {
    font-size: 17px;
  }

  .stats-row,
  .course-grid,
  .campus-card-grid,
  .feature-list,
  .process-grid,
  .package-grid,
  .testmaster-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: auto;
  }

  .leader-photo img {
    aspect-ratio: 4 / 5;
  }

  .leader-card h3 {
    font-size: 22px;
  }

  .course-card.featured {
    grid-column: auto;
  }

  .campus-hero h1 {
    font-size: 40px;
  }

  .site-footer {
    flex-direction: column;
  }
}
