:root {
  --navy: #1e3c66;
  --light-bg: #eceeef;
  --text: #1f2d3d;
  --muted: #6d7482;
  --accent: #dca533;
  --border: #d8dde2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--light-bg);
}

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.top-header {
  background: var(--navy);
  color: #fff;
  padding: 18px 0 16px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  filter: brightness(0) invert(1);
}

.brand-text h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.brand-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
}

.search-box {
  width: 244px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 8px 0 10px;
  gap: 6px;
}

.search-icon {
  border: 0;
  background: transparent;
  color: #38465c;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.search-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #27364b;
  font-size: 14px;
  font-family: "Source Sans 3", sans-serif;
}

.search-input::placeholder {
  color: #7f8a9a;
}

.main-nav {
  background: #f6f7f9;
  border-top: 1px solid #d9dfe7;
  border-bottom: 1px solid #d9dfe7;
}

.nav-inner {
  min-height: 72px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #41536a;
  text-decoration: none;
  font-size: 15.4px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.main-nav a.active {
  color: #1c365f;
}

.nav-dropbtn.active {
  color: #1c365f;
}

.hero {
  height: 470px;
  overflow: hidden;
  background: #d7dce2;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-wrap {
  padding: 86px 0 44px;
}

.grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-page .cards {
  grid-template-columns: repeat(2, 385.33px);
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.home-page .card {
  width: 385.33px;
}

.home-page .card img {
  width: 385.33px;
  height: 288.99px;
}

.card h3 {
  margin: 18px 16px 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  color: #2a3442;
}

.announcements {
  background: #f3f5f8;
  border: 1px solid var(--border);
}

.home-page .announcements {
  width: 373px;
  height: 413px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.home-page .announcements h2,
.home-page .announcements .date,
.home-page .announcements li a,
.home-page .announcements .view-all {
  font-size: 18px;
}

.announcements h2 {
  margin: 0;
  padding: 18px 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  border-bottom: 1px solid var(--border);
  color: #283444;
}

.announcements ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px 0;
}

.announcements li {
  display: grid;
  grid-template-columns: 88px 10px 1fr;
  column-gap: 16px;
  padding: 12px 0;
}

.announcements .announcement-divider {
  display: block;
  grid-column: 2;
  width: 8px;
  height: auto;
  min-height: 62px;
  border-left: 3px solid var(--accent);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: transparent;
  align-self: stretch;
  justify-self: center;
}

.announcements .date {
  grid-column: 1;
  font-weight: 700;
  font-size: 19px;
  color: #2f3a48;
  line-height: 1.05;
}

.announcements li a {
  grid-column: 3;
  color: #334257;
  text-decoration: none;
  font-size: 28px;
  line-height: 1.18;
}

.view-all {
  display: block;
  text-align: right;
  padding: 8px 20px 18px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 25px;
}

.footer {
  background: var(--navy);
  color: #d4dceb;
  margin-top: 30px;
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand img {
  width: 124px;
  height: 124px;
  filter: brightness(0) invert(1);
}

.footer-brand-text {
  max-width: 430px;
}

.footer-brand-text p {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.35;
  color: #d4dceb;
}

.footer-brand-text a {
  color: #d4dceb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 8px;
  align-items: start;
}

.footer-contact-label {
  white-space: nowrap;
}

.footer-contact-lines {
  display: grid;
}

.footer-contact-line {
  display: block;
}

.footer p,
.footer li,
.footer a {
  color: #d4dceb;
  margin: 0;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
}

.footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li,
.footer ul li a {
  font-size: 14.5px;
}

.quick-links h4 {
  text-align: center;
}

.quick-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 8px;
}

.quick-links li a {
  display: block;
  white-space: nowrap;
  line-height: 1.35;
}

.quick-links li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-links li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 auto;
}

.quick-links li.icon-calendar::before { background-image: url("./academic-calendar.png"); }
.quick-links li.icon-book::before { background-image: url("./course-catalogue.png"); }
.quick-links li.icon-cap::before { background-image: url("./admissions.png"); }
.quick-links li.icon-directory::before { background-image: url("./faculty-directory.png"); }
.quick-links li.icon-users::before { background-image: url("./faculty-directory.png"); }
.quick-links li.icon-clock::before { background-image: url("./timetable.png"); }
.quick-links li.icon-doc::before { background-image: url("./forms-notices.png"); }
.quick-links li.icon-library::before { background-image: url("./library-resources.png"); }
.quick-links li.icon-mail::before { background-image: url("./contact-us.png"); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 24px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 1200px) {
  .nav-inner {
    gap: 16px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .grid-layout {
    grid-template-columns: 1fr;
  }

  .announcements li a {
    font-size: 21px;
  }

  .home-page .announcements {
    width: 100%;
    height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer h4 {
    font-size: 18px;
  }

  .quick-links ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .home-page .cards {
    grid-template-columns: 1fr;
  }

  .home-page .card,
  .home-page .card img {
    width: 100%;
  }

  .top-header {
    padding: 12px 0;
  }

  .header-inner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .search-box {
    width: 100%;
    max-width: 280px;
  }

  .hero {
    height: 300px;
  }

  .card h3 {
    font-size: 29px;
  }

  .announcements h2 {
    font-size: 34px;
  }

  .announcements li {
    grid-template-columns: 80px 10px 1fr;
  }

  .announcements li a {
    font-size: 18px;
  }

  .home-page .announcements {
    width: 100%;
    height: auto;
  }

  .view-all {
    font-size: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* About page */
.about-hero {
  height: 420px;
  background:
    linear-gradient(rgba(18, 33, 58, 0.42), rgba(18, 33, 58, 0.42)),
    url("https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  display: grid;
  place-items: center;
}

.about-hero-overlay {
  text-align: center;
  color: #fff;
  margin-top: 26px;
}

.about-hero h1 {
  margin: 0;
  font-size: 70px;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.about-hero p {
  margin: 8px 0 0;
  font-size: 24px;
}

.about-main {
  padding: 62px 0 90px;
}

.about-page .about-main {
  background: #ffffff;
}

.about-container {
  width: min(1020px, 84vw);
  margin: 0 auto;
}

.about-section {
  padding-bottom: 28px;
  margin-bottom: 34px;
  border-bottom: 1px solid #d6dbe2;
}

.about-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.about-section h2 {
  margin: 0 0 20px;
  color: #122a53;
  font-size: 52px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.about-history-title {
  width: 134.94px;
  height: 40px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.9px;
}

.about-admin-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.9px;
}

.about-section h3 {
  margin: 22px 0 14px;
  color: #122a53;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 600;
}

.about-section p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.72;
  color: #2e3745;
}

.about-history-section > p {
  font-family: "Inter", "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 29.25px;
  letter-spacing: 0;
}

.about-figure {
  margin: 22px 0 20px;
}

.about-figure img {
  width: 100%;
  max-width: 760px;
  height: 330px;
  object-fit: cover;
  display: block;
}

.about-figure figcaption {
  margin-top: 8px;
  color: #6d7482;
  font-size: 11px;
}

.about-figure-last {
  margin-bottom: 8px;
}

.hod-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
}

.hod-photo {
  width: 84px;
  height: 74px;
  background: #b7b9bc;
}

.hod-info p {
  margin: 0 0 2px;
  font-size: 16px;
  line-height: 1.55;
}

.hod-info .name {
  font-weight: 700;
}

.admin-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
}

.admin-list p:nth-child(4n + 1):not(:first-child) {
  margin-top: 18px;
}

.about-hod-message {
  padding-top: 12px;
}

.about-hod-message h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.9px;
}

.about-hod-message p {
  max-width: 820px;
  font-family: "Inter", "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 2.15;
  font-weight: 400;
  font-style: normal;
  color: #535e6f;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  max-width: 860px;
  border-top: 1px solid #d6dbe2;
  padding-top: 12px;
}

.contact-grid h3 {
  margin: 0 0 10px;
  font-size: 32px;
}

.contact-grid p {
  font-size: 16px;
}

.location-block {
  margin-top: 18px;
}

.location-block h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.location-block img {
  width: 100%;
  max-width: 780px;
  height: 205px;
  object-fit: cover;
  border: 1px solid #d3d8df;
}

.footer-about {
  margin-top: 18px;
}

/* News and events page */
.news-events-page {
  background: #ffffff;
}

.news-events-hero {
  position: relative;
  min-height: 506px;
  background: #17345d;
}

.news-events-hero-overlay {
  min-height: 506px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
}

.news-events-hero-overlay h1 {
  margin: 54px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
}

.news-events-main {
  background: #ffffff;
  padding: 60px 0 82px;
}

.news-events-container {
  width: min(910px, 86vw);
  margin: 0 auto;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.news-filter {
  border: 0;
  border-radius: 999px;
  background: #efefef;
  color: #8c929e;
  padding: 8px 18px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  cursor: default;
}

.news-filter.active {
  background: #2d4b80;
  color: #ffffff;
}

.news-events-grid {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.news-announcements h2,
.news-upcoming h2,
.news-past h2 {
  margin: 0 0 18px;
  color: #687187;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.news-announcement-item {
  margin-bottom: 18px;
}

.news-announcement-date {
  margin: 0 0 4px;
  color: #8e95a3;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.news-announcement-copy {
  margin: 0;
  color: #404856;
  font-size: 18px;
  line-height: 1.42;
}

.news-event-card {
  border: 1px solid #dde2ea;
  border-radius: 4px;
  background: #ffffff;
  padding: 18px 20px 16px;
  margin-bottom: 10px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.news-event-card h3,
.news-past-item h3 {
  margin: 0;
  color: #323947;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
}

.news-event-meta {
  margin: 6px 0 8px;
  color: #8c93a2;
  font-size: 13px;
  line-height: 1.45;
}

.news-event-text {
  margin: 0;
  color: #7b8391;
  font-size: 16px;
  line-height: 1.6;
}

.news-past {
  margin-top: 42px;
}

.news-past-list {
  border-top: 1px solid transparent;
}

.news-past-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0 12px;
  border-bottom: 1px solid #e7ebf1;
}

.news-past-item p {
  margin: 4px 0 0;
  color: #8d95a3;
  font-size: 14px;
  line-height: 1.4;
}

.news-past-item a {
  color: #6280bd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

/* Research page */
.research-page {
  background: #ffffff;
}

.research-hero {
  position: relative;
  min-height: 260px;
  background: #17345d;
}

.research-hero-overlay {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  padding: 28px 20px 32px;
}

.research-hero-overlay h1 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 51.25px;
  line-height: 1.05;
  font-weight: 700;
}

.research-hero-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 25px;
  line-height: 1.45;
}

.research-main {
  background: #ffffff;
  padding: 96px 0 122px;
}

.research-container {
  width: min(1020px, 86vw);
  margin: 0 auto;
}

.research-intro {
  margin-bottom: 78px;
}

.research-intro h2 {
  margin: 0 0 22px;
  color: #2a3140;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
}

.research-intro p {
  max-width: 860px;
  margin: 0;
  color: #8b93a2;
  font-size: 18px;
  line-height: 1.72;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  background: transparent;
}

.research-card {
  min-height: 276px;
  padding: 54px 40px 40px;
  border: 1px solid #dfe3ea;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 39, 71, 0.04);
}

.research-card h3 {
  margin: 0 0 16px;
  color: #2d3444;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.22;
  font-weight: 700;
}

.research-card p {
  margin: 0 0 36px;
  color: #7f8797;
  font-size: 15px;
  line-height: 1.65;
}

.research-card a {
  color: #355791;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.research-card a span {
  padding-left: 6px;
}

.research-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.research-card-cta {
  color: #355791;
  font-size: 15px;
  font-weight: 700;
}

.research-card-cta span {
  padding-left: 6px;
}

.research-detail-page {
  background: #ffffff;
}

.research-detail-main {
  background: #ffffff;
}

.research-detail-hero {
  border-bottom: 1px solid #e3e7ee;
  padding: 62px 0 28px;
}

.research-detail-container,
.research-detail-content {
  width: min(980px, 86vw);
  margin: 0 auto;
}

.research-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #7a8393;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.research-detail-eyebrow {
  margin: 0 0 14px;
  color: #808a9a;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.research-detail-hero h1 {
  margin: 0;
  color: #262d3a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1.03;
  font-weight: 700;
}

.research-detail-body {
  padding: 56px 0 120px;
}

.research-detail-content {
  max-width: 860px;
}

.research-detail-section {
  margin-bottom: 42px;
}

.research-detail-section h2 {
  margin: 0 0 18px;
  color: #303744;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.research-detail-section p {
  max-width: 780px;
  margin: 0;
  color: #737d8d;
  font-size: 20px;
  line-height: 1.9;
}

.research-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.research-detail-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
  color: #303744;
  font-size: 20px;
  line-height: 1.65;
}

.research-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 2px;
  height: 30px;
  background: #6a86b5;
}

.research-detail-links {
  display: grid;
  gap: 10px;
}

.research-detail-links a,
.research-detail-related-links a {
  color: #355791;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.5;
}

.research-detail-list-light li {
  color: #6f7786;
}

.research-detail-related {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid #e3e7ee;
}

.research-detail-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

/* Career page */
.career-page {
  background: #fffdf9;
}

.career-hero {
  position: relative;
  min-height: 260px;
  background: #17345d;
}

.career-hero-overlay {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  padding: 28px 20px 30px;
}

.career-hero-overlay h1 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 700;
}

