:root {
  --ink: #201e1e;
  --ink-2: #2b2929;
  --ink-3: #3a3432;
  --gold: #ffbd2a;
  --gold-soft: #ffe1a0;
  --paper: #f5efe4;
  --paper-2: #e7ded0;
  --teal: #8da6a6;
  --wine: #6f3948;
  --white: #fffaf0;
  --muted: #bdb4a6;
  --line: rgba(255, 250, 240, 0.15);
  --line-dark: rgba(32, 30, 30, 0.16);
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.25);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  background: var(--gold);
  color: var(--ink);
  left: 1rem;
  padding: 0.6rem 0.9rem;
  position: fixed;
  top: -4rem;
  z-index: 50;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 1.25rem;
  width: 100%;
}

p,
li,
dd,
blockquote,
.hero-lede,
.detail-summary,
.content-card p,
.list-item p,
.paper-card p,
.newsletter-feature p,
.value-card p,
.empty-state p,
.about-layout p,
.subscribe-layout p,
.team-role,
.team-text,
.article-body p,
.article-body li {
  text-align: justify;
  text-justify: inter-word;
}

.site-header {
  background: #1d1b1b;
  border-bottom: 3px solid var(--gold);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .shell {
  max-width: 1760px;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: clamp(1.25rem, 1.8vw, 2.2rem);
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.82rem;
  min-width: 0;
}

.university-logo {
  flex: 0 0 auto;
  height: auto;
  width: 108px;
}

.brand-mark {
  align-items: center;
  background: #171515;
  color: var(--white);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 0.58rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  width: 44px;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brand-mark span,
.brand-word span {
  color: var(--gold);
}

.brand-copy {
  display: grid;
  gap: 0.14rem;
}

.brand-word {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.brand small {
  color: rgba(255, 250, 240, 0.78);
  display: block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav,
.mobile-nav,
.site-footer nav {
  align-items: center;
  display: flex;
  gap: 1.35rem;
}

.desktop-nav {
  display: flex;
  flex: 1 1 720px;
  gap: clamp(1.2rem, 2vw, 2.55rem);
  justify-content: space-between;
  margin: 0 auto;
  max-width: 900px;
  min-width: 0;
}

.desktop-nav a,
.mobile-nav a,
.site-footer nav a {
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.desktop-nav a {
  align-items: center;
  display: flex;
  flex: 0 1 auto;
  justify-content: center;
  min-width: 0;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer nav a:hover {
  color: var(--gold);
}

.header-cta,
.mobile-cta {
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 40px;
  padding: 0.72rem 1.35rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta:hover,
.mobile-cta:hover {
  background: var(--gold-soft);
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: inherit;
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  position: absolute;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 18px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-nav {
  background: var(--ink);
  border-top: 1px solid var(--line);
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.25rem;
}

.mobile-cta {
  display: none;
  margin: 0 1.25rem 1.25rem;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-gold {
  background: var(--gold);
  color: var(--ink);
}

.section-muted {
  background: var(--paper-2);
}

.section-ink {
  background: var(--ink-2);
  color: var(--white);
}

.hero {
  overflow: hidden;
  padding: 7.5rem 0 5.8rem;
}

.hero-grid {
  align-items: center;
  display: flex;
  justify-content: center;
}

.hero-copy {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.hero-copy h1 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 0.9;
  margin: 0 0 1rem;
}

.hero-logo .brand-accent {
  color: var(--gold);
}

.hero-copy h1.hero-full-name {
  color: var(--white);
  font-size: 4.35rem;
  line-height: 1.02;
  margin-left: auto;
  margin-right: auto;
  max-width: 1060px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.hero-lede {
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.22rem;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.hero-copy .eyebrow {
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--gold);
}

.button-secondary {
  border-color: var(--line);
  color: var(--white);
}

.button:hover,
.content-card:hover,
.list-item:hover,
.paper-card:hover,
.newsletter-feature:hover,
.quick-link:hover {
  transform: translateY(-2px);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag {
  border: 1px solid currentColor;
  border-radius: 6px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.32rem 0.5rem;
}

.quick-strip {
  border-bottom: 1px solid rgba(32, 30, 30, 0.22);
  border-top: 1px solid rgba(32, 30, 30, 0.22);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.quick-link {
  border-left: 1px solid rgba(32, 30, 30, 0.22);
  display: grid;
  gap: 0.25rem;
  min-height: 112px;
  padding: 0.35rem 1rem;
  transition: transform 180ms ease;
}

.quick-link:first-child {
  border-left: 0;
}

.quick-link span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-link strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.25;
}

.quick-link small {
  color: rgba(32, 30, 30, 0.7);
  font-weight: 700;
}

.content-band {
  padding: 5.25rem 0;
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 760px;
  position: relative;
  text-align: left;
}

.section-heading[data-section-number] {
  padding-top: 2.1rem;
}

.section-heading[data-section-number]::before {
  color: var(--gold);
  content: attr(data-section-number);
  font-size: 0.76rem;
  font-weight: 900;
  left: 0;
  letter-spacing: 0.16em;
  line-height: 1;
  position: absolute;
  text-transform: uppercase;
  top: 0;
}

.section-heading[data-section-number]::after {
  background: var(--line-dark);
  content: "";
  height: 1px;
  left: 2.35rem;
  max-width: 120px;
  position: absolute;
  top: 0.38rem;
  width: 18vw;
}

.section-heading h2,
.subscribe-layout h2,
.detail-layout h1,
.not-found h1 {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.02;
  margin: 0;
}

.section-heading p:not(.eyebrow),
.subscribe-layout p,
.about-layout p {
  color: rgba(32, 30, 30, 0.72);
  margin: 0.85rem 0 0;
}

.section-ink .section-heading p:not(.eyebrow),
.section-ink .list-item p {
  color: rgba(255, 250, 240, 0.72);
}

.section-ink .section-heading[data-section-number]::after {
  background: var(--line);
}

.split-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.text-link {
  color: var(--wine);
  font-weight: 900;
}

.section-ink .text-link {
  color: var(--gold);
}

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

.content-card,
.list-item,
.paper-card,
.newsletter-feature,
.value-card,
.sidebar-box {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.content-card,
.paper-card,
.newsletter-feature,
.value-card {
  background: var(--white);
}

.content-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 300px;
  padding: 1.25rem;
}

.content-card:hover,
.list-item:hover,
.paper-card:hover,
.newsletter-feature:hover {
  border-color: rgba(32, 30, 30, 0.34);
}

.empty-state {
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  grid-column: 1 / -1;
  min-height: 180px;
  padding: 1.25rem;
}

.empty-state h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.18;
  margin: 0;
}

.empty-state p {
  color: rgba(32, 30, 30, 0.66);
  margin: 0.65rem 0 0;
}

.section-ink .empty-state {
  background: rgba(255, 250, 240, 0.06);
  border-color: var(--line);
}

.section-ink .empty-state h3 {
  color: var(--white);
}

.section-ink .empty-state p {
  color: rgba(255, 250, 240, 0.72);
}

.card-meta,
.detail-meta {
  align-items: center;
  color: rgba(32, 30, 30, 0.58);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.55rem;
  text-transform: uppercase;
}

.section-ink .card-meta,
.detail-meta {
  color: rgba(255, 250, 240, 0.7);
}

.type-label {
  color: var(--wine);
}

.section-ink .type-label,
.detail-meta .type-label {
  color: var(--gold);
}

.content-card h3,
.list-item h3,
.paper-card h3,
.newsletter-feature h3,
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.18;
  margin: 0;
}

.content-card p,
.list-item p,
.paper-card p,
.newsletter-feature p,
.value-card p {
  color: rgba(32, 30, 30, 0.68);
  margin: 0;
}

.card-author,
.author-line {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  margin-top: auto;
}

.avatar {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  flex: 0 0 38px;
  font-size: 0.78rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.newsletter-layout,
.editorial-two-col,
.about-layout,
.subscribe-layout,
.detail-content-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
}

.newsletter-feature {
  display: block;
  min-height: 100%;
  padding: 1.5rem;
}

.issue-number {
  color: var(--gold);
  display: block;
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.stack-list {
  display: grid;
  gap: 0.8rem;
}

.list-item {
  background: rgba(255, 250, 240, 0.08);
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.section-muted .list-item,
.list-item {
  background: var(--white);
}

.section-ink .list-item {
  background: rgba(255, 250, 240, 0.06);
  border-color: var(--line);
}

.section-ink .list-item h3 {
  color: var(--white);
}

.segmented-control {
  align-items: center;
  background: rgba(32, 30, 30, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
}

.segmented-control button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  min-height: 36px;
  padding: 0.45rem 0.7rem;
}

.segmented-control button[aria-selected="true"] {
  background: var(--ink);
  color: var(--gold);
}

.columnists-block {
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 1.2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
}

.columnists-heading {
  max-width: 780px;
}

.columnists-heading h3,
.organization-intro h3 {
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1.08;
  margin: 0;
}

.columnists-heading p:not(.eyebrow),
.organization-intro p:not(.eyebrow) {
  color: rgba(32, 30, 30, 0.72);
  margin: 0.75rem 0 0;
}

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

.columnist-card {
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.columnist-card:hover {
  border-color: rgba(32, 30, 30, 0.34);
  transform: translateY(-2px);
}

.columnist-avatar {
  margin-top: 0.1rem;
}

.columnist-copy {
  display: grid;
  gap: 0.35rem;
}

.columnist-count {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.columnist-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.15;
  margin: 0;
}

.columnist-card p {
  color: rgba(32, 30, 30, 0.68);
  margin: 0;
}

.columnist-card small {
  color: rgba(32, 30, 30, 0.56);
  font-weight: 700;
}

.paper-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.paper-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.event-date {
  color: var(--gold);
  font-size: 0.88rem;
}

.about-layout {
  align-items: start;
}

.about-action {
  margin-top: 1.35rem;
}

.about-values {
  display: grid;
  gap: 1rem;
}

.value-card {
  padding: 1.2rem;
}

.organization-panel {
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2.4rem;
}

.organization-intro {
  max-width: 820px;
}

.org-directive-card,
.org-card,
.org-flow {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.org-directive-card {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
}

.org-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.org-directive-card h4,
.org-card h4,
.org-flow h4 {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.16;
  margin: 0;
}

.org-directive-card p {
  color: rgba(255, 250, 240, 0.76);
  margin: 0;
}

.org-name-list {
  display: grid;
  gap: 0.5rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.org-name-list li {
  color: rgba(255, 250, 240, 0.82);
}

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

.org-card {
  background: var(--white);
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
}

.org-card p {
  color: rgba(32, 30, 30, 0.68);
  margin: 0;
}

.org-function-list {
  color: rgba(32, 30, 30, 0.72);
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.05rem;
}

.org-flow {
  background: rgba(255, 250, 240, 0.58);
  padding: 1.2rem;
}

.org-flow-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0.9rem;
}

.org-flow-step {
  border-left: 2px solid var(--gold);
  padding-left: 0.8rem;
}

.org-flow-step span {
  color: var(--wine);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.org-flow-step strong {
  display: block;
  line-height: 1.2;
}

.org-flow-step p {
  color: rgba(32, 30, 30, 0.66);
  margin: 0.35rem 0 0;
}

.subscribe-band {
  background: var(--ink);
  color: var(--white);
}

.subscribe-layout {
  align-items: center;
}

.subscribe-layout p {
  color: rgba(255, 250, 240, 0.72);
}

.subscribe-form {
  background: rgba(255, 250, 240, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}

.subscribe-form label {
  color: var(--gold-soft);
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-row {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.form-row input {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  width: 100%;
}

.form-note {
  font-size: 0.88rem;
}

.form-note:empty {
  display: none;
}

.site-footer {
  background: #181616;
  color: var(--white);
  padding: 2rem 0;
}

.footer-brand .university-logo {
  width: 96px;
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr auto;
}

.site-footer p {
  color: rgba(255, 250, 240, 0.58);
  grid-column: 1 / -1;
  margin: 0;
}

.detail-hero {
  padding: 4rem 0;
}

.detail-layout {
  max-width: 920px;
}

.back-link {
  color: var(--gold);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 2rem;
}

.detail-layout h1 {
  color: var(--gold);
  margin-top: 0.9rem;
}

.detail-summary {
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.15rem;
  margin: 1rem 0 0;
}

.detail-byline {
  color: rgba(255, 250, 240, 0.78);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.detail-content-layout {
  align-items: start;
  grid-template-columns: 280px minmax(0, 1fr);
}

.detail-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: var(--white);
  padding: 1rem;
}

.sidebar-box h2 {
  font-family: var(--serif);
  margin: 0 0 1rem;
}

.facts-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.facts-list dt {
  color: rgba(32, 30, 30, 0.54);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-list dd {
  margin: 0;
}

.sidebar-action {
  width: 100%;
}

.article-body {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 2rem;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.15;
  margin: 2rem 0 0.75rem;
}

.article-body p,
.article-body li {
  color: rgba(32, 30, 30, 0.78);
  font-size: 1.05rem;
}

.article-body p {
  margin: 0 0 1.2rem;
}

.article-body .article-lead {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 600;
}

.article-body blockquote {
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.28;
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1rem;
}

.article-body ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.article-figure {
  margin: 2rem 0;
}

.article-figure img {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.article-figure figcaption {
  color: rgba(32, 30, 30, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 0.65rem;
}

.article-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2rem 0;
}

.article-gallery .article-figure {
  margin: 0;
}

.article-gallery .article-figure:nth-child(3):last-child {
  grid-column: 1 / -1;
}

.article-gallery .article-figure:nth-child(3):last-child img {
  aspect-ratio: 16 / 8;
}

.article-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.article-link-list a {
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  color: var(--wine);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0.62rem 0.8rem;
}

.article-link-list a:hover {
  border-color: rgba(32, 30, 30, 0.34);
  color: var(--ink);
}

.not-found {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: 4rem 0;
}

.not-found-mark {
  margin-bottom: 1.25rem;
}

.not-found p {
  color: rgba(255, 250, 240, 0.75);
  max-width: 620px;
}

.team-page {
  background: var(--white);
}

.team-intro {
  background: var(--white);
  color: #050505;
  padding: 4.75rem 0 2rem;
}

.team-intro h1 {
  color: #050505;
  font-family: var(--sans);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.team-intro p:not(.eyebrow) {
  color: rgba(5, 5, 5, 0.7);
  font-size: 1.05rem;
  margin: 1rem 0 0;
  max-width: 760px;
}

.dark-back-link {
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.team-band {
  background: var(--white);
  padding: 2rem 0 5rem;
}

.team-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.22);
  display: flex;
  flex-direction: column;
  min-height: 620px;
}

.team-photo {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #ece8df;
  color: rgba(5, 5, 5, 0.42);
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.16em;
  overflow: hidden;
  text-transform: uppercase;
}

.team-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1.1rem;
}

.team-card h2 {
  color: #050505;
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
}

.team-role,
.team-text {
  color: #050505;
  font-size: 0.9rem;
  line-height: 1.38;
  margin: 0.45rem 0 0;
}

.team-text {
  color: rgba(5, 5, 5, 0.68);
  white-space: pre-line;
}

.team-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.team-link {
  color: #050505;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-link::after {
  content: " ->";
}

.author-columns-band {
  background: var(--paper);
}

@media (max-width: 1450px) and (min-width: 1281px) {
  .header-inner {
    gap: 1rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .university-logo {
    width: 94px;
  }

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .brand-word {
    font-size: 1.72rem;
  }

  .brand small {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .desktop-nav {
    max-width: 730px;
  }

  .desktop-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .header-cta {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    padding: 0.66rem 0.9rem;
  }
}

@media (max-width: 1280px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .icon-button {
    display: inline-flex;
    position: relative;
  }

  .menu-open .mobile-nav {
    display: flex;
  }

  .menu-open .mobile-cta {
    display: flex;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .icon-button {
    display: inline-flex;
    position: relative;
  }

  .menu-open .mobile-nav {
    display: flex;
  }

  .menu-open .mobile-cta {
    display: flex;
  }

  .newsletter-layout,
  .editorial-two-col,
  .about-layout,
  .subscribe-layout,
  .detail-content-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 4.2rem;
  }

  .hero-copy h1.hero-full-name {
    font-size: 3.5rem;
  }

  .quick-grid,
  .card-grid,
  .columnists-grid,
  .org-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quick-link:nth-child(3) {
    border-left: 0;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }

  .detail-sidebar {
    position: static;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 4.25rem 0 3rem;
  }

  .hero-copy h1 {
    font-size: 4.1rem;
  }

  .hero-copy h1.hero-full-name {
    font-size: 2.7rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .quick-grid,
  .card-grid,
  .columnists-grid,
  .paper-grid,
  .org-grid,
  .org-flow-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .org-name-list {
    grid-template-columns: 1fr;
  }

  .quick-link,
  .quick-link:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(32, 30, 30, 0.22);
  }

  .quick-link:first-child {
    border-top: 0;
  }

  .content-band {
    padding: 3.75rem 0;
  }

  .section-heading h2,
  .subscribe-layout h2,
  .detail-layout h1,
  .not-found h1 {
    font-size: 2.35rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-body {
    padding: 1.25rem;
  }

  .team-intro h1 {
    font-size: 3rem;
  }

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

@media (max-width: 440px) {
  .shell {
    padding: 0 1rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .university-logo {
    width: 64px;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .brand-word {
    font-size: 1.5rem;
  }

  .brand small {
    font-size: 0.58rem;
    letter-spacing: 0.13em;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .hero-copy h1.hero-full-name {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .segmented-control {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
