:root {
  --oxford: #002147;
  --oxford-deep: #00152e;
  --gold: #b99745;
  --gold-light: #d9c489;
  --red: #a6192e;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #172238;
  --muted: #5a6474;
  --line: #dfe3e7;
  --soft-blue: #eef2f6;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 16px 42px rgba(0, 33, 71, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { color: var(--white); background: var(--red); }
a { color: inherit; }
svg { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  padding: 9px 13px; color: white; background: var(--oxford);
  transform: translateY(-160%); transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(0, 33, 71, .13);
  background: rgba(251, 250, 246, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 74px; display: flex; align-items: center;
  justify-content: space-between; gap: 28px;
}
.brand {
  color: var(--oxford); font-family: Georgia, "Times New Roman", serif;
  font-size: 1.46rem; font-weight: 700; letter-spacing: -.025em;
  text-decoration: none; white-space: nowrap;
}
.brand-spacer { flex: 1 1 auto; min-width: 0; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--oxford); }
.primary-nav { display: flex; align-items: center; gap: clamp(17px, 2.2vw, 30px); margin-left: auto; }
.primary-nav a {
  position: relative; color: var(--oxford); font-size: .84rem;
  font-weight: 650; text-decoration: none;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform .18s ease;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }

/* The landing page now combines the profile and the three research themes. */
.hero { border-bottom: 1px solid var(--line); background: var(--white); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(450px, 1.16fr);
  align-items: stretch;
  gap: clamp(48px, 6.5vw, 90px);
  min-height: 690px;
  padding-block: 48px;
}
.hero-profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-block: 34px;
}
.hero h1 {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4.8vw, 4.2rem);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.05em;
}
.hero-role {
  margin: 25px 0 0;
  color: var(--gold);
  font-size: clamp(.79rem, 1.05vw, .93rem);
  font-weight: 800;
  letter-spacing: .105em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero-institution { margin: 6px 0 0; color: var(--oxford); font-weight: 600; }
.red-rule { width: 56px; height: 3px; margin: 27px 0 21px; background: var(--red); }
.hero-statement {
  max-width: 590px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.03rem, 1.45vw, 1.25rem);
  line-height: 1.57;
}
.hero-statement strong { color: var(--oxford); font-weight: 750; }
.quick-links { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; }
.quick-links a {
  color: var(--oxford); font-size: .79rem; font-weight: 750; text-decoration: none;
  border-bottom: 1px solid transparent;
}
.quick-links a:hover { color: var(--red); border-color: var(--red); }

.hero-research {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  padding: clamp(38px, 4.4vw, 58px);
  border-top: 4px solid var(--gold);
  background: var(--oxford);
  color: var(--white);
  box-shadow: var(--shadow);
}
.hero-research-kicker {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-research h2 {
  max-width: 510px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.45vw, 3.05rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.hero-theme-list { margin-top: 25px; border-top: 1px solid rgba(255,255,255,.23); }
.hero-theme {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.23);
}
.hero-theme .focus-icon {
  width: 42px;
  height: 42px;
  margin: 2px 0 0;
  color: var(--gold-light);
}
.hero-theme h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.17rem, 1.8vw, 1.43rem);
  font-weight: 600;
  line-height: 1.18;
}
.hero-theme p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: .84rem;
  line-height: 1.5;
}

.section-pad { padding-block: clamp(72px, 8vw, 110px); }
.section-kicker {
  margin: 0 0 12px; color: var(--red); font-size: .76rem;
  font-weight: 850; letter-spacing: .15em; text-transform: uppercase;
}
.section-heading-row {
  display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px;
}
.section-heading-simple { justify-content: flex-start; }
.section-heading-row h2, .roles-title, .contact-title {
  margin: 0; color: var(--oxford); font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.25rem); font-weight: 600; line-height: 1.03; letter-spacing: -.035em;
}
.section-note { max-width: 560px; margin: 0; color: var(--muted); text-align: right; }

.publications-section { background: var(--paper); }
.publication-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.publication-group {
  display: flex; flex-direction: column; min-width: 0; overflow: hidden;
  border: 1px solid var(--line); background: white; box-shadow: var(--shadow);
}
.publication-group-header {
  min-height: 126px; padding: 25px 25px 23px; border-top: 4px solid var(--gold);
  background: linear-gradient(180deg, #fff, #fbfaf6);
}
.publication-group:nth-child(2) .publication-group-header { border-top-color: var(--red); }
.publication-group:nth-child(3) .publication-group-header { border-top-color: var(--oxford); }
.publication-group-header h3 {
  margin: 0; color: var(--oxford); font-family: Georgia, "Times New Roman", serif;
  font-size: 1.43rem; line-height: 1.18;
}
.pub-list { display: flex; flex-direction: column; height: 100%; margin: 0; padding: 0; list-style: none; }
.pub-list li { flex: 1; border-top: 1px solid var(--line); }
.pub-list a {
  position: relative;
  display: block;
  height: 100%;
  min-height: 184px;
  padding: 24px 42px 22px 25px;
  text-decoration: none;
  transition: background .16s ease;
}
.pub-list a:hover { background: var(--soft-blue); }
.pub-year {
  display: block; margin-bottom: 7px; color: var(--red); font-size: .69rem;
  font-weight: 850; letter-spacing: .12em; text-transform: uppercase;
}
.pub-title { display: block; color: var(--oxford); font-size: .94rem; font-weight: 700; line-height: 1.38; }
.pub-meta { display: block; margin-top: 9px; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.pub-doi {
  display: block;
  margin-top: 7px;
  color: var(--red);
  font-size: .69rem;
  font-weight: 720;
  line-height: 1.38;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}
.pub-arrow { position: absolute; top: 24px; right: 22px; color: var(--gold); font-size: 1rem; }
.all-work { margin: 28px 0 0; text-align: right; }
.text-link { color: var(--red); font-size: .84rem; font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.issues-section { background: white; border-block: 1px solid var(--line); }
.issue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.issue-card {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 315px; padding: 30px; border: 1px solid var(--line); border-left: 4px solid var(--red);
  background: var(--white); box-shadow: var(--shadow);
}
.issue-journal {
  margin: 0 0 18px; color: var(--red); font-size: .69rem;
  font-weight: 850; letter-spacing: .12em; text-transform: uppercase;
}
.issue-card h3 {
  margin: 0 0 14px; color: var(--oxford); font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem; line-height: 1.12;
}
.issue-card p { margin: 0; color: var(--muted); }
.issue-footer { margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--line); }
.issue-footer p { margin: 0 0 10px; color: var(--ink); font-size: .82rem; }
.issue-footer span { display: block; color: var(--muted); font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.issue-footer a { color: var(--red); font-size: .82rem; font-weight: 850; text-decoration: none; }
.issue-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }



/* In the news */
.news-section {
  background: var(--oxford);
  color: var(--white);
  border-block: 1px solid rgba(255,255,255,.08);
}
.news-section .section-kicker { color: var(--gold-light); }
.news-section .section-heading-row h2 { color: var(--white); }
.news-heading-row { align-items: end; }
.news-intro {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.72);
  text-align: right;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-card {
  display: flex;
  min-height: 268px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.2);
  border-top: 3px solid var(--gold);
  background: rgba(255,255,255,.055);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.news-card:nth-child(3n+2) { border-top-color: var(--red); }
.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.09);
}
.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 21px;
  color: var(--gold-light);
  font-size: .66rem;
  font-weight: 820;
  letter-spacing: .085em;
  line-height: 1.4;
  text-transform: uppercase;
}
.news-meta span:last-child { color: rgba(255,255,255,.58); text-align: right; }
.news-card h3 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.18;
}
.news-format { margin: 12px 0 0; color: rgba(255,255,255,.58); font-size: .76rem; }
.news-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 25px;
  color: var(--gold-light);
  font-size: .79rem;
  font-weight: 820;
  text-decoration: none;
}
.news-card a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.news-more { display: flex; justify-content: flex-end; margin-top: 28px; }
.news-all-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid var(--gold-light);
  color: var(--white);
  background: transparent;
  font-size: .82rem;
  font-weight: 820;
  text-decoration: none;
}
.news-all-button:hover { color: var(--oxford); background: var(--gold-light); }