.career-hero-overlay p {
  max-width: 760px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.45;
}

.career-hero-overlay span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.8px;
}

.career-main {
  background: #fffdf9;
  padding: 42px 0 88px;
}

.career-container {
  width: min(548px, 76vw);
  margin: 0 auto;
}

.career-section {
  padding: 34px 0 38px;
  border-top: 1px solid #e4e6ea;
}

.career-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.career-section h2 {
  margin: 0 0 18px;
  color: #30446a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.18;
  font-weight: 700;
}

.career-section p,
.career-bullet-list li {
  margin: 0 0 14px;
  color: #5e6471;
  font-size: 14px;
  line-height: 1.72;
}

.career-small-text {
  font-size: 12px;
  color: #7c828e;
}

.career-opening {
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 2px solid #d29b42;
}

.career-opening:last-child {
  margin-bottom: 0;
}

.career-opening h3 {
  margin: 0 0 4px;
  color: #2f3441;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.career-project {
  margin-bottom: 10px;
  color: #808796;
  font-size: 12px;
}

.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  color: #7a808c;
}

.career-meta a {
  color: #d1932e;
  text-decoration: none;
  font-weight: 700;
}

.career-bullet-list {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
}

.career-bullet-list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 12px;
}

.career-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d29b42;
}

.career-section-note {
  margin-top: 10px;
}

