/* SODEUC — sistema editorial */
:root {
  --navy: #062b49;
  --deep: #041c30;
  --blue: #0b5278;
  --pale: #eaf3f8;
  --gray: #e8ecef;
  --white: #ffffff;
  --ink: #102c3f;
  --muted: #506574;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --gutter: clamp(22px, 4vw, 72px);
  --max: 1440px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 18px/1.65 var(--sans);
}
body.locked {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}
h2 {
  font-size: clamp(38px, 4.8vw, 70px);
  letter-spacing: -0.035em;
}
h3 {
  font-size: clamp(26px, 2.5vw, 38px);
  letter-spacing: -0.025em;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a,
button {
  touch-action: manipulation;
}
button {
  color: inherit;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
a:active,
button:active {
  opacity: 0.75;
}
:focus-visible {
  outline: 3px solid #3c9bcc;
  outline-offset: 5px;
}
img,
video {
  display: block;
  width: 100%;
  height: auto;
}
img {
  object-fit: cover;
}
button {
  border: 0;
}
button:disabled {
  cursor: default;
  opacity: 0.45;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 20px;
  background: white;
  color: var(--deep);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.wrap {
  width: min(var(--max), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.section {
  padding-block: clamp(76px, 8vw, 130px);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 22px;
}
.intro-copy {
  font-size: clamp(18px, 1.6vw, 23px);
  max-width: 780px;
  margin: 25px auto 30px;
  line-height: 1.7;
}
.center {
  text-align: center;
}
.center h2 {
  max-width: 980px;
  margin-inline: auto;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  padding: 14px 25px;
  font-size: 15px;
  font-weight: 700;
  min-height: 50px;
  transition: background 0.2s;
}
.button::after,
.text-link::after {
  content: "↗";
  margin-left: 16px;
}
/* Label-only button: no arrow, so the text sits in the true center. */
.button-centered {
  min-width: 260px;
  text-align: center;
}
.button-centered::after {
  content: none;
}
.button:hover {
  background: var(--blue);
  text-decoration: none;
}
.button.light {
  background: white;
  color: var(--navy);
  border-color: white;
}
.text-link {
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}
.small {
  font-size: 14px;
  color: var(--muted);
}
.rule {
  border-top: 1px solid #cbd6dd;
}
/* Header: the main nav stays pinned; the impact bar scrolls away. */
.site-header {
  position: sticky;
  top: -51px;
  z-index: 20;
  color: white;
  background: var(--navy);
}
.impact-bar {
  background: var(--deep);
}
.impact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 51px;
}
.impact-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.impact-links strong {
  font-size: 11px;
  letter-spacing: 0.07em;
  margin-right: 12px;
}
.impact-links a {
  padding: 4px 9px;
  background: #ffffff0d;
}
.search-trigger {
  border: 0;
  background: #ffffff12;
  color: white;
  text-align: left;
  font-size: 13px;
  width: 290px;
  padding: 8px 16px;
  border-radius: 30px;
}
.search-trigger span {
  float: right;
}
.main-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  font: 400 34px/1 var(--serif);
  letter-spacing: -0.035em;
}
.desktop-nav {
  display: flex;
  gap: clamp(10px, 1.5vw, 28px);
}
.nav-item > button {
  background: none;
  color: white;
  font-size: 14px;
  padding: 28px 0;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.nav-item > button[aria-expanded="true"] {
  border-color: white;
}
.nav-item > button::after {
  content: "⌄";
  margin-left: 7px;
  font-size: 12px;
}
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--navy);
  border-top: 1px solid #ffffff30;
  box-shadow: 0 15px 20px #041c3020;
  padding: 42px var(--gutter);
}
.mega-inner {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}
.mega h2 {
  font-size: 39px;
}
.mega p {
  font-size: 16px;
  max-width: 390px;
  margin-top: 16px;
  color: #d6e5ee;
}
.mega a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
}
.mega .eyebrow {
  color: #b9cfdc;
  margin-bottom: 12px;
}
.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px;
  font-size: 14px;
}
.hamburger {
  width: 23px;
  display: grid;
  gap: 5px;
}
.hamburger i {
  height: 1px;
  background: white;
  display: block;
}
/* Overlays */
dialog {
  color: var(--ink);
  border: 0;
  padding: 0;
}
dialog::backdrop {
  background: #041c30b3;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  background: var(--navy);
  color: white;
  padding: calc(20px + env(safe-area-inset-top)) var(--gutter)
    calc(30px + env(safe-area-inset-bottom));
  overflow-y: auto;
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.close-button {
  background: transparent;
  min-width: 46px;
  min-height: 46px;
  font-size: 24px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.mobile-menu .search-trigger {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 25px;
}
.mobile-menu details {
  border-bottom: 1px solid #ffffff40;
}
.mobile-menu summary {
  font: 26px/1.25 var(--serif);
  list-style: none;
  padding: 17px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-menu summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 23px;
}
.mobile-menu details[open] summary::after {
  content: "−";
}
.mobile-sub a {
  display: block;
  padding: 8px 14px;
  font-size: 16px;
}
.mobile-sub {
  padding-bottom: 16px;
}
.mobile-menu .audiences {
  display: none;
}
.audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  font-size: 15px;
  margin-top: 32px;
}
.search-dialog,
.content-dialog,
.participate-dialog {
  width: min(820px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  padding: clamp(24px, 5vw, 60px);
  background: white;
}
.search-dialog h2,
.content-dialog h2,
.participate-dialog h2 {
  font-size: clamp(30px, 4vw, 46px);
}
.search-box {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 20px;
}
.search-box input {
  border: 0;
  min-width: 0;
  width: 100%;
  padding: 14px 0;
  outline-offset: 0;
}
.search-box button {
  background: none;
  font-size: 24px;
}
.search-results {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.search-results a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray);
}
.search-results strong {
  display: block;
  font: 25px/1.2 var(--serif);
}
.search-results span {
  font-size: 14px;
  color: var(--muted);
}
.content-dialog p + p {
  margin-top: 18px;
}
.content-dialog .meta {
  margin: 20px 0;
}
.content-dialog .button {
  margin-top: 30px;
}
.content-dialog h3 {
  margin: 32px 0 10px;
  color: var(--navy);
  font: 700 clamp(20px, 2.4vw, 25px)/1.25 var(--serif);
}
.content-dialog ul {
  margin: 12px 0 20px;
  padding-left: 22px;
}
.content-dialog li {
  margin: 9px 0;
  line-height: 1.65;
}
.content-dialog a:not(.button) {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-dialog .legal-lead {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.65;
}
.content-dialog .legal-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: #f4f7f9;
  font-size: 14px;
}
.content-dialog .legal-action {
  margin-top: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}
.form-grid label {
  font-size: 14px;
  display: grid;
  gap: 6px;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #98acba;
  background: white;
  padding: 12px;
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-grid .check input {
  width: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.form-grid textarea {
  resize: vertical;
}
.form-status {
  margin-top: 18px;
  font-size: 15px;
}
.download-link {
  margin-top: 18px;
}
/* Audiovisual */
.hero {
  height: calc(86svh - 137px);
  min-height: 460px;
  max-height: 900px;
  position: relative;
  background: var(--deep);
  color: white;
  display: flex;
  align-items: flex-end;
}
.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: white;
}
.media-frame > video,
.hero-photo {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.media-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 48, 0.4);
  pointer-events: none;
}
.hero .media-shade {
  background: rgba(4, 28, 48, 0.43);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  padding-right: 150px;
}
.hero h1 {
  max-width: 1020px;
  font-size: clamp(46px, 6.7vw, 100px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero-content .eyebrow {
  font-size: 12px;
  margin-bottom: 21px;
}
.hero-content p:last-child {
  max-width: 540px;
  font-size: 17px;
  margin-top: 24px;
  color: #eef5fa;
}
.media-controls {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 27px;
  display: flex;
  gap: 9px;
}
.media-controls button {
  width: 43px;
  height: 43px;
  border: 1px solid #ffffff90;
  background: #041c3070;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  display: grid;
  place-items: center;
}
.media-controls button[aria-pressed="true"] {
  background: white;
  color: var(--navy);
}
.media-label {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  z-index: 1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.interlude {
  height: clamp(350px, 60vw, 700px);
}
.interlude .media-shade {
  background: #041c3020;
}
.media-caption {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 80%;
  background: #041c30dc;
  padding: 7px 15px;
  text-align: center;
  font-size: 16px;
  z-index: 3;
}
.vertical-film {
  aspect-ratio: 3/4;
}
.vertical-film .media-controls {
  right: 18px;
  bottom: 18px;
}
.vertical-film .media-label {
  left: 18px;
  bottom: 73px;
  right: 18px;
  line-height: 1.5;
}
.closing-film {
  height: clamp(320px, 52vw, 680px);
}
/* Introduction and news */
.intro {
  padding-bottom: 0;
}
/* Campus photo hidden on the home page: keep air below the button. */
.intro:has(figure[hidden]) {
  padding-bottom: clamp(30px, 4vw, 60px);
}
.intro .intro-copy {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-align: left;
  max-width: 900px;
}
.campus-image {
  margin-top: 70px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.campus-caption {
  font-size: 12px;
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray);
  color: var(--muted);
}
/* Institutional identity and governance */
.institutional-values {
  background: var(--pale);
}
.institutional-heading,
.organization-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(45px, 6vw, 80px);
}
.institutional-heading > p,
.organization-heading > p {
  max-width: 510px;
  font-size: 18px;
  color: var(--muted);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 6vw, 90px);
  padding-top: 38px;
  border-top: 1px solid #b7cad6;
}
.value-panel {
  position: relative;
  padding-left: 30px;
  border-left: 4px solid var(--blue);
}
.value-index {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.value-panel h3 {
  margin-bottom: 22px;
  font-size: clamp(34px, 3.2vw, 48px);
}
.value-panel > p:last-child {
  color: #304b5d;
  font-size: 17px;
  line-height: 1.9;
}
.discipline-signature {
  width: min(520px, 100%);
  margin: 75px auto 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  font: clamp(28px, 3.2vw, 44px) / 1.2 var(--serif);
  text-align: center;
}
.discipline-signature span {
  padding-inline: 0.22em;
  color: var(--blue);
}
.organization {
  overflow: hidden;
  border-bottom: 1px solid var(--gray);
}
.org-chart {
  margin-top: 15px;
}
.org-tier {
  position: relative;
}
.org-node {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 78px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid #7594a8;
  border-radius: 5px;
  background: white;
  text-align: center;
}
.org-node strong {
  font: 700 15px/1.3 var(--sans);
}
.org-node span {
  margin-top: 5px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.35;
}
.org-node-primary {
  width: min(370px, 100%);
  background: #f5f9fb;
  border-color: var(--navy);
}
.org-node-executive {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.org-node-executive span {
  color: #bcd6e6;
}
.org-assembly {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}
.org-assembly::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: #b7cad6;
  content: "";
}
.org-governance,
.org-leadership {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 7vw, 110px);
  padding-top: 38px;
}
.org-leadership::before {
  position: absolute;
  top: 0;
  right: 16.666%;
  left: 16.666%;
  height: 1px;
  background: #b7cad6;
  content: "";
}
.org-governance > .org-node::before,
.org-leadership > .org-node::before {
  position: absolute;
  top: -38px;
  left: 50%;
  width: 1px;
  height: 38px;
  background: #b7cad6;
  content: "";
}
.org-governance::after {
  position: absolute;
  bottom: -58px;
  left: 50%;
  width: 1px;
  height: 58px;
  background: #b7cad6;
  content: "";
}
.org-governance > .org-node-executive {
  grid-column: 2;
}
.org-leadership {
  width: min(1000px, 86%);
  margin: 58px auto 0;
}
.org-directions-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 70px 0 30px;
}
.org-directions-heading h3 {
  flex: 0 0 auto;
  font: 700 20px/1.2 var(--sans);
}
.org-directions-heading span {
  width: 100%;
  height: 2px;
  background: var(--blue);
}
.org-directions-grid {
  display: grid;
  gap: 18px;
}
.org-directions-primary {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 28px;
}
.org-directions-primary::before {
  position: absolute;
  top: 0;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: #b7cad6;
  content: "";
}
.org-directions-primary > .org-node::before {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 1px;
  height: 28px;
  background: #b7cad6;
  content: "";
}
.org-directions-secondary {
  width: min(1080px, 84%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px auto 0;
}
.org-node-direction {
  min-height: 100px;
  border-color: #b0c4d1;
}
.org-node-advisory {
  border-color: var(--blue);
}
.news-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
}
.news-heading {
  grid-column: span 4;
  align-self: start;
  position: sticky;
  top: 125px;
  padding-right: 25px;
}
.news-heading h2 {
  font-size: clamp(38px, 4.1vw, 60px);
  margin-bottom: 28px;
}
.news-subtitle {
  display: block;
  margin-top: 10px;
  font-size: 0.55em;
}
.news-heading p:not(.eyebrow) {
  margin: 24px 0;
  font-size: 17px;
}
.news-grid {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 30px;
}
.news-card {
  min-width: 0;
}
.news-card img {
  aspect-ratio: 3/2;
  margin-bottom: 24px;
  transition: filter 0.25s;
}
.news-card:hover img {
  filter: brightness(0.9);
}
.category {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.news-card h3 {
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.17;
  margin-bottom: 13px;
}
.news-card p:not(.category):not(.meta) {
  font-size: 16px;
  line-height: 1.65;
}
.meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.meta span + span::before {
  content: "·";
  margin-right: 8px;
}
.magazine-visual {
  aspect-ratio: 3/2;
  background: var(--pale);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.magazine-cover {
  width: 49%;
  height: 87%;
  background: var(--navy);
  color: white;
  transform: rotate(-7deg);
  padding: 17px 19px;
  box-shadow: 10px 12px 0 #cad9e3;
  position: relative;
  transition: transform 0.3s;
}
.magazine-visual:hover .magazine-cover {
  transform: rotate(-3deg);
}
.magazine-cover strong {
  display: block;
  font: clamp(20px, 1.9vw, 30px) / 1 var(--serif);
}
.magazine-cover small {
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.magazine-cover-titles {
  position: absolute;
  top: 50%;
  right: 19px;
  left: 19px;
  transform: translateY(-50%);
}
.magazine-cover-titles strong + strong {
  border-top: 1px solid #ffffff60;
  margin-top: 13px;
  padding-top: 13px;
}
/* Featured magazine card: spans the grid above the two PDF cards. */
.news-card-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 30px;
  align-content: center;
}
.news-card-feature .magazine-visual {
  grid-row: 1 / span 4;
  margin-bottom: 0;
}
.news-card-feature .category {
  align-self: end;
}
@media (max-width: 800px) {
  .news-card-feature {
    display: block;
  }
  .news-card-feature .magazine-visual {
    margin-bottom: 20px;
  }
}
/* Reglamento cards: a paper-sheet visual stands in for the PDF. */
.document-sheet {
  width: 54%;
  height: 86%;
  background: white;
  color: var(--navy);
  border-top: 10px solid var(--navy);
  padding: 18px 20px;
  box-shadow: 10px 12px 0 #cad9e3;
  transform: rotate(-4deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}
.document-visual:hover .document-sheet {
  transform: rotate(-1deg);
}
.document-sheet strong {
  font: clamp(18px, 1.9vw, 28px) / 1.05 var(--serif);
}
.document-sheet small {
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
/* Below 1280px the sheets shrink faster than their text: tighten them so the
   11px labels and titles stay inside the paper. */
@media (max-width: 1279px) {
  .magazine-cover,
  .document-sheet {
    width: 56%;
    padding: 12px 14px;
  }
  .magazine-cover strong {
    font-size: 18px;
  }
  .magazine-cover-titles strong + strong {
    margin-top: 8px;
    padding-top: 8px;
  }
  .magazine-cover-titles {
    right: 14px;
    left: 14px;
  }
  .magazine-cover small {
    letter-spacing: 0.02em;
  }
}
@media (min-width: 801px) and (max-width: 1279px) {
  .news-card-feature .magazine-cover small {
    font-size: 6.5px;
    line-height: 1.2;
    white-space: nowrap;
  }
}
.document-lines {
  display: grid;
  gap: 9px;
}
.document-lines i {
  display: block;
  height: 2px;
  background: #d5e0e7;
}
.document-lines i:nth-child(2n) {
  width: 78%;
}
.news-card-document .text-link {
  margin-top: 18px;
}
.editorial-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.6;
}
.research-photo {
  margin-top: 60px;
  aspect-ratio: 2.25;
  object-position: center 45%;
}
/* Dialogue */
.dialogue-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 45px;
}
.dialogue-top p {
  font-size: 19px;
}
.dialogue-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
}
.dialogue-feature {
  grid-column: span 7;
}
.dialogue-feature > img {
  aspect-ratio: 1.4;
}
.pull-quote {
  padding: 35px 0 10px 30px;
  border-left: 3px solid var(--blue);
  font: clamp(26px, 3vw, 43px) / 1.25 var(--serif);
  margin-top: 30px;
}
.pull-quote cite {
  font: 12px var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 22px;
}
.dialogue-side {
  grid-column: span 5;
  padding: 0 0 0 35px;
}
.dialogue-side .vertical-film {
  max-width: 380px;
  margin: auto;
}
.mini-stories {
  margin-top: 32px;
}
.mini-story {
  padding: 24px 0;
  border-top: 1px solid #bbcbd6;
}
.mini-story h3 {
  font-size: 25px;
}
.mini-story .category {
  margin-bottom: 9px;
}
.mini-story p:not(.category) {
  font-size: 15px;
  margin-top: 10px;
}
/* Ecosystem map and connected carousel */
.ecosystem {
  background: var(--pale);
}
.ecosystem-head {
  max-width: 760px;
  margin-bottom: 55px;
}
.ecosystem-head > p:last-child {
  margin-top: 22px;
}
.ecosystem-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 65px;
  align-items: center;
}
.area-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: center;
  position: relative;
}
.map-center {
  grid-column: 1/-1;
  font: 39px var(--serif);
  text-align: center;
  padding: 15px 0 24px;
  border-bottom: 1px solid #b2c8d7;
  margin-bottom: 10px;
}
.map-center small {
  font: 11px var(--sans);
  display: block;
  letter-spacing: 0.12em;
  margin-top: 3px;
}
.area-map button {
  background: transparent;
  border: 1px solid #afc4d2;
  padding: 18px 12px;
  min-height: 64px;
  line-height: 1.4;
  font-size: 14px;
  transition:
    background 0.2s,
    color 0.2s;
}
.area-map button[aria-current="true"] {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.carousel {
  min-width: 0;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  padding-bottom: 3px;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.ecosystem-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: white;
}
.ecosystem-card img {
  aspect-ratio: 1.9;
}
.ecosystem-card .card-copy {
  padding: 30px;
}
.ecosystem-card h3 {
  font-size: 33px;
  margin-bottom: 14px;
}
.ecosystem-card p:not(.category) {
  font-size: 16px;
  margin-bottom: 20px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  gap: 15px;
}
.carousel-buttons {
  display: flex;
  gap: 8px;
}
.circle-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: transparent;
  font-size: 19px;
}
.circle-button:hover {
  background: var(--navy);
  color: white;
}
.carousel-count {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.carousel-progress {
  height: 2px;
  background: #c0d1dd;
  margin-top: 18px;
}
.carousel-progress span {
  display: block;
  background: var(--navy);
  height: 2px;
  width: 16.6667%;
  transition: transform 0.3s;
}
/* Citizenship and debate */
.citizenship {
  background: var(--navy);
  color: white;
  padding-bottom: 0;
  margin-bottom: clamp(90px, 12vw, 180px);
}
.citizenship .intro-copy {
  max-width: 720px;
}
.citizenship-photo {
  position: relative;
  top: clamp(70px, 10vw, 145px);
  margin-top: calc(clamp(70px, 10vw, 145px) * -1 + 60px);
  aspect-ratio: 2.1;
}
.debate-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}
.debate-intro p {
  font-size: 19px;
}
.debate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.debate-card {
  border-top: 2px solid var(--navy);
  padding-top: 26px;
}
.debate-card span {
  font: 17px var(--serif);
  color: var(--blue);
}
.debate-card h3 {
  font-size: 28px;
  margin: 28px 0 17px;
}
.debate-card p {
  font-size: 16px;
}
.big-quote {
  background: var(--pale);
  padding-block: clamp(95px, 12vw, 190px);
}
.big-quote blockquote {
  font: clamp(36px, 5.2vw, 76px) / 1.22 var(--serif);
  letter-spacing: -0.025em;
  max-width: 1150px;
  margin: auto;
}
.quote-word {
  transition: opacity 0.15s;
  opacity: 0.3;
}
.quote-word.shown {
  opacity: 1;
}
.big-quote cite {
  display: block;
  text-align: center;
  font: 15px var(--sans);
  font-style: normal;
  margin-top: 45px;
  letter-spacing: 0.16em;
}
/* Membership continues the quote's editorial palette. */
.membership {
  background: var(--pale);
  padding-bottom: clamp(65px, 7vw, 110px);
}
.membership-inner {
  border-top: 1px solid #b8cad6;
  padding-top: clamp(42px, 5vw, 75px);
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.membership h2 {
  font-size: clamp(36px, 4vw, 56px);
  max-width: 650px;
}
.membership-copy {
  margin-top: 24px;
  max-width: 660px;
}
.membership-action {
  text-align: center;
}
.membership-action .button {
  width: 100%;
  max-width: 350px;
}
.membership-action p {
  color: var(--muted);
  font-size: 14px;
  max-width: 260px;
  margin: 16px auto 0;
}
.membership-intro {
  margin-top: 22px;
  font-size: 16px;
}
.membership-notice {
  background: var(--pale);
  border-left: 3px solid var(--blue);
  padding: 14px 18px;
  margin-top: 22px;
  font-size: 14px;
}
.membership-hint {
  color: var(--muted);
  font-size: 13px;
}
.membership-dialog .form-grid > label {
  min-width: 0;
}
.membership-dialog .form-status:empty {
  display: none;
}
#membership-success .button {
  margin-top: 28px;
}
@media (max-width: 700px) {
  .membership-inner {
    grid-template-columns: 1fr;
  }
  .membership-action {
    text-align: left;
  }
  .membership-action p {
    margin-left: 0;
  }
  .membership-dialog .form-grid {
    grid-template-columns: 1fr;
  }
  .membership-dialog .button {
    gap: 8px;
    padding-inline: 16px;
  }
}
/* Joining, alumni, voices */
.join-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}
.join-heading h2 {
  max-width: 850px;
}
.join-heading .button {
  flex-shrink: 0;
}
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.join-grid img {
  aspect-ratio: 1.48;
}
.join-grid > div:nth-child(2) {
  margin-top: 80px;
}
.join-grid .body-copy {
  margin-top: 25px;
  font-size: 18px;
}
.info-card {
  padding: 32px;
  background: var(--pale);
  margin-top: 32px;
}
.info-card h3 {
  font-size: 29px;
  margin-bottom: 16px;
}
.info-card p {
  font-size: 16px;
  margin-bottom: 20px;
}
.alumni {
  background: var(--blue);
  color: white;
}
.alumni-layout {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 100px;
  align-items: center;
}
.alumni-layout p:not(.eyebrow) {
  margin: 25px 0;
  font-size: 19px;
}
.alumni-photo {
  aspect-ratio: 1.14;
  clip-path: inset(0 round 48% 48% 0 0);
}
.voices-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 55px;
}
.voices-intro p {
  max-width: 470px;
}
.voices-mosaic {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 30px;
  align-items: end;
}
.voice img {
  aspect-ratio: 1;
  object-fit: cover;
}
.voice:nth-child(1) img {
  border-radius: 50% 50% 0 0;
}
.voice:nth-child(2) img {
  aspect-ratio: 0.9;
  border-radius: 0 35% 0 0;
}
.voice:nth-child(3) img {
  border-radius: 45% 0 0 0;
}
.voice-body {
  padding: 26px 0;
  border-bottom: 1px solid #bdcdd7;
}
.voice-body h3 {
  font-size: 29px;
}
.voice-body p:not(.category):not(.meta) {
  font-size: 16px;
  margin-top: 15px;
}
.closing-message {
  position: absolute;
  z-index: 1;
  left: var(--gutter);
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  font: clamp(40px, 6vw, 86px) / 1.06 var(--serif);
  text-align: center;
  max-width: 950px;
  margin: auto;
  letter-spacing: -0.03em;
}
/* Institutional footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
  padding: 80px 0 30px;
}
.footer-arcs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-around;
  opacity: 0.7;
}
.footer-arcs i {
  width: 29%;
  border: 52px solid var(--deep);
  border-bottom: 0;
  border-radius: 240px 240px 0 0;
  transform: translateY(150px);
}
.footer-content {
  position: relative;
}
.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 48px;
  border-bottom: 1px solid #ffffff40;
  margin-bottom: 45px;
}
.footer-wordmark {
  font: clamp(75px, 12vw, 175px) / 0.9 var(--serif);
  letter-spacing: -0.06em;
}
.footer-top p {
  max-width: 340px;
  font-size: 15px;
  color: #d6e5ee;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.footer-grid h2 {
  font: 700 13px var(--sans);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.footer-grid a,
.footer-grid button {
  font-size: 14px;
  display: block;
  margin: 11px 0;
  padding: 0;
  text-align: left;
  background: none;
  color: #e0eaf0;
  line-height: 1.6;
}
.footer-grid button:hover {
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid #ffffff40;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: #c8d8e3;
}
.legal-links {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
}
.legal-links button,
.legal-links a {
  background: transparent;
  color: inherit;
  font-size: 12px;
  padding: 0;
}
.legal-links .admin-access {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px;
  border: 1px solid #ffffff70;
  border-radius: 999px;
  text-decoration: none;
}
.legal-links .admin-access:hover {
  border-color: white;
  color: white;
}
.to-top {
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff90;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.reveal {
  opacity: 1;
}
.reveal.motion-ready {
  animation: arrive 0.7s both;
}
@keyframes arrive {
  from {
    opacity: 0.35;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Tablet */