/* Full media archive */
.media-body { background: var(--paper); }
.media-hero {
  padding-block: clamp(62px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.media-hero-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(45px, 8vw, 105px);
  align-items: end;
}
.media-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}
.media-back:hover { text-decoration: underline; text-underline-offset: 4px; }
.media-hero h1 {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.05em;
}
.media-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}
.media-hero-copy .media-note {
  margin-top: 17px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}
.media-archive { background: var(--paper); }
.media-year {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 35px;
  padding: 0 0 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
}
.media-year:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.media-year > h2 {
  position: sticky;
  top: 100px;
  align-self: start;
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 600;
}
.media-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.media-row {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 25px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.media-date { color: var(--muted); font-size: .75rem; font-weight: 720; }
.media-outlet {
  margin: 0 0 5px;
  color: var(--red);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.media-outlet span { color: var(--muted); }
.media-main h3 { margin: 0; }
.media-main h3 a {
  display: inline-flex;
  gap: 8px;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.13rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}
.media-main h3 a span { flex: 0 0 auto; color: var(--gold); font-family: inherit; font-size: .9rem; }
.media-main h3 a:hover { color: var(--red); }

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .media-hero-grid { grid-template-columns: 1fr; }
  .media-year { grid-template-columns: 100px minmax(0, 1fr); }
}
@media (max-width: 760px) {
  .news-intro { margin-top: 15px; text-align: left; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 230px; }
  .news-more { justify-content: flex-start; }
  .media-hero h1 { font-size: clamp(2.8rem, 16vw, 4.6rem); }
  .media-year { display: block; }
  .media-year > h2 { position: static; margin-bottom: 18px; }
  .media-row { grid-template-columns: 1fr; gap: 7px; }
}

.roles-section { background: var(--paper); }
.roles-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 105px); align-items: start; }
.roles-title { max-width: 430px; }
.roles-columns { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.roles-columns h3 {
  margin: 0 0 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gold);
  color: var(--oxford); font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase;
}
.clean-list { margin: 0; padding: 0; list-style: none; }
.clean-list li {
  position: relative; padding: 13px 0 13px 15px; border-bottom: 1px solid var(--line);
  color: var(--ink); font-size: .9rem;
}
.clean-list li::before { content: ""; position: absolute; left: 0; top: 22px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.clean-list strong { display: block; color: var(--oxford); font-weight: 780; }
.clean-list span { display: block; color: var(--muted); font-size: .8rem; }
.editorial-list li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: baseline; }
.editorial-list strong { display: block; min-width: 0; }
.editorial-list > li > span { display: inline; white-space: nowrap; color: var(--red); font-weight: 750; }
.editorial-link {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  max-width: 100%;
  color: var(--oxford);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.editorial-link:hover { color: var(--red); border-bottom-color: var(--red); }
.editorial-journal { display: inline !important; color: inherit !important; font-size: inherit !important; }
.editorial-arrow { display: inline !important; flex: 0 0 auto; color: var(--gold) !important; font-size: .75rem !important; }

.contact-section { background: var(--oxford); color: white; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 105px); align-items: end; }
.contact-section .section-kicker { color: var(--gold-light); }
.contact-title { color: white; }
.contact-copy { margin: 20px 0 0; color: rgba(255,255,255,.72); }
.email-link {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 12px 0 19px; border-bottom: 2px solid var(--gold);
  color: white; font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.4vw, 2.8rem); text-decoration: none;
}
.email-link:hover { color: var(--gold-light); }
.contact-links-row { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 24px; }
.contact-links-row a { color: rgba(255,255,255,.82); font-size: .8rem; font-weight: 720; text-decoration: none; }
.contact-links-row a:hover { color: var(--gold-light); }
footer { background: var(--oxford-deep); color: rgba(255,255,255,.68); }
.footer-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 25px; font-size: .74rem; }

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
    gap: 42px;
  }
  .hero-research { padding: 36px; }
  .hero-theme { padding-block: 19px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 0; padding-block: 0; }
  .hero-profile { padding-block: 72px; }
  .hero-research { margin-bottom: 58px; }
  .publication-groups, .issue-grid { grid-template-columns: 1fr; }
  .publication-group { max-width: 780px; }
  .pub-list a { min-height: auto; }
  .roles-grid, .contact-grid { grid-template-columns: 1fr; }
  .roles-columns { grid-template-columns: 1fr 1fr; }
  .section-note { text-align: left; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 1180px); }
  html { scroll-padding-top: 68px; }
  .header-inner { min-height: 66px; }
  .brand, .brand-spacer { font-size: 1.25rem; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 66px; left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 18px;
    border-bottom: 1px solid var(--line); background: var(--paper);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 11px 5px; }
  .primary-nav a::after { bottom: 4px; }
  .hero-profile { padding-block: 58px; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 3.75rem); }
  .hero-role { margin-top: 21px; }
  .hero-research { padding: 30px 26px; margin-bottom: 42px; }
  .hero-research h2 { font-size: clamp(1.85rem, 9vw, 2.55rem); }
  .hero-theme { grid-template-columns: 38px minmax(0, 1fr); gap: 15px; padding-block: 20px; }
  .hero-theme .focus-icon { width: 35px; height: 35px; }
  .section-heading-row { display: block; }
  .section-note { margin-top: 14px; }
  .publication-group-header { min-height: auto; }
  .roles-columns { grid-template-columns: 1fr; }
  .editorial-list li { display: block; }
  .editorial-list > li > span { display: block; margin-top: 3px; }
  .footer-inner { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* Publication links: the internal research brief is primary; the DOI remains visible. */
.pub-list li { display: flex; }
.pub-entry {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  min-height: 232px;
  padding: 24px 25px 20px;
  background: var(--white);
}
.pub-content { flex: 1; }
.pub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pub-action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 0 !important;
  height: auto !important;
  padding: 12px 16px !important;
  border-radius: 999px;
  border: 1px solid var(--oxford);
  background: var(--white);
  color: var(--oxford);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 33, 71, 0.08);
}
.pub-action-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.pub-action-secondary {
  background: rgba(0, 33, 71, 0.04);
}
.pub-action:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 33, 71, 0.12);
  background: var(--oxford);
  color: var(--white);
}
.pub-action-primary:hover {
  background: #8f1528 !important;
  border-color: #8f1528;
  color: var(--white);
}