.career-contact-block p {
  margin-bottom: 6px;
}

.career-contact-title {
  color: #2f3441;
  font-weight: 700;
}

/* Administration page */
.administration-page {
  background: #ffffff;
}

.administration-main {
  background: #ffffff;
  padding: 56px 0 80px;
}

.administration-container {
  width: min(1270px, 90vw);
  margin: 0 auto;
}

.administration-section h1,
.administration-section h2,
.administration-section h3 {
  color: #243f70;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.administration-section h1 {
  margin: 0 0 52px;
  font-size: 36px;
  line-height: 1.05;
}

.administration-block {
  margin-bottom: 72px;
}

.administration-block h2 {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

.hod-layout {
  display: flex;
  align-items: flex-start;
  gap: 38px;
}

.hod-placeholder {
  width: 124px;
  height: 124px;
  background: #c9c9c9;
  flex: 0 0 auto;
}

.hod-copy h3,
.admin-person h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.hod-copy p,
.admin-person p {
  margin: 0 0 10px;
  color: #667082;
  font-size: 18px;
  line-height: 1.35;
}

.admin-person {
  margin-bottom: 42px;
}

.admin-person:last-child {
  margin-bottom: 0;
}

.administration-committee {
  min-height: 300px;
}

@media (max-width: 1200px) {
  .about-hero h1 {
    font-size: 56px;
  }

  .about-hero p {
    font-size: 20px;
  }

  .about-section h2 {
    font-size: 42px;
  }

  .news-events-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-events-container {
    width: min(910px, 90vw);
  }

  .research-container {
    width: min(1020px, 90vw);
  }

  .research-detail-container,
  .research-detail-content {
    width: min(980px, 90vw);
  }

  .career-container {
    width: min(548px, 84vw);
  }

  .administration-container {
    width: min(1270px, 94vw);
  }
}

@media (max-width: 760px) {
  .about-hero {
    height: 290px;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-main {
    padding-top: 34px;
  }

  .about-container {
    width: min(1020px, 90vw);
  }

  .about-section h2 {
    font-size: 36px;
  }

  .about-section h3 {
    font-size: 28px;
  }

  .about-figure img {
    height: 230px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-block img {
    height: 180px;
  }

  .news-events-hero,
  .news-events-hero-overlay {
    min-height: 320px;
  }

  .news-events-hero-overlay h1 {
    margin-top: 24px;
    font-size: 28px;
  }

  .news-events-main {
    padding: 34px 0 48px;
  }

  .news-filters {
    gap: 10px;
    margin-bottom: 28px;
  }

  .news-filter {
    padding: 8px 16px;
    font-size: 13px;
  }

  .news-announcements h2,
  .news-upcoming h2,
  .news-past h2 {
    font-size: 15px;
    letter-spacing: 1.4px;
  }

  .news-announcement-copy {
    font-size: 16px;
  }

  .news-event-card {
    padding: 16px;
  }

  .news-event-card h3,
  .news-past-item h3 {
    font-size: 17px;
  }

  .news-event-text {
    font-size: 15px;
  }

  .news-past-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .research-hero,
  .research-hero-overlay {
    min-height: 220px;
  }

  .research-hero-overlay h1 {
    margin-bottom: 10px;
    font-size: 40px;
  }

  .research-hero-overlay p {
    font-size: 18px;
  }

  .research-main {
    padding: 46px 0 60px;
  }

  .research-intro {
    margin-bottom: 38px;
  }

  .research-intro h2 {
    font-size: 34px;
  }

  .research-intro p {
    font-size: 16px;
  }

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

  .research-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .research-card h3 {
    font-size: 24px;
  }

  .research-detail-hero {
    padding: 40px 0 24px;
  }

  .research-detail-back {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .research-detail-eyebrow {
    font-size: 12px;
  }

  .research-detail-hero h1 {
    font-size: 42px;
  }

  .research-detail-body {
    padding: 34px 0 60px;
  }

  .research-detail-section {
    margin-bottom: 30px;
  }

  .research-detail-section p,
  .research-detail-list li,
  .research-detail-links a,
  .research-detail-related-links a {
    font-size: 15px;
  }

  .research-detail-related-links {
    gap: 16px;
    flex-direction: column;
  }

  .career-hero,
  .career-hero-overlay {
    min-height: 220px;
  }

  .career-hero-overlay h1 {
    font-size: 36px;
  }

  .career-hero-overlay p {
    font-size: 16px;
  }

  .career-main {
    padding: 28px 0 56px;
  }

  .career-container {
    width: min(548px, 88vw);
  }

  .career-section {
    padding: 26px 0 30px;
  }

  .career-section h2 {
    font-size: 24px;
  }

  .administration-main {
    padding: 34px 0 56px;
  }

  .administration-section h1 {
    margin-bottom: 34px;
    font-size: 42px;
  }

  .administration-block {
    margin-bottom: 42px;
  }

  .administration-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hod-layout {
    flex-direction: column;
    gap: 20px;
  }

  .hod-copy h3,
  .admin-person h3 {
    font-size: 22px;
  }

  .hod-copy p,
  .admin-person p {
    font-size: 16px;
  }

  .administration-committee {
    min-height: 160px;
  }
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 72px;
}

.nav-dropbtn {
  color: #41536a;
  text-decoration: none;
  font-size: 15.4px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: #f0f1f3;
  border: 1px solid #d9dfe7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 30;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #2f4663;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #e6e8ec;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

/* Programs page */
.programs-page {
  background: #ffffff;
}

.programs-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 31, 55, 0.18), rgba(14, 31, 55, 0.44));
}

.programs-hero-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(24, 49, 83, 0.38), rgba(24, 49, 83, 0.58)),
    linear-gradient(135deg, #6d7c93 0%, #3c4d66 100%);
}

.programs-hero-placeholder span,
.programs-image-placeholder span {
  padding: 14px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.programs-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
}

.programs-hero-overlay h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  font-style: normal;
}

