:root {
  --blue: #155788;
  --maroon: #982b31;
  --ink: #2f3033;
  --muted: #666b70;
  --paper: #ffffff;
  --soft: #f3f4f4;
  --footer: #3f3f3f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

a { color: var(--blue); text-underline-offset: 0.14em; }
a:hover { color: var(--maroon); }
img { max-width: 100%; height: auto; }

.wideContainer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.skipLink {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: white;
  border: 2px solid var(--blue);
}
.skipLink:focus { transform: translateY(0); }

.universityBar { min-height: 52px; background: var(--blue); }
.universityBarInner {
  display: flex;
  min-height: 52px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.utBrand { display: block; flex: 0 1 258px; line-height: 0; }
.utBrand img {
  width: 258px;
  max-height: 28px;
  object-fit: contain;
  object-position: left center;
}

.siteHeader { background: white; }
.headerInner {
  padding: 30px 0 21px;
  border-bottom: 5px solid var(--maroon);
}
.headerUtility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}
.headerUtility a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 4px 10px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.headerUtility a:hover,
.headerUtility a:focus-visible { color: white; text-decoration: underline; }
.headerUtility .contribute {
  display: grid;
  width: 34px;
  min-height: 34px;
  padding: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--maroon);
  line-height: 1;
}
.brandRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: block;
  flex: 0 0 auto;
  width: 280px;
  line-height: 0;
}
.desktopNav { align-self: flex-end; }
.mainNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
}
.mainNav a {
  display: block;
  padding: 10px 12px;
  color: #27292a;
  text-decoration: none;
}
.mainNav a:hover,
.mainNav a:focus-visible { color: var(--blue); text-decoration: underline; }
.mainNav a.active { color: var(--maroon); }
.mobileNav { display: none; }

.content {
  min-height: 54vh;
  padding-top: 25px;
  padding-bottom: 76px;
}
.articlePage { max-width: 1050px; }
.articlePage h1,
.articlePage h2,
.articlePage h3 {
  color: var(--blue);
  font-weight: 400;
  line-height: 1.18;
}
.articlePage h1 {
  margin: 0 0 30px;
  padding-top: 4px;
  font-size: clamp(32px, 4vw, 42px);
}
.articlePage h2 { font-size: 29px; }
.articlePage h3 { margin: 0 0 14px; font-size: 24px; }
.articlePage p { margin: 0 0 24px; }
.tagline {
  margin-top: -15px !important;
  margin-bottom: 30px !important;
  color: var(--blue);
  font-size: 24px;
  font-weight: 400;
}
.leadPortrait {
  float: left;
  width: 265px;
  margin: 0 32px 22px 0;
}
.leadPortrait img { display: block; width: 100%; }
figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.supportNote {
  clear: both;
  padding-top: 20px;
  color: #555;
  text-align: center;
}

.siteFooter {
  clear: both;
  padding: 28px 0;
  background: var(--footer);
  color: white;
}
.footerInner { display: flex; align-items: stretch; }
.briscoeBrand {
  display: flex;
  width: 38%;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  padding-right: 46px;
  border-right: 1px solid rgba(255, 255, 255, 0.65);
}
.briscoeBrand img { width: 290px; }
.footerLinks {
  margin: 0;
  padding: 1px 0 0 45px;
  list-style: none;
  font-size: 15px;
  line-height: 1.65;
}
.footerLinks a { color: white; text-decoration: none; }
.footerLinks a:hover { text-decoration: underline; }

.featuredWinner {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 44px;
}
.featuredWinner > img {
  width: 250px;
  max-height: 375px;
  object-fit: cover;
  object-position: center top;
}
.featuredWinner h2 { margin: 0 0 18px; font-size: 31px; }
.sectionEyebrow {
  margin: 0 0 6px !important;
  color: var(--maroon);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.honoredFor { font-size: 16px; line-height: 1.6; }
.honoredFor a { overflow-wrap: anywhere; }
.winnersPage hr {
  margin: 45px 0 25px;
  border: 0;
  border-top: 2px solid #d6d7d7;
}
.citationsTitle { margin: 0 0 28px; }
.citationsGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.citationCard {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
  padding: 25px;
  border-top: 4px solid var(--blue);
  background: var(--soft);
}
.citationCard p:last-child { margin-bottom: 0; font-size: 16px; }
.winnerPortraits { display: grid; width: 190px; gap: 12px; }
.winnerPortraits.pair { width: 300px; grid-template-columns: 1fr 1fr; }
.winnerPortraits img,
.portraitPlaceholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}
.portraitPlaceholder {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--blue), #0a3452);
  color: white;
  font-size: 30px;
  letter-spacing: 0.08em;
}