/* Plain-language research brief pages. */
.brief-body { background: var(--paper); }
.brief-header .brand { font-size: 1.35rem; }
.brief-main { min-height: calc(100vh - 158px); }
.brief-hero {
  padding-block: clamp(58px, 8vw, 96px) clamp(38px, 5vw, 60px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.brief-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}
.brief-back:hover { text-decoration: underline; text-underline-offset: 4px; }
.brief-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brief-title {
  max-width: 1050px;
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.7vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.brief-byline { max-width: 900px; margin: 24px 0 0; color: var(--muted); font-size: .94rem; }
.brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 22px;
  color: var(--oxford);
  font-size: .78rem;
  font-weight: 730;
}
.brief-meta a { color: var(--red); text-decoration: none; overflow-wrap: anywhere; }
.brief-meta a:hover { text-decoration: underline; text-underline-offset: 4px; }
.brief-content { padding-block: clamp(48px, 7vw, 82px); }
.brief-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, .58fr);
  gap: 34px;
  align-items: stretch;
}
.brief-panel, .evidence-panel, .implication-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.brief-panel { padding: clamp(28px, 4vw, 45px); border-top: 4px solid var(--red); }
.evidence-panel { padding: 30px; border-top: 4px solid var(--gold); background: var(--oxford); color: white; }
.brief-section-label {
  margin: 0 0 13px;
  color: var(--red);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.evidence-panel .brief-section-label { color: var(--gold-light); }
.brief-panel h2, .brief-findings h2, .implication-card h2 {
  margin: 0 0 18px;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.brief-panel p { margin: 0; font-size: 1.02rem; line-height: 1.72; }
.evidence-panel h2 { margin: 0 0 15px; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; line-height: 1.08; }
.evidence-panel p { margin: 0; color: rgba(255,255,255,.78); font-size: .9rem; }
.brief-findings { margin-top: 34px; padding: clamp(28px, 4vw, 42px); border: 1px solid var(--line); background: #f4f1e9; }
.brief-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0; padding: 0; list-style: none; counter-reset: point; }
.brief-points li {
  position: relative;
  padding: 46px 0 0;
  color: var(--ink);
  font-size: .94rem;
  line-height: 1.6;
  counter-increment: point;
}
.brief-points li::before {
  content: "0" counter(point);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
}
.brief-points li::after { content: ""; position: absolute; top: 27px; left: 0; width: 34px; height: 2px; background: var(--gold); }
.implications-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 34px; }
.implication-card { padding: clamp(28px, 4vw, 40px); }
.implication-card:first-child { border-top: 4px solid var(--gold); }
.implication-card:last-child { border-top: 4px solid var(--red); }
.implication-list { margin: 0; padding-left: 1.2rem; }
.implication-list li { padding-left: .35rem; margin: 0 0 13px; line-height: 1.58; }
.implication-list li:last-child { margin-bottom: 0; }
.implication-list li::marker { color: var(--gold); }
.brief-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brief-actions-group { display: flex; flex-wrap: wrap; gap: 12px; }
.brief-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--oxford);
  color: var(--oxford);
  background: transparent;
  font: inherit;
  font-size: .78rem;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
}
.brief-button-primary { color: white; background: var(--oxford); }
.brief-button:hover { color: white; background: var(--red); border-color: var(--red); }
.brief-note { max-width: 680px; margin: 20px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.brief-footer { margin-top: 0; }

@media (max-width: 900px) {
  .pub-entry { min-height: auto; }
  .brief-lead-grid, .implications-grid { grid-template-columns: 1fr; }
  .brief-points { grid-template-columns: 1fr; }
  .brief-points li { padding: 0 0 0 56px; }
  .brief-points li::before { top: 2px; }
  .brief-points li::after { top: 24px; }
}
@media (max-width: 760px) {
  .brief-header .primary-nav { display: none; }
  .brief-header .menu-toggle { display: none; }
  .brief-title { font-size: clamp(2.25rem, 11.5vw, 3.6rem); }
  .brief-hero { padding-top: 45px; }
  .brief-actions { align-items: flex-start; }
}

@media print {
  @page { size: A4; margin: 11mm; }
  body.brief-body { background: white; color: #111; font-size: 9.2pt; line-height: 1.35; }
  .site-header, .brief-back, .brief-actions, .brief-note, footer { display: none !important; }
  .brief-hero { padding: 0 0 6mm; border: 0; }
  .brief-title { font-size: 24pt; line-height: 1.02; }
  .brief-byline { margin-top: 3mm; font-size: 8.5pt; }
  .brief-meta { margin-top: 3mm; font-size: 7.6pt; }
  .brief-content { padding: 0; }
  .brief-lead-grid { grid-template-columns: 1.35fr .65fr; gap: 5mm; }
  .brief-panel, .evidence-panel, .brief-findings, .implication-card { box-shadow: none; break-inside: avoid; }
  .brief-panel, .evidence-panel { padding: 5mm; }
  .brief-panel h2, .brief-findings h2, .implication-card h2 { font-size: 15pt; margin-bottom: 2.5mm; }
  .brief-panel p, .evidence-panel p { font-size: 8.7pt; line-height: 1.4; }
  .brief-findings { margin-top: 4mm; padding: 5mm; }
  .brief-points { gap: 4mm; }
  .brief-points li { padding-top: 8mm; font-size: 8pt; line-height: 1.35; }
  .implications-grid { gap: 4mm; margin-top: 4mm; }
  .implication-card { padding: 5mm; }
  .implication-list { font-size: 8pt; line-height: 1.3; }
  .implication-list li { margin-bottom: 1.7mm; }
}


/* September 2026 refinement: stacked landing page, linked DOIs and scholarly leadership. */
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 38px;
  min-height: auto;
  padding-block: clamp(52px, 6.5vw, 78px);
}
.hero-profile {
  width: min(940px, 100%);
  padding: 0;
}
.hero h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.042em;
}
.hero-role { margin-top: 20px; }
.hero-statement {
  max-width: 900px;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}