.programs-hero-overlay p {
  margin: 14px 0 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
}

.programs-main {
  background: #ffffff;
}

.programs-container {
  width: min(1120px, 86vw);
  margin: 0 auto;
}

.programs-overview {
  padding: 70px 0 62px;
}

.programs-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.programs-image-card {
  padding-top: 4px;
}

.programs-image-placeholder {
  min-height: 446px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ddd8d2 0%, #c2b9ae 100%);
  border: 1px solid #d4d8de;
}

.programs-section h2 {
  margin: 0;
  color: #1d3c69;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.75px;
}

.programs-intro-copy h2 {
  margin: 0;
  color: #1d3c69;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.75px;
}

.programs-subtitle {
  margin: 12px 0 22px;
  color: #7a808c;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

.programs-links {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.programs-links a,
.programs-inline-link {
  color: #1c365f;
  text-decoration: none;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
}

.programs-section {
  padding: 76px 0 74px;
  border-top: 1px solid #edf0f4;
}

.programs-about-section {
  padding: 88px 0 78px;
}

.programs-section-alt {
  background: #ffffff;
}

.programs-narrow {
  width: min(1120px, 86vw);
}

.programs-about-content {
  width: min(760px, 74vw);
}

.programs-structured-content,
.programs-highlights-content,
.programs-eligibility-content {
  width: min(760px, 74vw);
  margin-left: auto;
  margin-right: auto;
}

.programs-title-bar {
  width: 68px;
  height: 3px;
  background: #cfd7e3;
  margin: 18px 0 34px;
}

.programs-section p,
.programs-bullet-list li,
.programs-note {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: #2d333b;
}

.programs-section p {
  max-width: 1030px;
  margin: 0 0 18px;
}

.programs-bullet-list {
  margin: 0;
  padding-left: 20px;
  max-width: 1040px;
}

.programs-about-content p,
.programs-about-content .programs-bullet-list {
  max-width: 760px;
}

.programs-about-content .programs-title-bar {
  margin-bottom: 30px;
}

.programs-about-content .programs-bullet-list {
  padding-left: 24px;
}

.programs-about-content .programs-bullet-list li {
  margin-bottom: 6px;
}

.programs-structured-content .programs-title-bar {
  margin-bottom: 34px;
}

.programs-structured-content .programs-bullet-list,
.programs-structured-content .programs-note {
  max-width: 760px;
}

.programs-structured-content .programs-bullet-list {
  padding-left: 24px;
}

.programs-structured-content .programs-bullet-spaced li {
  margin-bottom: 22px;
}

.programs-structured-content .programs-inline-link {
  margin-top: 24px;
}

.programs-structured-content .programs-note {
  margin-top: 12px;
}

.programs-eligibility-content .programs-bullet-list,
.programs-eligibility-content .programs-note {
  max-width: 760px;
}

.programs-eligibility-content .programs-bullet-list {
  padding-left: 24px;
}

.programs-eligibility-content .programs-bullet-spaced li {
  margin-bottom: 14px;
}

.programs-eligibility-content .programs-note {
  margin-top: 10px;
  max-width: 720px;
  padding-left: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #8b93a1;
}

.programs-bullet-list li {
  margin-bottom: 8px;
}

.programs-bullet-spaced li {
  margin-bottom: 18px;
}

.programs-inline-link {
  display: inline-block;
  margin-top: 18px;
}

.programs-note {
  max-width: 760px;
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 2px solid #d9dee6;
  color: #737b88;
  font-size: 16px;
  line-height: 1.65;
}

.programs-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
}

.programs-highlight-card {
  min-height: 94px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid #d7dfe8;
  background: #ffffff;
}

.programs-highlight-icon {
  color: #1c365f;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 1px;
}

.programs-highlight-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.programs-highlight-card p {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 240px;
}

/* Giving page */
.giving-page {
  background: #fff;
}

.giving-container {
  width: min(1120px, 86vw);
  margin: 0 auto;
}

.giving-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #1b2f54;
}