@media (min-width: 1600px) {
  .hero-content {
    padding-bottom: 85px;
  }
}
@media (max-width: 1150px) {
  .site-header {
    top: 0;
  }
  html {
    scroll-padding-top: 95px;
  }
  .desktop-nav,
  .impact-bar {
    display: none;
  }
  .main-nav {
    min-height: 78px;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    height: calc(86svh - 78px);
    min-height: 450px;
  }
  .hero-content {
    padding-bottom: 55px;
  }
  .org-directions-primary,
  .org-directions-secondary {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .org-directions-primary::before,
  .org-directions-primary > .org-node::before {
    display: none;
  }
  .org-directions-primary {
    padding-top: 0;
  }
  .news-layout {
    gap: 30px;
  }
  .news-heading {
    grid-column: span 4;
    padding-right: 0;
  }
  .news-grid {
    gap: 35px 22px;
  }
  .dialogue-top,
  .debate-intro {
    gap: 45px;
  }
  .dialogue-grid {
    gap: 25px;
  }
  .dialogue-side {
    padding-left: 10px;
  }
  .ecosystem-layout {
    gap: 35px;
    grid-template-columns: 4fr 6fr;
  }
  .area-map button {
    padding: 14px 8px;
    font-size: 13px;
  }
  .alumni-layout {
    gap: 55px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .join-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .voices-mosaic {
    gap: 22px;
  }
  .voice-body h3 {
    font-size: 25px;
  }
  .debate-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
  .hero h1 {
    font-size: clamp(54px, 7.5vw, 86px);
  }
}
@media (max-width: 800px) {
  /* Mobile: the intro opens with its copy, without the long headline. */
  #intro-title {
    display: none;
  }
  body {
    font-size: 17px;
  }
  .section {
    padding-block: 75px;
  }
  .intro {
    padding-bottom: 0;
  }
  .hero-content {
    padding-right: 0;
    padding-bottom: 95px;
  }
  .hero h1 {
    font-size: clamp(45px, 7.5vw, 64px);
  }
  .hero-content p:last-child {
    font-size: 16px;
    max-width: 460px;
  }
  .news-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .news-heading,
  .news-grid {
    grid-column: auto;
  }
  .news-heading {
    position: static;
    max-width: 600px;
  }
  .news-heading p:not(.eyebrow) {
    max-width: 520px;
  }
  .news-grid {
    gap: 38px 25px;
  }
  .campus-image {
    margin-top: 45px;
  }
  .intro-copy {
    margin-top: 24px;
  }
  .institutional-heading,
  .organization-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .institutional-heading > p,
  .organization-heading > p {
    max-width: 620px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .discipline-signature {
    margin-top: 55px;
  }
  .org-governance,
  .org-leadership {
    gap: 22px;
  }
  .org-leadership {
    width: 100%;
  }
  .org-node {
    padding-inline: 12px;
  }
  .org-node strong {
    font-size: 14px;
  }
  .research-photo {
    aspect-ratio: 1.7;
    margin-top: 40px;
  }
  .dialogue-top {
    gap: 30px;
  }
  .dialogue-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dialogue-feature,
  .dialogue-side {
    grid-column: auto;
    padding: 0;
  }
  .dialogue-feature > img {
    aspect-ratio: 0.85;
  }
  .pull-quote {
    font-size: 29px;
    padding-left: 20px;
  }
  .ecosystem-layout {
    grid-template-columns: 1fr;
  }
  .area-map {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .map-center {
    width: 100%;
    font-size: 32px;
    padding: 0 0 15px;
  }
  .area-map button {
    flex: 1 1 25%;
    min-height: 50px;
    font-size: 13px;
    padding: 10px;
  }
  .ecosystem-card {
    flex-basis: 80%;
  }
  .carousel-track {
    gap: 18px;
  }
  .ecosystem-head {
    margin-bottom: 35px;
  }
  .citizenship {
    padding-bottom: 0;
    margin-bottom: 90px;
  }
  .citizenship-photo {
    top: 70px;
    margin-top: -25px;
    aspect-ratio: 1.65;
  }
  .debate-intro {
    gap: 30px;
  }
  .join-grid {
    gap: 25px;
  }
  .join-grid > div:nth-child(2) {
    margin-top: 50px;
  }
  .info-card {
    padding: 25px;
  }
  .alumni-layout {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .voices-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .voices-mosaic {
    gap: 20px;
  }
  .voice-body h3 {
    font-size: 23px;
  }
  .voice-body p:not(.category):not(.meta) {
    font-size: 14px;
  }
  .footer-top p {
    max-width: 260px;
  }
  .footer-wordmark {
    font-size: 90px;
  }
  .footer-arcs i {
    border-width: 30px;
  }
  .interlude {
    height: 450px;
  }
}
/* Mobile */
@media (max-width: 540px) {
  :root {
    --gutter: 22px;
  }
  .main-nav {
    min-height: 68px;
  }
  .brand {
    font-size: 30px;
  }
  .hero {
    height: calc(86svh - 68px);
    min-height: 470px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero .eyebrow {
    max-width: 260px;
    font-size: 10px;
  }
  .hero-content {
    padding-bottom: 96px;
  }
  .hero-content p:last-child {
    font-size: 15px;
    max-width: 310px;
    line-height: 1.6;
  }
  .hero .media-controls {
    bottom: 20px;
  }
  .hero-photo,
  .hero > video {
    object-position: 57% center;
  }
  .section {
    padding-block: 65px;
  }
  .intro {
    padding-bottom: 0;
  }
  h2 {
    font-size: 39px;
  }
  .intro-copy {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 27px;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
  }
  .campus-image {
    margin-top: 42px;
  }
  .campus-caption {
    font-size: 10px;
    line-height: 1.5;
  }
  .institutional-heading,
  .organization-heading {
    margin-bottom: 38px;
  }
  .value-panel {
    padding-left: 21px;
  }
  .value-panel > p:last-child {
    font-size: 16px;
    line-height: 1.78;
  }
  .discipline-signature {
    margin-top: 45px;
    font-size: 30px;
  }
  /* Vertical tree: one line on the left links each level to the next. */
  .org-assembly,
  .org-governance,
  .org-leadership,
  .org-directions-primary,
  .org-directions-secondary {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0;
    padding: 0;
  }
  .org-assembly::after,
  .org-governance::after,
  .org-leadership::before,
  .org-directions-primary::before {
    display: none;
  }
  .org-node-primary {
    width: 100%;
  }
  .org-governance {
    padding-top: 24px;
  }
  .org-governance > .org-node-executive {
    grid-column: auto;
  }
  .org-governance > .org-node::before {
    top: -25px;
    left: 18px;
    height: 25px;
  }
  .org-leadership {
    padding-top: 12px;
  }
  .org-leadership,
  .org-directions-primary,
  .org-directions-secondary {
    padding-left: 36px;
  }
  .org-leadership > .org-node::before,
  .org-directions-grid > .org-node::before {
    display: block;
    position: absolute;
    top: -13px;
    bottom: -1px;
    left: -18px;
    width: 1px;
    height: auto;
    background: #b7cad6;
    content: "";
  }
  .org-leadership > .org-node:last-child::before,
  .org-directions-secondary > .org-node:last-child::before {
    bottom: 50%;
  }
  .org-leadership > .org-node::after,
  .org-directions-grid > .org-node::after {
    position: absolute;
    top: 50%;
    left: -18px;
    width: 17px;
    height: 1px;
    background: #b7cad6;
    content: "";
  }
  .org-directions-heading {
    margin: 42px 0 12px;
  }
  .org-directions-heading h3 {
    font-size: 18px;
  }
  .org-node-direction {
    min-height: 88px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .news-heading h2 {
    font-size: 42px;
  }
  .news-card {
    padding-bottom: 30px;
    border-bottom: 1px solid #cad6de;
  }
  .news-card h3 {
    font-size: 29px;
  }
  .news-card img {
    margin-bottom: 20px;
  }
  .magazine-cover strong {
    font-size: clamp(18px, 5vw, 24px);
  }
  .interlude {
    height: 400px;
  }
  .media-label {
    max-width: 210px;
    font-size: 10px;
    bottom: 30px;
  }
  .research-photo {
    aspect-ratio: 1.25;
  }
  .dialogue-top,
  .dialogue-grid,
  .debate-intro,
  .join-grid,
  .alumni-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .dialogue-top p,
  .debate-intro p {
    font-size: 17px;
  }
  .dialogue-feature > img {
    aspect-ratio: 1.3;
  }
  .pull-quote {
    font-size: 30px;
    margin-top: 25px;
  }
  .dialogue-side .vertical-film {
    max-width: none;
    aspect-ratio: 3/4;
  }
  .ecosystem .wrap {
    width: 100%;
    padding-inline: var(--gutter);
  }
  .ecosystem-layout {
    gap: 25px;
  }
  .area-map button {
    flex-basis: 40%;
    font-size: 12px;
  }
  .carousel {
    margin-right: calc(var(--gutter) * -1);
  }
  .carousel-track {
    padding-right: var(--gutter);
    gap: 15px;
  }
  .ecosystem-card {
    flex-basis: 88%;
  }
  .ecosystem-card img {
    aspect-ratio: 1.5;
  }
  .ecosystem-card .card-copy {
    padding: 25px;
  }
  .ecosystem-card h3 {
    font-size: 29px;
  }
  .carousel-controls,
  .carousel-progress {
    margin-right: var(--gutter);
  }
  .citizenship {
    padding-bottom: 0;
    margin-bottom: 65px;
  }
  .citizenship-photo {
    top: 50px;
    margin-top: -10px;
    aspect-ratio: 1.2;
  }
  .debate-intro {
    margin-bottom: 40px;
  }
  .debate-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .debate-card {
    padding-top: 22px;
  }
  .debate-card h3 {
    margin: 12px 0;
  }
  .big-quote {
    padding-block: 90px;
  }
  .big-quote blockquote {
    font-size: 37px;
    line-height: 1.28;
  }
  .big-quote cite {
    font-size: 12px;
  }
  .join-heading {
    margin-bottom: 35px;
  }
  .join-grid > div:nth-child(2) {
    margin-top: 0;
  }
  .join-grid img {
    aspect-ratio: 1.25;
  }
  .join-grid .body-copy {
    font-size: 17px;
  }
  .alumni-photo {
    max-width: 420px;
    aspect-ratio: 1.1;
    margin: auto;
  }
  .alumni-layout p:not(.eyebrow) {
    font-size: 17px;
  }
  .voices-mosaic {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .voice:nth-child(2) img {
    aspect-ratio: 1.1;
  }
  .voice:nth-child(3) img {
    aspect-ratio: 1.15;
  }
  .voice-body h3 {
    font-size: 30px;
  }
  .voice-body p:not(.category):not(.meta) {
    font-size: 16px;
  }
  .closing-film {
    height: 400px;
  }
  .closing-message {
    font-size: 44px;
  }
  .site-footer {
    padding-top: 60px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 30px;
  }
  .footer-wordmark {
    font-size: 82px;
  }
  .footer-top p {
    max-width: 300px;
    font-size: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }
  .footer-grid a,
  .footer-grid button {
    font-size: 13px;
  }
  .footer-arcs i {
    border-width: 22px;
    width: 48%;
    transform: translateY(200px);
  }
  .footer-arcs i:last-child {
    display: none;
  }
  .footer-bottom {
    margin-top: 35px;
    font-size: 11px;
  }
  .legal-links {
    gap: 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .mobile-menu .dialog-top {
    margin-bottom: 25px;
  }
  .content-dialog,
  .search-dialog,
  .participate-dialog {
    padding: 25px;
  }
  .button {
    padding: 13px 20px;
    font-size: 14px;
    gap: 12px;
  }
  .media-caption {
    font-size: 14px;
  }
  .hero .media-caption {
    bottom: auto;
    top: 20px;
  }
  .menu-toggle {
    font-size: 12px;
  }
  .body-copy {
    overflow-wrap: anywhere;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .quote-word {
    opacity: 1;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Keep secondary editorial notes quiet without overriding the main introduction. */
.news-heading p.editorial-note {
  font-size: 12px;
  line-height: 1.65;
  margin-top: 22px;
}
/* Magazine volumes dialog */
button.text-link {
  background: none;
  color: inherit;
  padding: 0 0 5px;
  border-radius: 0;
}
.volumes-dialog {
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  padding: clamp(24px, 5vw, 60px);
  background: white;
}
.volumes-dialog h2 {
  font-size: clamp(30px, 4vw, 46px);
}
.volumes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 36px 28px;
}
.volume-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--navy);
}
.volume-card:hover {
  text-decoration: none;
}
.volume-card img {
  aspect-ratio: 560 / 740;
  object-fit: cover;
  box-shadow: 0 10px 24px #041c3026;
  margin-bottom: 10px;
  transition: transform 0.2s;
}
.volume-card:hover img {
  transform: translateY(-4px);
}
.volume-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.volume-card strong {
  font: 400 22px/1.2 var(--serif);
}
.volume-desc {
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}
.volume-open {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 3px;
  margin-top: 4px;
}
.volume-open::after {
  content: "↗";
  margin-left: 10px;
}
@media (max-width: 540px) {
  .volumes-dialog {
    padding: 25px;
  }
  .volumes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .volume-card strong {
    font-size: 18px;
  }
  .volume-desc {
    display: none;
  }
}