.hero-bio {
  max-width: 920px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.72;
}
.hero-research {
  width: 100%;
  padding: clamp(32px, 4vw, 48px);
}
.hero-research-heading { max-width: 760px; }
.hero-research h2 { max-width: 700px; }
.hero-theme-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}
.hero-theme {
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  gap: 16px;
  padding: 26px 25px 5px;
  border-right: 1px solid rgba(255,255,255,.23);
  border-bottom: 0;
}
.hero-theme:first-child { padding-left: 0; }
.hero-theme:last-child { padding-right: 0; border-right: 0; }
.hero-theme p { max-width: none; }

/* The DOI itself is a direct article link as well as the larger article button. */
a.pub-doi {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  height: auto !important;
  min-height: 0 !important;
  margin-top: 7px;
  padding: 0 !important;
  color: var(--red);
  background: transparent !important;
  font-size: .69rem;
  font-weight: 760;
  line-height: 1.38;
  text-decoration: none;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}
a.pub-doi:hover {
  color: var(--oxford);
  background: transparent !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Calls for papers and editorials sit inside two distinct scholarly-leadership panels. */
.scholarly-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.scholarly-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 28px;
  align-items: start;
}
.scholarly-panel {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.scholarly-panel-header {
  padding: 28px 30px 24px;
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.editorials-panel .scholarly-panel-header { border-top-color: var(--red); }
.scholarly-panel-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.scholarly-panel-header h3 {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.call-list { padding: 0 30px; }
.call-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  gap: 24px;
  align-items: end;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.call-item:last-child { border-bottom: 0; }
.call-journal,
.editorial-feature-journal {
  margin: 0 0 8px;
  color: var(--red);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}
.call-copy h4,
.editorial-feature h4 {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.2;
}
.call-copy > p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}
.call-meta {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.call-meta p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.45;
}
.call-meta p span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.call-meta a,
.editorial-feature-links a {
  color: var(--red);
  font-size: .78rem;
  font-weight: 820;
  text-decoration: none;
}
.call-meta a:hover,
.editorial-feature-links a:hover {
  color: var(--oxford);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.editorial-feature-list { padding: 0 30px; }
.editorial-feature {
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--line);
}
.editorial-feature:last-child { border-bottom: 0; }
.editorial-feature-authors {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 690;
  line-height: 1.5;
}
.editorial-feature-summary {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.6;
}
.editorial-feature-links {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1040px) {
  .hero-grid { gap: 32px; }
  .hero-research { padding: 38px; }
  .scholarly-panels { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { padding-block: 60px; }
  .hero-profile { padding: 0; }
  .hero-research { margin-bottom: 0; }
  .hero-theme-list { grid-template-columns: 1fr; }
  .hero-theme,
  .hero-theme:first-child,
  .hero-theme:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.23);
  }
  .hero-theme:last-child { border-bottom: 0; padding-bottom: 0; }
}

@media (max-width: 760px) {
  .hero-grid { gap: 28px; padding-block: 48px; }
  .hero-profile { padding: 0; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.15rem); }
  .hero-research { padding: 30px 26px; margin-bottom: 0; }
  .call-item { grid-template-columns: 1fr; gap: 16px; }
  .call-meta { padding: 0; border-left: 0; }
  .call-list, .editorial-feature-list { padding-inline: 24px; }
  .scholarly-panel-header { padding-inline: 24px; }
}


/* Final visual refinement: compact blue research briefs and clearer actions. */

/* Each research theme receives its own restrained gold underline. */
.hero-theme h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 11px;
  background: var(--gold);
}

/* The two publication actions now have an unambiguous colour hierarchy. */
.pub-action-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.pub-action-secondary {
  background: var(--oxford);
  border-color: var(--oxford);
  color: var(--white);
}
.pub-action-secondary:hover {
  background: var(--oxford-deep) !important;
  border-color: var(--oxford-deep);
  color: var(--white);
}