.giving-hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(17, 33, 58, 0.62), rgba(17, 33, 58, 0.62)),
    linear-gradient(135deg, #58667d 0%, #253752 100%);
}

.giving-hero-media span,
.giving-image-placeholder span {
  padding: 14px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.giving-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 52px 20px;
}

.giving-eyebrow {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 4px;
}

.giving-hero-overlay h1 {
  margin: 0;
  max-width: 540px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 0.94;
  font-weight: 700;
  font-style: normal;
}

.giving-hero-text {
  margin: 14px 0 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
  font-style: normal;
}

.giving-hero-button,
.giving-primary-button {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.giving-hero-button {
  margin-top: 24px;
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.giving-main {
  background: #fff;
}

.giving-support {
  padding: 74px 0 88px;
}

.giving-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.giving-image-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  border: 1px solid #dddfe5;
  background: linear-gradient(135deg, #d5b280 0%, #98652c 100%);
}

.giving-copy h2,
.giving-section h2,
.giving-impact h2,
.giving-how h2,
.giving-contact h2 {
  margin: 0;
  color: #1a2e52;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
}

.giving-copy p,
.giving-list li,
.giving-area-card p,
.giving-impact p,
.giving-how-text,
.giving-method-card p,
.giving-contact-card p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #505b6d;
}

.giving-copy > p {
  margin: 14px 0 12px;
}

.giving-list {
  margin: 0;
  padding-left: 18px;
}

.giving-list li {
  margin-bottom: 6px;
}

.giving-section,
.giving-how,
.giving-quote,
.giving-contact {
  padding: 68px 0;
  border-top: 1px solid #f0f2f6;
}

.giving-section-inner,
.giving-how-inner,
.giving-impact-inner,
.giving-contact-inner,
.giving-quote-inner {
  text-align: center;
}

.giving-title-bar {
  width: 30px;
  height: 2px;
  margin: 14px auto 30px;
  background: #c7d1e0;
}

.giving-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 42px;
  margin-top: 8px;
  text-align: left;
}

.giving-area-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.giving-area-icon,
.giving-method-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #f1f4f8;
  color: #1b2e4f;
  font-size: 12px;
  flex: 0 0 auto;
}

.giving-area-card h3,
.giving-method-card h3,
.giving-contact-card h3 {
  margin: 0 0 6px;
  color: #1a2d51;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.giving-area-card p,
.giving-method-card p {
  margin: 0;
}

.giving-impact {
  padding: 72px 0 76px;
  background: #1b2f58;
  color: #fff;
}

.giving-impact h2,
.giving-impact h3,
.giving-impact p {
  color: #fff;
}

.giving-title-bar-light {
  background: rgba(255, 255, 255, 0.32);
}

.giving-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.giving-impact-grid h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.giving-impact-grid p {
  margin: 0 auto;
  max-width: 150px;
  font-size: 11px;
  line-height: 1.45;
}

.giving-how-text {
  max-width: 620px;
  margin: 0 auto 34px;
}

.giving-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.giving-method-card {
  text-align: center;
}

.giving-method-icon {
  margin: 0 auto 12px;
}

.giving-primary-button {
  margin-top: 24px;
  padding: 14px 20px;
  background: #1b2f58;
}

.giving-quote blockquote {
  max-width: 720px;
  margin: 0 auto 12px;
  color: #26344d;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
}

.giving-quote p {
  margin: 0;
  color: #6f7887;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
}

.giving-contact-card {
  max-width: 360px;
  margin: 22px auto 0;
}

.giving-contact-card p {
  margin: 0 0 8px;
}

/* Contact page */
.contact-page {
  background: #fff;
}

.contact-container {
  width: min(1120px, 86vw);
  margin: 0 auto;
}

.contact-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #223656;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(23, 38, 63, 0.62), rgba(23, 38, 63, 0.62)),
    linear-gradient(135deg, #6f7785 0%, #37465d 100%);
}

.contact-hero-media span,
.contact-map-placeholder span {
  padding: 14px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.contact-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 510px;
  display: grid;
  justify-items: center;
  align-content: center;
  row-gap: 2px;
  text-align: center;
  color: #fff;
  padding: 48px 20px;
}

.contact-hero-overlay h1 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  font-style: normal;
}

.contact-hero-overlay p {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  font-style: normal;
}

.contact-main {
  background: #fff;
}

.contact-section {
  padding: 58px 0;
}

.contact-location-section,
.contact-form-section {
  background: #fbfcfd;
  border-top: 1px solid #f0f2f5;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
}

.contact-address-card h2,
.contact-admin-card h2,
.contact-location-wrap h2,
.contact-form-wrap h2 {
  margin: 0 0 22px;
  color: #1b2e50;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
}

.contact-info-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-info-icon,
.contact-inline-icon {
  color: #1e3c66;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.contact-info-group h3,
.contact-hours h3,
.contact-admin-item h3,
.contact-directions h3 {
  margin: 0 0 8px;
  color: #1d2f4f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-info-group p,
.contact-inline-row p,
.contact-hours p,
.contact-admin-item p,
.contact-directions p,
.contact-form-wrap p,
.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form button {
  font-family: "Source Sans 3", sans-serif;
}

.contact-info-group p,
.contact-inline-row p,
.contact-hours p,
.contact-admin-item p,
.contact-directions p,
.contact-form-wrap p {
  margin: 0 0 4px;
  color: #4d596a;
  font-size: 13px;
  line-height: 1.65;
}

.contact-inline-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-hours {
  margin-top: 18px;
}

.contact-hours .contact-inline-row {
  margin-bottom: 8px;
}

.contact-admin-item {
  border-left: 2px solid #d2d9e3;
  padding-left: 14px;
  margin-bottom: 18px;
}

.contact-location-wrap h2 {
  margin-bottom: 18px;
}

.contact-map-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: #e6e2dc;
}

.contact-directions {
  margin-top: 16px;
}

.contact-form-wrap {
  max-width: 460px;
}

.contact-form-wrap p {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: #26354d;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7dee8;
  background: #fff;
  padding: 12px 10px;
  color: #475669;
  font-size: 13px;
  line-height: 1.5;
  outline: none;
}

.contact-form textarea {
  min-height: 116px;
  resize: vertical;
}

.contact-form button {
  width: 78px;
  margin-top: 4px;
  border: 0;
  background: #22395d;
  color: #fff;
  padding: 11px 14px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  cursor: pointer;
}

/* Graduate students page */
.students-page {
  background: #fff;
}

.students-container {
  width: min(1120px, 86vw);
  margin: 0 auto;
}

.students-hero {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  background: #243654;
}

.students-hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(26, 39, 61, 0.72), rgba(26, 39, 61, 0.72)),
    linear-gradient(135deg, #6a7485 0%, #374860 100%);
}