.biographyPortrait { width: 270px; }
blockquote {
  clear: both;
  margin: 34px 5% 38px;
  padding: 22px 28px;
  border-left: 5px solid var(--maroon);
  background: #f4f5f5;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.55;
}
blockquote p { margin-bottom: 12px !important; }
blockquote cite {
  color: var(--ink);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
}
.galleryTitle { clear: both; margin: 45px 0 20px; }
.photoGallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 45px;
}
.photoGallery figure { margin: 0; }
.photoGallery a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ddd;
  cursor: zoom-in;
}
.photoGallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}
.photoGallery a:hover img,
.photoGallery a:focus-visible img { transform: scale(1.04); }
.photoGallery a:focus-visible { outline: 4px solid var(--maroon); outline-offset: 3px; }
.zoomHint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: white;
  font-size: 22px;
  line-height: 1;
}
.galleryLightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: 0;
  background: rgba(0, 0, 0, 0.92);
  color: white;
}
.galleryLightbox::backdrop { background: rgba(0, 0, 0, 0.92); }
.galleryLightbox[open] { display: grid; place-items: center; }
.lightboxPanel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
}
.lightboxPanel figure { margin: 0; text-align: center; }
.lightboxPanel figure img {
  display: block;
  width: 100%;
  height: min(76vh, 820px);
  object-fit: contain;
}
.lightboxPanel figcaption {
  max-width: 900px;
  margin: 12px auto 0;
  color: white;
  font-size: 15px;
}
.lightboxClose,
.lightboxArrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: white;
  cursor: pointer;
}
.lightboxClose { top: 0; right: 0; width: 46px; height: 46px; font-size: 35px; }
.lightboxArrow { top: 50%; width: 52px; height: 52px; font-size: 42px; transform: translateY(-50%); }
.lightboxPrevious { left: 0; }
.lightboxNext { right: 0; }
.lightboxClose:hover,
.lightboxArrow:hover,
.lightboxClose:focus-visible,
.lightboxArrow:focus-visible { background: var(--maroon); outline: 3px solid white; }
.lightboxCount { margin: 8px 0 0 !important; color: white; text-align: center; font-size: 14px; }

.aboutLead {
  max-width: 930px;
  font-size: 20px;
}

.aboutNav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 48px;
  padding: 0;
  list-style: none;
}

.aboutNav a {
  display: block;
  padding: 8px 13px;
  border: 1px solid #c8d3db;
  background: #f5f7f8;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.aboutNav a:hover,
.aboutNav a:focus-visible {
  border-color: var(--blue);
  background: white;
}

.aboutSection {
  clear: both;
  margin-top: 55px;
  padding-top: 8px;
  border-top: 3px solid var(--maroon);
}

.aboutSection > h2 {
  margin: 24px 0 20px;
}

.directorProfile {
  float: left;
  width: 210px;
  margin: 0 30px 20px 0;
}

.directorProfile img {
  display: block;
  width: 100%;
}

.directorBioHeading {
  clear: both;
  padding-top: 18px;
}

.peopleGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 18px;
  margin-top: 28px;
}

.personCard {
  margin: 0;
  text-align: center;
}

.personCard img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  background: #e6e9eb;
}

.personCard figcaption {
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.sitemapList {
  max-width: 620px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d8dde0;
}

.sitemapList a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid #d8dde0;
  font-weight: 700;
}

@media (max-width: 980px) {
  .desktopNav { display: none; }
  .mobileNav { position: relative; display: block; align-self: center; }
  .mobileNav summary {
    cursor: pointer;
    color: var(--blue);
    font-weight: 700;
    list-style: none;
  }
  .mobileNav summary::-webkit-details-marker { display: none; }
  .mobileNav summary::before { content: "☰"; margin-right: 8px; }
  .mobileNav[open] summary::before { content: "×"; }
  .mobileNav nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 14px);
    right: 0;
    width: min(330px, 86vw);
    padding: 9px;
    border: 1px solid #d7d7d7;
    border-top: 4px solid var(--maroon);
    background: white;
    box-shadow: 0 12px 28px rgba(20, 31, 40, 0.18);
  }
  .mobileNav .mainNav { display: block; font-size: 17px; }
  .photoGallery { grid-template-columns: 1fr 1fr; }
  .peopleGrid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .wideContainer { width: min(100% - 30px, 1120px); }
  .utBrand { flex-basis: 220px; }
  .utBrand img { width: 220px; }
  .headerInner { padding-top: 22px; }
  .brand { width: 215px; }
  .content { padding-top: 20px; padding-bottom: 55px; }
  .articlePage h1 { margin-bottom: 23px; }
  .tagline { font-size: 20px; }
  .leadPortrait,
  .biographyPortrait {
    float: none;
    width: min(100%, 330px);
    margin: 0 auto 26px;
  }
  .featuredWinner { grid-template-columns: 1fr; gap: 25px; }
  .featuredWinner > img { width: min(100%, 330px); max-height: 440px; }
  .citationsGrid { grid-template-columns: 1fr; }
  .footerInner { display: block; }
  .briscoeBrand {
    width: 100%;
    min-height: 90px;
    justify-content: flex-start;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .briscoeBrand img { width: 250px; }
  .footerLinks { padding: 22px 0 0; }
  .peopleGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .universityBarInner { gap: 8px; }
  .utBrand { flex-basis: 185px; }
  .utBrand img { width: 185px; }
  .headerUtility { gap: 2px; }
  .headerUtility a { padding-right: 6px; padding-left: 6px; font-size: 14px; }
  .brand { width: 175px; }
  .articlePage h1 { font-size: 30px; }
  .winnerPortraits { width: min(190px, 100%); }
  .winnerPortraits.pair { width: min(300px, 100%); }
  .photoGallery { grid-template-columns: 1fr; }
  .galleryLightbox { padding: 12px; }
  .lightboxPanel figure img { height: 72vh; }
  .lightboxArrow { top: auto; bottom: 58px; }
  blockquote { margin-right: 0; margin-left: 0; }
  .directorProfile { float: none; width: min(100%, 240px); margin: 0 0 24px; }
  .peopleGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