/* Calls and editorials use exactly the same button form as research articles. */
.call-meta .scholarly-link-button {
  width: fit-content;
  white-space: nowrap;
}
.editorial-feature-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
}
.editorial-doi {
  color: var(--red) !important;
  font-size: .72rem !important;
  font-weight: 760 !important;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.editorial-doi:hover {
  color: var(--oxford) !important;
}

/* Research briefs: blue canvas, more compact typography, and white content panels. */
body.brief-body {
  color: var(--white);
  background: var(--oxford);
}
.brief-body .site-header {
  border-bottom: 1px solid rgba(217, 196, 137, .45);
  background: rgba(0, 21, 46, .96);
}
.brief-body .primary-nav a { color: var(--white); }
.brief-body .primary-nav a::after { background: var(--gold); }
.brief-main { min-height: calc(100vh - 158px); }
.brief-hero {
  padding-block: clamp(42px, 5.5vw, 64px) clamp(28px, 3.5vw, 42px);
  border-bottom: 1px solid rgba(217, 196, 137, .45);
  background: linear-gradient(145deg, var(--oxford-deep), var(--oxford));
}
.brief-back {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: .74rem;
}
.brief-back:hover { color: var(--white); }
.brief-kicker {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: .68rem;
}
.brief-title {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(1.95rem, 4.15vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.brief-byline {
  margin-top: 15px;
  color: rgba(255,255,255,.74);
  font-size: .84rem;
}
.brief-meta {
  gap: 7px 18px;
  margin-top: 14px;
  color: rgba(255,255,255,.88);
  font-size: .72rem;
}
.brief-meta a { color: var(--gold-light); }
.brief-meta a:hover { color: var(--white); }
.brief-content {
  padding-block: clamp(30px, 4.5vw, 50px);
  background: var(--oxford);
}
.brief-lead-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: 20px;
}
.brief-panel,
.evidence-panel,
.brief-findings,
.implication-card {
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}
.brief-panel,
.implication-card {
  border-color: rgba(255,255,255,.16);
  background: var(--white);
  color: var(--ink);
}
.brief-panel {
  padding: clamp(23px, 3vw, 32px);
  border-top: 4px solid var(--red);
}
.evidence-panel {
  padding: clamp(23px, 3vw, 30px);
  border: 1px solid rgba(255,255,255,.18);
  border-top: 4px solid var(--gold);
  background: #0b365f;
  color: var(--white);
}
.brief-section-label {
  margin-bottom: 9px;
  font-size: .65rem;
}
.brief-panel h2,
.brief-findings h2,
.implication-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.35vw, 1.9rem);
  line-height: 1.12;
}
.brief-panel p {
  font-size: .92rem;
  line-height: 1.58;
}
.evidence-panel h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.43rem;
}
.evidence-panel p {
  color: rgba(255,255,255,.78);
  font-size: .83rem;
  line-height: 1.55;
}
.brief-findings {
  margin-top: 20px;
  padding: clamp(23px, 3vw, 31px);
  border: 1px solid rgba(255,255,255,.18);
  border-top: 4px solid var(--gold);
  background: var(--white);
  color: var(--ink);
}
.brief-points {
  gap: 17px;
}
.brief-points li {
  padding-top: 38px;
  font-size: .86rem;
  line-height: 1.5;
}
.brief-points li::after { top: 24px; }
.implications-grid {
  gap: 20px;
  margin-top: 20px;
}
.implication-card {
  padding: clamp(23px, 3vw, 31px);
}
.implication-list {
  font-size: .87rem;
}
.implication-list li {
  margin-bottom: 9px;
  line-height: 1.5;
}
.brief-actions {
  gap: 14px;
  margin-top: 20px;
  padding: 17px 19px;
  border: 0;
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}
.brief-button {
  padding: 10px 14px;
  border-color: var(--oxford);
  color: var(--oxford);
  background: var(--white);
  font-size: .74rem;
}
.brief-button-primary {
  border-color: #0b4f86;
  color: var(--white);
  background: #0b4f86;
}
.brief-button-primary:hover {
  border-color: var(--oxford-deep);
  background: var(--oxford-deep);
}
.brief-note {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255,255,255,.65);
  font-size: .68rem;
}
.brief-footer {
  border-top: 1px solid rgba(217, 196, 137, .3);
  background: var(--oxford-deep);
}

@media (max-width: 900px) {
  .brief-lead-grid,
  .implications-grid { grid-template-columns: 1fr; }
  .brief-points { grid-template-columns: 1fr; }
  .brief-points li { padding: 0 0 0 52px; }
  .brief-points li::before { top: 1px; }
  .brief-points li::after { top: 23px; }
}

@media (max-width: 760px) {
  .hero-theme h3::after { width: 38px; margin-top: 9px; }
  .brief-body .site-header { background: var(--oxford-deep); }
  .brief-title { font-size: clamp(1.8rem, 8.7vw, 2.65rem); }
  .brief-hero { padding-top: 34px; }
  .brief-content { padding-block: 24px 36px; }
  .brief-actions { align-items: flex-start; }
  .call-meta .scholarly-link-button { width: 100%; }
}