.students-hero-media span {
  padding: 12px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.students-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 335px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 36px 18px;
}

.students-eyebrow {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 2px;
}

.students-hero-overlay h1 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  font-style: normal;
}

.students-hero-overlay p {
  margin: 0 0 4px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
}

.students-main {
  background: #fff;
}

.students-filter-bar {
  border-top: 1px solid #eceff4;
  border-bottom: 1px solid #eceff4;
  background: #fff;
}

.students-filter-list {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.students-filter-list a {
  color: #6a7281;
  text-decoration: none;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  line-height: 1.3;
}

.students-filter-list a.active {
  color: #1e3356;
  font-weight: 700;
}

.students-section {
  padding: 24px 0 32px;
}

.students-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.students-heading-row h2,
.students-area-main-title {
  margin: 0;
  color: #1c2f50;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  line-height: 1.15;
  font-weight: 700;
}

.students-heading-row p {
  margin: 0;
  color: #8a909d;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
}

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

.student-card {
  min-height: 215px;
  padding: 18px 14px 14px;
  border: 1px solid #e4e8ee;
  background: #fff;
  text-align: center;
}

.student-avatar {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #eef2f7;
  color: #6f7a8a;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.student-card h3 {
  margin: 0 0 6px;
  color: #223456;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.student-area,
.student-topic,
.student-meta {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: #5b6676;
}

.student-area {
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.student-topic {
  font-size: 10px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.student-meta {
  font-size: 10px;
  line-height: 1.45;
}

.students-area-section {
  padding-top: 18px;
}

.students-section-underline {
  width: 28px;
  height: 2px;
  background: #d4dce7;
  margin: 10px 0 20px;
}

.students-area-group {
  padding: 16px 0 24px;
  border-top: 1px solid #edf0f4;
}

.students-area-group h3 {
  margin: 0 0 14px;
  color: #1d2e4f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.students-grid-compact .student-card {
  min-height: 205px;
}

.students-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 850px;
}

.students-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
}

.students-note-section {
  margin-top: 18px;
  padding: 28px 0;
  background: #f7f9fc;
  border-top: 1px solid #edf0f4;
}

.students-note-section p {
  max-width: 760px;
  margin: 0;
  color: #687180;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1200px) {
  .programs-hero,
  .programs-hero-overlay {
    min-height: 430px;
  }

  .programs-hero-overlay h1 {
    font-size: 52px;
  }

  .programs-hero-overlay p {
    font-size: 22px;
  }

  .programs-intro-grid {
    grid-template-columns: 1fr;
  }

  .programs-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .giving-support-grid {
    grid-template-columns: 1fr;
  }

  .giving-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .giving-methods-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .students-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .programs-hero,
  .programs-hero-overlay {
    min-height: 320px;
  }

  .programs-hero-overlay h1 {
    font-size: 36px;
  }

  .programs-hero-overlay p {
    font-size: 17px;
  }

  .programs-overview,
  .programs-section {
    padding: 42px 0;
  }

  .programs-about-section {
    padding: 52px 0 46px;
  }

  .programs-intro-copy h2,
  .programs-section h2 {
    font-size: 30px;
  }

  .programs-image-placeholder {
    min-height: 260px;
  }

  .programs-section p,
  .programs-bullet-list li {
    font-size: 16px;
  }

  .programs-about-content {
    width: min(1120px, 86vw);
  }

  .programs-structured-content {
    width: min(1120px, 86vw);
  }

  .programs-highlights-content {
    width: min(980px, 86vw);
    margin-left: auto;
  }

  .programs-eligibility-content {
    width: min(860px, 86vw);
  }

  .programs-highlights-grid {
    grid-template-columns: 1fr;
  }

  .programs-highlight-card {
    min-height: auto;
  }

  .giving-hero,
  .giving-hero-overlay {
    min-height: 340px;
  }

  .giving-hero-overlay h1 {
    font-size: 38px;
  }

  .giving-hero-text {
    font-size: 18px;
  }

  .giving-support,
  .giving-section,
  .giving-how,
  .giving-quote,
  .giving-contact,
  .giving-impact {
    padding: 46px 0;
  }

  .giving-copy h2,
  .giving-section h2,
  .giving-impact h2,
  .giving-how h2,
  .giving-contact h2 {
    font-size: 30px;
  }

  .giving-areas-grid,
  .giving-impact-grid {
    grid-template-columns: 1fr;
  }

  .giving-image-placeholder {
    min-height: 220px;
  }

  .contact-hero,
  .contact-hero-overlay {
    min-height: 330px;
  }

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

  .contact-hero-overlay p {
    font-size: 16px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-address-card h2,
  .contact-admin-card h2,
  .contact-location-wrap h2,
  .contact-form-wrap h2 {
    font-size: 28px;
  }

  .contact-map-placeholder {
    min-height: 220px;
  }

  .contact-form-wrap {
    max-width: none;
  }

  .students-hero,
  .students-hero-overlay {
    min-height: 260px;
  }

  .students-hero-overlay h1 {
    font-size: 38px;
  }

  .students-hero-overlay p {
    font-size: 14px;
  }

  .students-grid,
  .students-grid-three,
  .students-grid-two {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .students-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .student-card {
    min-height: auto;
  }
}

/* Directory page */
.directory-main {
  padding: 46px 0 36px;
}

.directory-wrap {
  width: min(1140px, 86vw);
  margin: 0 auto;
}

.directory-section {
  margin-bottom: 50px;
}

.directory-title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  line-height: 1;
  color: #2567b8;
  font-weight: 700;
}

.directory-title.with-bar {
  border-left: 4px solid #2e6ebd;
  padding-left: 16px;
}

.directory-office-title {
  font-size: 24px;
}

.directory-sub-title {
  font-size: 24px;
}

.office-grid {
  width: min(700px, 100%);
}

.office-row {
  display: grid;
  grid-template-columns: 240px 120px 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.office-row span {
  font-size: 29px;
  color: #344150;
}

.office-row a {
  color: #2f6ebc;
  text-decoration: none;
  font-size: 25px;
}

.directory-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 8px;
}

.directory-head-row p {
  margin: 0 0 9px;
  font-size: 30px;
  color: #6a7484;
}

.faculty-filter-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.search-input-wrap {
  width: 420px;
  height: 42px;
  border: 1px solid #c9d1dc;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}

.search-input-wrap span {
  color: #778292;
  font-size: 16px;
}

.search-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 26px;
  color: #5f6a7a;
  background: transparent;
}

.table-wrap {
  border: 1px solid #cfd6e0;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.directory-table {
  width: 100%;
  border-collapse: collapse;
}

.directory-table thead th {
  background: #2d4c78;
  color: #fff;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  padding: 13px 16px;
}

.directory-table tbody tr:nth-child(odd) {
  background: #f1f2f4;
}

.directory-table tbody tr:nth-child(even) {
  background: #e5e8ec;
}

.directory-table tbody td {
  padding: 12px 16px;
  font-size: 29px;
  color: #323f4f;
}

.directory-table tbody td a {
  color: #2e6ebd;
  text-decoration: none;
}

.directory-main .office-row span,
.directory-main .office-row a,
.directory-main .directory-table tbody td,
.directory-main .directory-table tbody td a {
  font-size: 14px;
}

.table-footer-row {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-footer-row p {
  margin: 0;
  color: #6d7786;
  font-size: 26px;
}

.pager {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pager a {
  text-decoration: none;
  border: 1px solid #cad1db;
  color: #677284;
  background: #fff;
  padding: 7px 11px;
  font-size: 25px;
  border-radius: 4px;
}

.directory-main .directory-head-row p,
.directory-main .search-input-wrap span,
.directory-main .search-input-wrap input,
.directory-main .directory-table thead th,
.directory-main .table-footer-row p,
.directory-main .pager a {
  font-size: 14px;
}

.pager a.active {
  background: #2f6ebd;
  color: #fff;
  border-color: #2f6ebd;
}

.pager a.disabled {
  color: #b8bec8;
}

.labs-table tbody td:nth-child(2),
.labs-table tbody td:nth-child(4) {
  width: 110px;
}

@media (max-width: 1200px) {
  .directory-title {
    font-size: 42px;
  }

  .office-row span,
  .office-row a,
  .directory-head-row p,
  .search-input-wrap input,
  .directory-table thead th,
  .directory-table tbody td,
  .table-footer-row p,
  .pager a {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .directory-wrap {
    width: 92vw;
  }

  .office-row {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 12px;
  }

  .directory-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .search-input-wrap {
    width: 100%;
  }

  .table-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pager {
    flex-wrap: wrap;
  }
}

/* Faculty page */
.faculty-main {
  padding: 52px 0 42px;
}

.faculty-wrap {
  width: min(1260px, 94vw);
  margin: 0 auto;
}

.faculty-section {
  margin-bottom: 10px;
}

.faculty-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1;
  color: #173c66;
  font-weight: 700;
}

.faculty-title.with-bar {
  border-left: 5px solid #1e4b7b;
  padding-left: 16px;
}

.faculty-subtitle {
  margin: 0 0 30px 29px;
  color: #5f6d80;
  font-size: 16px;
}

.faculty-table thead th {
  background: #21486f;
}

.faculty-table tbody td {
  font-size: 35px;
  padding: 14px 16px;
  vertical-align: middle;
}

.faculty-table thead th:first-child,
.faculty-table tbody td:first-child {
  width: 96px;
  text-align: center;
}

.faculty-table tbody td:nth-child(3) {
  color: #5e6e81;
}

.faculty-profile-thumb {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #d7d7d7;
}

.faculty-main .faculty-table thead th,
.faculty-main .faculty-table tbody td,
.faculty-main .faculty-table tbody td a {
  font-size: 14px;
}

.faculty-count {
  margin: 16px 0 0;
  color: #6a7688;
  font-size: 12px;
}

@media (max-width: 1200px) {
  .faculty-title {
    font-size: 42px;
  }

  .faculty-subtitle {
    font-size: 24px;
  }

  .faculty-table tbody td {
    font-size: 18px;
  }

  .faculty-count {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .faculty-main {
    padding-top: 34px;
  }

  .faculty-wrap {
    width: 92vw;
  }

  .faculty-title {
    font-size: 36px;
  }

  .faculty-subtitle {
    margin-left: 23px;
    margin-bottom: 18px;
    font-size: 18px;
  }
}

/* Faculty profile page */
.profile-main {
  background: #f7f8fa;
  padding: 22px 0 28px;
}

.profile-wrap {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.back-link {
  color: #78849a;
  text-decoration: none;
  font-size: 12px;
}

.profile-top {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: start;
}

.profile-photo {
  width: 340px;
  height: 340px;
  background: #b6b8bc;
}

.profile-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #1b3762;
  font-size: 30px;
  font-weight: 700;
}

.profile-intro .designation {
  margin: 6px 0 18px;
  font-size: 18px;
  color: #6a7586;
}

.contact-box {
  background: #f0f2f5;
  border: 1px solid #e1e4ea;
  padding: 18px 20px 14px;
}

.contact-box h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: #1b3762;
  font-size: 16px;
}

.contact-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  margin-bottom: 8px;
}

.contact-row span,
.contact-row p {
  margin: 0;
  font-size: 14px;
  color: #657083;
}

.profile-section {
  margin-top: 34px;
  max-width: 820px;
  border-bottom: 1px solid #d8dde5;
  padding-bottom: 14px;
}

.profile-section h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  color: #1b3762;
  font-size: 20px;
}

.profile-section p,
.profile-section li {
  font-size: 16px;
  color: #2c3646;
  line-height: 1.8;
}

.biography-section h3 {
  font-size: 20px;
}

.biography-section p {
  font-size: 16px;
}

.profile-section ul {
  margin: 0;
  padding-left: 16px;
}

.publication-item {
  padding: 10px 0;
  border-top: 1px solid #d8dde5;
}

.publication-item h4 {
  margin: 0 0 2px;
  font-size: 14px;
  color: #1f2e44;
}

.publication-item p {
  margin: 0;
  font-size: 14px;
  color: #4f5a6c;
}

.publication-item em {
  color: #7b8697;
  font-size: 14px;
}

.other-links {
  list-style: none;
  padding-left: 0;
}

.other-links li {
  margin-bottom: 6px;
}

.other-links a {
  color: #1f3a63;
  text-decoration: none;
}

.other-links a::before {
  content: "\2197";
  margin-right: 8px;
}

@media (max-width: 900px) {
  .profile-top {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: 100%;
    max-width: 340px;
  }

  .profile-intro h2 {
    font-size: 40px;
  }

  .contact-box h3 {
    font-size: 24px;
  }

  .profile-section h3 {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .container,
  .about-container,
  .directory-wrap,
  .faculty-wrap,
  .profile-wrap,
  .programs-container,
  .giving-container,
  .contact-container,
  .students-container {
    width: min(100%, 92vw);
  }

  .top-header {
    padding: 14px 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand {
    width: 100%;
    gap: 12px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text h1 {
    font-size: 21px;
  }

  .brand-text p {
    font-size: 15px;
  }

  .search-box {
    width: min(100%, 360px);
  }

  .nav-inner {
    min-height: auto;
    justify-content: flex-start;
    gap: 14px 18px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-nav a,
  .nav-dropbtn {
    font-size: 13px;
  }

  .nav-dropdown {
    height: auto;
  }

  .nav-dropbtn {
    height: auto;
    padding: 6px 0;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: none;
    min-width: 180px;
  }

  .hero,
  .about-hero,
  .programs-hero,
  .giving-hero,
  .contact-hero,
  .students-hero {
    min-height: 260px;
    height: auto;
  }

  .grid-layout,
  .programs-intro-grid,
  .giving-support-grid,
  .contact-info-grid,
  .profile-top {
    grid-template-columns: 1fr;
  }

  .home-page .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .card,
  .home-page .card img {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }

  .footer-brand img {
    width: 88px;
    height: 88px;
  }

  .quick-links h4 {
    text-align: left;
  }

  .quick-links ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-wrap {
    overflow-x: auto;
  }

  .directory-table {
    min-width: 620px;
  }

  .labs-table {
    min-width: 760px;
  }

  .students-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .students-grid-three,
  .students-grid-two {
    max-width: none;
  }

  .programs-highlights-content {
    width: min(100%, 92vw);
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .about-container,
  .directory-wrap,
  .faculty-wrap,
  .profile-wrap,
  .programs-container,
  .giving-container,
  .contact-container,
  .students-container {
    width: 92vw;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-text h1 {
    font-size: 18px;
  }

  .brand-text p {
    font-size: 13px;
  }

  .search-box {
    max-width: none;
  }

  .nav-inner {
    gap: 10px 14px;
  }

  .main-nav a,
  .nav-dropbtn {
    font-size: 12px;
    letter-spacing: 0.15px;
  }

  .hero {
    height: 220px;
  }

  .content-wrap,
  .about-main,
  .directory-main,
  .faculty-main,
  .profile-main,
  .programs-overview,
  .programs-section,
  .giving-support,
  .giving-section,
  .giving-how,
  .giving-quote,
  .giving-contact,
  .giving-impact,
  .contact-section,
  .students-section,
  .students-note-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .announcements li {
    grid-template-columns: 64px 8px 1fr;
    column-gap: 12px;
  }

  .announcements .date {
    font-size: 14px;
  }

  .announcements li a {
    font-size: 16px;
    line-height: 1.35;
  }

  .about-hero h1,
  .programs-hero-overlay h1,
  .giving-hero-overlay h1,
  .contact-hero-overlay h1,
  .students-hero-overlay h1 {
    font-size: 34px;
  }

  .about-hero p,
  .programs-hero-overlay p,
  .giving-hero-text,
  .contact-hero-overlay p,
  .students-hero-overlay p {
    font-size: 16px;
  }

  .about-section h2,
  .programs-section h2,
  .programs-intro-copy h2,
  .giving-copy h2,
  .giving-section h2,
  .giving-impact h2,
  .giving-how h2,
  .giving-contact h2,
  .contact-address-card h2,
  .contact-admin-card h2,
  .contact-location-wrap h2,
  .contact-form-wrap h2,
  .students-heading-row h2,
  .students-area-main-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .about-section h3,
  .students-area-group h3,
  .profile-section h3 {
    font-size: 20px;
  }

  .about-history-section > p,
  .programs-section p,
  .programs-bullet-list li,
  .giving-copy p,
  .giving-list li,
  .giving-area-card p,
  .contact-info-group p,
  .contact-inline-row p,
  .contact-hours p,
  .contact-admin-item p,
  .contact-directions p,
  .contact-form-wrap p,
  .students-note-section p,
  .profile-section p,
  .profile-section li {
    font-size: 15px;
    line-height: 1.65;
  }

  .programs-links {
    gap: 10px;
  }

  .programs-links a,
  .programs-inline-link,
  .giving-primary-button,
  .giving-hero-button {
    font-size: 14px;
    line-height: 1.45;
  }

  .programs-image-placeholder,
  .giving-image-placeholder,
  .contact-map-placeholder,
  .profile-photo {
    min-height: 220px;
    height: auto;
  }

  .students-filter-list {
    gap: 10px 14px;
    padding: 12px 0;
  }

  .students-filter-list a {
    font-size: 11px;
  }

  .students-grid,
  .home-page .cards,
  .quick-links ul,
  .giving-areas-grid,
  .giving-impact-grid,
  .giving-methods-grid {
    grid-template-columns: 1fr;
  }

  .student-card {
    min-height: auto;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .legal-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}