@media print {
  body.brief-body { color: #111; background: #fff; }
  .brief-hero,
  .brief-content { background: #fff; }
  .brief-title { color: #111; }
  .brief-byline,
  .brief-meta { color: #333; }
  .brief-panel,
  .evidence-panel,
  .brief-findings,
  .implication-card {
    color: #111;
    background: #fff;
    box-shadow: none;
  }
  .evidence-panel h2,
  .evidence-panel p { color: #111; }
}

/* Small finishing corrections for contrast and mobile compression. */
.call-meta .pub-action-secondary,
.editorial-feature-links .pub-action-secondary {
  color: var(--white) !important;
}
.call-meta .pub-action-secondary:hover,
.editorial-feature-links .pub-action-secondary:hover {
  color: var(--white) !important;
}
.brief-title { font-size: clamp(1.9rem, 3.9vw, 3.2rem); }
@media (max-width: 760px) {
  .brief-body .site-header { display: none; }
  .brief-title { font-size: clamp(1.72rem, 8.1vw, 2.45rem); }
}


/* October 2026 refinement: single topic heading, topic narratives, compact white research briefs and pill actions. */

/* One clear heading for the research-theme panel. */
.hero-research-heading { max-width: 760px; }
.hero-research-heading h2 { margin-bottom: 0; }
.theme-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 17px;
  padding: 9px 14px;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-size: .74rem;
  font-weight: 820;
  text-decoration: none;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.theme-learn-link:hover {
  color: var(--oxford-deep);
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Read/watch links are now real rounded buttons. */
.news-card > a.news-action-button {
  width: fit-content;
  margin-top: auto;
  padding: 10px 15px;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  color: var(--oxford-deep);
  background: var(--gold-light);
  font-size: .78rem;
  font-weight: 840;
  text-decoration: none;
}
.news-card > a.news-action-button:hover {
  color: var(--oxford-deep);
  background: var(--white);
  border-color: var(--white);
  text-decoration: none;
}
.news-all-button { border-radius: 999px; }

/* The editorial role itself is a compact, clickable pill. */
.editorial-list > li > .editorial-role-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--oxford);
  border-radius: 999px;
  color: var(--white);
  background: var(--oxford);
  font-size: .7rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.editorial-list > li > .editorial-role-button:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

/* Research briefs return to a white canvas; the analytical content remains dark and distinct. */
body.brief-body {
  color: var(--ink);
  background: var(--white);
}
.brief-body .site-header {
  border-bottom: 1px solid rgba(0, 33, 71, .13);
  background: rgba(251, 250, 246, .96);
}
.brief-body .primary-nav a { color: var(--oxford); }
.brief-body .primary-nav a::after { background: var(--gold); }
.brief-hero {
  padding-block: clamp(42px, 5.5vw, 64px) clamp(30px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.brief-back { color: var(--red); }
.brief-back:hover { color: var(--oxford); }
.brief-kicker { color: var(--gold); }
.brief-title { color: var(--oxford); }
.brief-byline { color: var(--muted); }
.brief-meta { color: var(--oxford); }
.brief-meta a { color: var(--red); }
.brief-meta a:hover { color: var(--oxford); }
.brief-content {
  padding-block: clamp(30px, 4.5vw, 50px);
  background: var(--white);
}
.brief-panel,
.evidence-panel,
.brief-findings,
.implication-card {
  border: 1px solid rgba(255,255,255,.12);
  background: var(--oxford);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 33, 71, .13);
}
.brief-panel { border-top: 4px solid var(--red); }
.evidence-panel {
  border-top: 4px solid var(--gold);
  background: #0b365f;
}
.brief-findings {
  border-top: 4px solid var(--gold);
  background: var(--oxford);
}
.implication-card:first-child { border-top: 4px solid var(--gold); }
.implication-card:last-child { border-top: 4px solid var(--red); }
.brief-panel h2,
.evidence-panel h2,
.brief-findings h2,
.implication-card h2 {
  color: var(--white);
  margin-top: 0;
}
.brief-panel p,
.evidence-panel p,
.brief-points li,
.implication-list li {
  color: rgba(255,255,255,.86);
}
.brief-points li::before { color: var(--gold-light); }
.brief-points li::after { background: var(--red); }
.implication-list li::marker { color: var(--gold-light); }
.brief-actions {
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.brief-note { color: var(--muted); }
.brief-footer {
  border-top: 0;
  background: var(--oxford-deep);
}

/* Theme one-pagers: short narrative plus a compact line-based research index. */
.topic-body { background: var(--white); }
.topic-hero {
  padding-block: clamp(58px, 7vw, 92px) clamp(42px, 5vw, 62px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.topic-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}
.topic-back:hover { color: var(--oxford); text-decoration: underline; text-underline-offset: 4px; }
.topic-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.045em;
}
.topic-narrative {
  max-width: 980px;
  margin-top: 34px;
  padding: clamp(28px, 4vw, 44px);
  border-top: 4px solid var(--gold);
  background: var(--oxford);
  color: var(--white);
  box-shadow: var(--shadow);
}
.topic-narrative p {
  max-width: 900px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(.98rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}
.topic-narrative p + p { margin-top: 18px; }
.topic-research { background: var(--paper); }
.topic-research h2 {
  margin: 0 0 30px;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.topic-publication-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.topic-publication-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.topic-publication-year {
  color: var(--red);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
}
.topic-publication-copy h3 {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  font-weight: 600;
  line-height: 1.28;
}
.topic-publication-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.45;
}
.topic-publication-copy p a {
  color: var(--red);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.topic-publication-copy p a:hover { color: var(--oxford); text-decoration: underline; text-underline-offset: 3px; }
.topic-publication-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.topic-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 13px;
  border: 1px solid var(--oxford);
  border-radius: 999px;
  color: var(--white);
  background: var(--oxford);
  font-size: .72rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.topic-action-primary { border-color: var(--red); background: var(--red); }
.topic-action:hover { color: var(--white); background: var(--oxford-deep); border-color: var(--oxford-deep); }
.topic-action-primary:hover { background: #8f1528; border-color: #8f1528; }
.topic-all-work { margin: 27px 0 0; text-align: right; }
.topic-all-work a { color: var(--red); font-size: .8rem; font-weight: 800; text-decoration: none; }
.topic-all-work a:hover { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 900px) {
  .topic-publication-row { grid-template-columns: 60px minmax(0, 1fr); }
  .topic-publication-actions { grid-column: 2; justify-content: flex-start; }
}

@media (max-width: 760px) {
  .editorial-list li { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .editorial-list > li > .editorial-role-button { margin-top: 2px; }
  .news-card > a.news-action-button { margin-top: 24px; }
  .topic-hero h1 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .topic-publication-row { grid-template-columns: 1fr; gap: 9px; }
  .topic-publication-actions { grid-column: 1; justify-content: flex-start; margin-top: 6px; }
  .topic-all-work { text-align: left; }
  .brief-body .site-header { display: none; }
}

@media print {
  body.brief-body { color: #111; background: #fff; }
  .brief-hero, .brief-content { background: #fff; }
  .brief-title { color: #111; }
  .brief-byline, .brief-meta { color: #333; }
  .brief-panel, .evidence-panel, .brief-findings, .implication-card {
    color: #111;
    background: #fff;
    border-color: #bbb;
    box-shadow: none;
  }
  .brief-panel h2, .evidence-panel h2, .brief-findings h2, .implication-card h2,
  .brief-panel p, .evidence-panel p, .brief-points li, .implication-list li { color: #111; }
}

/* October 2026 refinement: single headings, white research briefs, topic narratives and clearer linked roles. */

/* One clear heading for the research themes, followed by a route into each theme. */
.hero-research-heading { max-width: 760px; }
.hero-research h2 { max-width: 760px; }
.hero-theme p { margin-bottom: 0; }
.topic-learn-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 17px;
  padding: 9px 14px;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-size: .74rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  transition: color .16s ease, background .16s ease, transform .16s ease;
}
.topic-learn-button:hover {
  color: var(--oxford);
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* The research brief title sits on white; the substantive content is carried by dark panels. */
body.brief-body {
  color: var(--ink);
  background: var(--white);
}
body.brief-body .site-header {
  border-bottom: 1px solid rgba(0, 33, 71, .13);
  background: rgba(251, 250, 246, .96);
}
body.brief-body .primary-nav a { color: var(--oxford); }
body.brief-body .primary-nav a::after { background: var(--gold); }
.brief-hero {
  padding-block: clamp(46px, 6vw, 72px) clamp(32px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.brief-back {
  margin-bottom: 22px;
  color: var(--red);
}
.brief-back:hover { color: var(--oxford); }
.brief-kicker {
  margin-bottom: 10px;
  color: var(--gold);
}
.brief-title {
  max-width: 1000px;
  color: var(--oxford);
  font-size: clamp(2rem, 4.1vw, 3.4rem);
  line-height: 1.05;
}
.brief-byline {
  margin-top: 17px;
  color: var(--muted);
}
.brief-meta {
  margin-top: 15px;
  color: var(--oxford);
}
.brief-meta a { color: var(--red); }
.brief-meta a:hover { color: var(--oxford); }
.brief-content {
  padding-block: clamp(34px, 5vw, 58px);
  background: var(--white);
}
.brief-lead-grid { gap: 22px; }
.brief-panel,
.evidence-panel,
.brief-findings,
.implication-card {
  border: 1px solid #17395e;
  background: var(--oxford);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 33, 71, .13);
}
.brief-panel {
  padding: clamp(25px, 3.2vw, 35px);
  border-top: 4px solid var(--red);
}
.evidence-panel {
  padding: clamp(25px, 3.2vw, 32px);
  border-top: 4px solid var(--gold);
  background: var(--oxford-deep);
}
.brief-findings {
  margin-top: 22px;
  padding: clamp(25px, 3.2vw, 35px);
  border-top: 4px solid var(--gold);
  background: var(--oxford);
  color: var(--white);
}
.implications-grid { gap: 22px; margin-top: 22px; }
.implication-card {
  padding: clamp(25px, 3.2vw, 35px);
  background: var(--oxford);
  color: var(--white);
}
.brief-panel h2,
.evidence-panel h2,
.brief-findings h2,
.implication-card h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.12;
}
.brief-panel p,
.evidence-panel p,
.brief-findings p,
.implication-card p {
  color: rgba(255,255,255,.82);
}
.brief-panel p { font-size: .93rem; line-height: 1.62; }
.evidence-panel p { font-size: .84rem; line-height: 1.57; }
.brief-points { gap: 18px; }
.brief-points li {
  color: rgba(255,255,255,.86);
  font-size: .87rem;
  line-height: 1.52;
}
.brief-points li::before { color: var(--gold-light); }
.brief-points li::after { background: var(--red); }
.implication-list { color: rgba(255,255,255,.86); font-size: .88rem; }
.implication-list li::marker { color: var(--gold-light); }
.brief-actions {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: none;
}
.brief-button {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--white);
}
.brief-button-primary {
  border-color: var(--oxford);
  color: var(--white);
  background: var(--oxford);
}
.brief-button-primary:hover {
  border-color: var(--oxford-deep);
  background: var(--oxford-deep);
}
.brief-note {
  margin-top: 17px;
  color: var(--muted);
}
.brief-footer {
  border-top: 0;
  background: var(--oxford-deep);
}

/* Round, clearly bounded actions in the media section. */
.news-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 15px;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  line-height: 1.2;
}
.news-card > a:hover {
  color: var(--oxford);
  background: var(--gold-light);
  text-decoration: none;
}
.news-all-button { border-radius: 999px; }

/* The editorial role is itself the direct, clickable action. */
.editorial-list li { align-items: center; }
.editorial-role-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 11px;
  border: 1px solid var(--oxford);
  border-radius: 999px;
  color: var(--white);
  background: var(--oxford);
  font-size: .67rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.editorial-role-button:hover {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-1px);
}

/* Narrative pages for the three research themes. */
.topic-body { background: var(--white); }
.topic-hero {
  padding-block: clamp(58px, 8vw, 94px) clamp(42px, 5vw, 62px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.topic-hero-inner { max-width: 980px; }
.topic-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  color: var(--red);
  font-size: .77rem;
  font-weight: 820;
  text-decoration: none;
}
.topic-back:hover { color: var(--oxford); text-decoration: underline; text-underline-offset: 4px; }
.topic-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.045em;
}
.topic-hero h1::after {
  content: "";
  display: block;
  width: 66px;
  height: 3px;
  margin-top: 24px;
  background: var(--gold);
}
.topic-deck {
  max-width: 850px;
  margin: 25px 0 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.33rem);
  line-height: 1.57;
}
.topic-story-section {
  padding-block: clamp(48px, 6.5vw, 78px);
  background: var(--white);
}
.topic-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}
.topic-narrative { max-width: 760px; }
.topic-narrative p {
  margin: 0 0 19px;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.78;
}
.topic-narrative p:first-child {
  color: var(--oxford);
  font-size: 1.12rem;
  line-height: 1.7;
}
.topic-narrative p:last-child { margin-bottom: 0; }
.topic-question {
  padding: 30px;
  border-top: 4px solid var(--gold);
  background: var(--oxford);
  color: var(--white);
  box-shadow: var(--shadow);
}
.topic-question-label {
  margin: 0 0 13px;
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.topic-question > p:last-child {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.34;
}
.topic-research-section {
  padding-block: clamp(54px, 7vw, 88px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.topic-research-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}
.topic-research-heading h2 {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.topic-research-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
  text-align: right;
}
.topic-publication-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.topic-pub-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.topic-pub-year {
  color: var(--red);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
}
.topic-pub-main h3 {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
}
.topic-pub-main p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.48;
}
.topic-pub-main p a {
  color: var(--red);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.topic-pub-main p a:hover { color: var(--oxford); text-decoration: underline; text-underline-offset: 3px; }
.topic-pub-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.topic-pub-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: .69rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.topic-pub-button-brief { background: var(--red); }
.topic-pub-button-article { background: var(--oxford); }
.topic-pub-button:hover { transform: translateY(-1px); }
.topic-pub-button-brief:hover { background: #8f1528; }
.topic-pub-button-article:hover { background: var(--oxford-deep); }

@media (max-width: 900px) {
  .topic-story-grid { grid-template-columns: 1fr; }
  .topic-question { max-width: 680px; }
  .topic-pub-row { grid-template-columns: 54px minmax(0, 1fr); }
  .topic-pub-actions { grid-column: 2; justify-content: flex-start; }
}

@media (max-width: 760px) {
  .editorial-list li { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .editorial-role-button { width: fit-content; }
  .topic-hero { padding-block: 45px 36px; }
  .topic-hero h1 { font-size: clamp(2.35rem, 13vw, 3.75rem); }
  .topic-deck { font-size: 1.03rem; }
  .topic-story-section { padding-block: 38px; }
  .topic-question { padding: 25px; }
  .topic-research-heading { display: block; }
  .topic-research-heading > p { margin-top: 12px; text-align: left; }
  .topic-pub-row { grid-template-columns: 1fr; gap: 8px; }
  .topic-pub-actions { grid-column: 1; margin-top: 7px; }
  .topic-pub-button { padding: 9px 11px; }
  .brief-title { font-size: clamp(1.8rem, 8.4vw, 2.55rem); }
}

@media print {
  body.brief-body,
  .brief-hero,
  .brief-content { color: #111; background: #fff; }
  .brief-title { color: #111; }
  .brief-panel,
  .evidence-panel,
  .brief-findings,
  .implication-card {
    color: #111;
    background: #fff;
    border-color: #bbb;
    box-shadow: none;
  }
  .brief-panel h2,
  .evidence-panel h2,
  .brief-findings h2,
  .implication-card h2,
  .brief-panel p,
  .evidence-panel p,
  .brief-points li,
  .implication-list { color: #111; }
}

/* Final topic-page contrast correction. */
body.topic-body .topic-narrative {
  max-width: 980px;
  margin-top: 34px;
  padding: clamp(28px, 4vw, 44px);
  border-top: 4px solid var(--gold);
  background: var(--oxford);
  color: var(--white);
}
body.topic-body .topic-narrative p,
body.topic-body .topic-narrative p:first-child {
  max-width: 900px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(.98rem, 1.4vw, 1.1rem);
  line-height: 1.72;
}
body.topic-body .topic-narrative p + p { margin-top: 18px; }


/* Expanded theme pages: keep the line-based publication treatment, but organise the larger body of work into research strands. */
.topic-research .topic-research-heading,
.topic-research-section .topic-research-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}
.topic-research .topic-research-heading h2,
.topic-research-section .topic-research-heading h2 {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.topic-research .topic-research-heading > p,
.topic-research-section .topic-research-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
  text-align: right;
}
.topic-strand + .topic-strand { margin-top: 46px; }
.topic-strand-heading {
  display: grid;
  grid-template-columns: minmax(220px, .52fr) minmax(0, 1.48fr);
  gap: 28px;
  align-items: baseline;
  margin-bottom: 15px;
}
.topic-strand-label {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}
.topic-strand-label::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 10px;
  background: var(--gold);
}
.topic-strand-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.55;
}
.topic-strand .topic-publication-list { margin-top: 0; }
.topic-strand .topic-pub-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.topic-strand .topic-pub-year {
  color: var(--red);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
}
.topic-strand .topic-pub-main h3 {
  margin: 0;
  color: var(--oxford);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.3;
}
.topic-strand .topic-pub-main p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .71rem;
  line-height: 1.45;
}
.topic-strand .topic-pub-main p a { color: var(--red); text-decoration: none; overflow-wrap: anywhere; }
.topic-strand .topic-pub-main p a:hover { color: var(--oxford); text-decoration: underline; text-underline-offset: 3px; }
.topic-strand .topic-pub-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.topic-strand .topic-pub-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: .68rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.topic-strand .topic-pub-button-brief { background: var(--red); }
.topic-strand .topic-pub-button-article { background: var(--oxford); }
.topic-strand .topic-pub-button-brief:hover { background: #8f1528; transform: translateY(-1px); }
.topic-strand .topic-pub-button-article:hover { background: var(--oxford-deep); transform: translateY(-1px); }

@media (max-width: 900px) {
  .topic-strand-heading { grid-template-columns: 1fr; gap: 10px; }
  .topic-strand .topic-pub-row { grid-template-columns: 54px minmax(0, 1fr); }
  .topic-strand .topic-pub-actions { grid-column: 2; justify-content: flex-start; }
}
@media (max-width: 760px) {
  .topic-research .topic-research-heading,
  .topic-research-section .topic-research-heading { display: block; }
  .topic-research .topic-research-heading > p,
  .topic-research-section .topic-research-heading > p { margin-top: 12px; text-align: left; }
  .topic-strand + .topic-strand { margin-top: 38px; }
  .topic-strand .topic-pub-row { grid-template-columns: 1fr; gap: 8px; }
  .topic-strand .topic-pub-actions { grid-column: 1; justify-content: flex-start; margin-top: 5px; }
}


/* September 2026 refinement: gold actions on Oxford-blue sections. */
.hero-research .topic-learn-button {
  color: var(--oxford-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.hero-research .topic-learn-button:hover {
  color: var(--oxford-deep);
  background: #ead89f;
  border-color: #ead89f;
  text-decoration: none;
}
.news-section .news-card > a.news-action-button,
.news-section .news-all-button {
  color: var(--oxford-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.news-section .news-card > a.news-action-button:hover,
.news-section .news-all-button:hover {
  color: var(--oxford-deep);
  background: #ead89f;
  border-color: #ead89f;
  text-decoration: none;
}
