:root {
  --bg: #ffffff;
  --text: #101418;
  --muted: #5b6672;
  --line: #e5e8eb;
  --accent: #1f6f8b;
  --accent-soft: #e9f4f8;
  --card: #fcfdff;
  --shadow: 0 10px 30px rgba(16, 20, 24, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Avenir Next", "Avenir", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1000px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 1rem;
}

.logo {
  font-family: "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.hero {
  padding: 3rem 0 1.5rem;
}

.venue {
  display: inline-block;
  margin: 0;
  padding: 0.3rem 0.7rem;
  border: 1px solid #b9d8e5;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  line-height: 1.25;
}

h1 {
  margin: 0.9rem 0 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.authors,
.equal {
  margin: 0.7rem 0 0;
}

.authors {
  font-weight: 600;
}

.authors-large {
  font-size: clamp(1.18rem, 2.15vw, 1.45rem);
  line-height: 1.4;
  font-weight: 500;
}

.authors-large a {
  color: #1f81d8;
  text-decoration: none;
}

.authors-large a:hover {
  text-decoration: underline;
}

.equal {
  color: var(--muted);
}

.affiliation-logos {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.affiliation-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.affiliation-logo-item img {
  height: 28px;
  width: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.affiliation-logo-item span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.affiliation-logo-item sup {
  margin-right: 0.12rem;
  color: #4c5a66;
  font-size: 0.78em;
}

.actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.actions a {
  display: inline-block;
  border: 1px solid #cfe3ec;
  background: #f8fcfe;
  color: #104f66;
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-weight: 600;
}

.actions a:hover {
  text-decoration: none;
  border-color: #9ec7d8;
}

.tldr {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid #d3e7ef;
  background: #f8fcff;
  color: #304351;
}

.section-divider {
  margin: 1.2rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.headline-block {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--accent);
  background: #fbfdff;
  border-radius: 8px;
}

.headline-block h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

.headline-block p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.quick-read {
  margin-top: 1rem;
}

.quick-read h3 {
  margin-bottom: 0.7rem;
}

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

.quick-read-grid .card:last-child {
  grid-column: 1 / -1;
}

.quick-read-grid h4 {
  margin: 0 0 0.4rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.3;
}

.highlight-section {
  margin-top: 1.2rem;
}

.highlight-banner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.58rem 0.8rem;
  border-radius: 8px;
  background: #245e89;
  color: #fff;
}

.highlight-banner h3 {
  margin: 0;
  font-size: 1.65rem;
  color: #fff;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: #f5f8fb;
  color: #245e89;
  font-weight: 800;
  font-size: 1.45rem;
  border: 1px solid #cfdeea;
}

.highlight-layout {
  margin-top: 0.8rem;
  display: block;
}

.highlight-cards {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.highlight-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: #fcfdff;
  box-shadow: var(--shadow);
}

.highlight-card-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.highlight-card-title img {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.highlight-card-title h4 {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Segoe UI", "Trebuchet MS", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
}

.highlight-card-title.diagnosis h4 {
  color: #2a8ba6;
}

.highlight-card-title.guided h4 {
  color: #f08a3d;
}

.highlight-card-title.efficient h4 {
  color: #10a060;
}

.highlight-card p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.42;
  color: #0f1418;
}

.highlight-footnote {
  margin: 0.9rem 0 0;
  font-size: 1.2rem;
  line-height: 1.35;
}

.teaser {
  margin: 1.4rem 0 0;
}

figure {
  margin: 0;
}

figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

.stats {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stats article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: var(--card);
  box-shadow: var(--shadow);
}

.stats h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.4rem;
}

.stats p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.section {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.section > p {
  margin-top: 0;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  background: var(--card);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.visual-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.motivation-section {
  border-top: 0;
}

.motivation-banner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.58rem 0.8rem;
  border-radius: 8px;
  background: #245e89;
  color: #fff;
}

.motivation-banner h2 {
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
}

.motivation-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: #f5f8fb;
  color: #245e89;
  font-weight: 800;
  font-size: 1.45rem;
  border: 1px solid #cfdeea;
}

.motivation-panel {
  margin-top: 1rem;
}

.motivation-panel h3 {
  margin-bottom: 0.7rem;
  color: #245e89;
  text-align: center;
}

.motivation-points {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.motivation-eval-image {
  width: 75%;
  margin: 0 auto;
}
.motivation-points p,
.motivation-blind-card p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: var(--card);
  color: #222b33;
  box-shadow: var(--shadow);
}

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

.motivation-blind-card {
  display: grid;
  gap: 0.75rem;
}

.motivation-blind-card strong {
  color: #b91c1c;
}

.benchmark-section {
  border-top: 0;
}

.benchmark-banner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.58rem 0.8rem;
  border-radius: 8px;
  background: #245e89;
  color: #fff;
}

.benchmark-banner h2 {
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
}

.benchmark-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: #f5f8fb;
  color: #245e89;
  font-weight: 800;
  font-size: 1.45rem;
  border: 1px solid #cfdeea;
}

.benchmark-panel {
  margin-top: 1rem;
}

.benchmark-panel h3 {
  margin-bottom: 0.7rem;
  color: #245e89;
}

.benchmark-isolation,
.benchmark-stats-grid {
  display: grid;
  gap: 1rem;
}

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

.benchmark-ava-overview {
  margin-top: 1rem;
}

.benchmark-ava-overview img {
  width: 100%;
  max-width: none;
}

.benchmark-isolation {
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.55fr);
  align-items: center;
}

.benchmark-stats-grid {
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  align-items: center;
}

.benchmark-copy {
  display: grid;
  gap: 0.75rem;
}

.benchmark-copy p,
.benchmark-quality {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: var(--card);
  color: #222b33;
  box-shadow: var(--shadow);
}

.benchmark-copy strong,
.benchmark-quality strong,
.benchmark-emphasis strong {
  color: #111820;
}

.benchmark-emphasis {
  font-size: 1.08rem;
}

.benchmark-depth-example {
  max-width: 210px;
  margin: 0 auto;
}

.benchmark-stats-grid figure:first-child img {
  max-width: 260px;
  margin: 0 auto;
}
.benchmark-stats-grid figure:nth-child(2) img {
  max-width: 420px;
  margin: 0 auto;
}
.benchmark-quality {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 1.08rem;
}

.pipeline-section {
  border-top: 0;
}

.pipeline-banner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.58rem 0.8rem;
  border-radius: 8px;
  background: #245e89;
  color: #fff;
}

.pipeline-banner h2 {
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
}

.pipeline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: #f5f8fb;
  color: #245e89;
  font-weight: 800;
  font-size: 1.45rem;
  border: 1px solid #cfdeea;
}

.pipeline-panel {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: center;
}

.pipeline-copy {
  display: grid;
  gap: 0.75rem;
}

.pipeline-copy p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: var(--card);
  color: #222b33;
  box-shadow: var(--shadow);
}

.pipeline-efficiency {
  margin-top: 1rem;
}

.pipeline-efficiency > p {
  margin: 0 0 0.8rem;
  font-size: 1.55rem;
  line-height: 1.35;
  text-align: center;
}

.pipeline-efficiency > p strong {
  color: #c00000;
}

.pipeline-callout {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 2px solid #245e89;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #fff;
}

.pipeline-callout div {
  display: grid;
  gap: 0.15rem;
}

.pipeline-callout strong {
  color: #0ea5a8;
  font-size: 2rem;
  line-height: 1;
}

.pipeline-callout div:nth-child(2) strong {
  color: #f97316;
}

.pipeline-callout span {
  color: #3d4a59;
  font-weight: 600;
}

.pipeline-callout p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
  color: #111820;
}

.pipeline-scatter {
  margin-top: 1rem;
}

.pipeline-scatter img {
  width: 100%;
}

.findings-section {
  border-top: 0;
}

.findings-banner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.58rem 0.8rem;
  border-radius: 8px;
  background: #245e89;
  color: #fff;
}

.findings-banner h2 {
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
}

.findings-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: #f5f8fb;
  color: #245e89;
  font-weight: 800;
  font-size: 1.45rem;
  border: 1px solid #cfdeea;
}

.finding-panel {
  margin-top: 1rem;
}

.finding-panel h3 {
  margin-bottom: 0.7rem;
  color: #245e89;
}

.finding-lead {
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: var(--card);
  color: #222b33;
  box-shadow: var(--shadow);
}

.annotated-figure {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.annotated-figure img {
  width: 100%;
}

.heatmap-box,
.diagnostic-highlight,
.subgroup-highlight {
  position: absolute;
  pointer-events: none;
}

.heatmap-box {
  border: 3px solid #f97316;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.heatmap-box-depth {
  left: 17%;
  top: 44.3%;
  width: 8.9%;
  height: 8.1%;
}

.heatmap-box-spatial {
  left: 56.7%;
  top: 44.3%;
  width: 4.55%;
  height: 8.1%;
}

.heatmap-box-orientation {
  left: 65.5%;
  top: 52.6%;
  width: 4.55%;
  height: 8.1%;
}

.heatmap-box-color {
  left: 74.5%;
  top: 60.8%;
  width: 4.55%;
  height: 8.1%;
}

.finding-cards {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

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

.finding-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: #fcfdff;
  box-shadow: var(--shadow);
}

.finding-card img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.finding-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
  color: #111820;
}

.diagnostic-grid {
  display: grid;
  gap: 1rem;
}

.diagnostic-case {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.diagnostic-example {
  --diagnostic-example-width: 390px;
  --diagnostic-image-width: 310px;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  width: 100%;
  max-width: var(--diagnostic-example-width);
  margin: 0 auto;
}

.diagnostic-photo {
  width: min(100%, var(--diagnostic-image-width));
  aspect-ratio: 604 / 469;
  object-fit: cover;
  border-radius: 8px;
}

.diagnostic-photo-plain {
  width: min(100%, var(--diagnostic-image-width));
}

.diagnostic-question {
  width: 100%;
  border-radius: 20px;
  padding: 0.95rem 1rem;
  background: #dcecf8;
  color: #0f1418;
}

.diagnostic-question p {
  margin: 0;
  line-height: 1.45;
}

.diagnostic-question p + p {
  margin-top: 0.7rem;
  font-weight: 600;
}

.red-text {
  color: #e00000;
}

.blue-text {
  color: #0070c0;
}

.diagnostic-chart-wrap {
  max-width: 365px;
  margin: 0 auto;
}

.diagnostic-highlight {
  border: 5px solid #6b2ea0;
  border-radius: 2px;
}

/* Adjust these purple boxes with percent values: left/right movement uses left, vertical movement uses top, and box size uses width/height. */
.diagnostic-highlight-with-box {
  left: 13.9%;
  top: 5.2%;
  width: 8%;
  height: 10.5%;
}

.diagnostic-highlight-spatial {
  left: 50.2%;
  top: 20.7%;
  width: 7.6%;
  height: 26%;
}

.diagnostic-highlight-localization {
  left: 84.2%;
  top: 52.5%;
  width: 9.7%;
  height: 39%;
}

.subgroup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: 1rem;
  align-items: center;
}

.subgroup-chart-wrap img {
  width: 100%;
}

.subgroup-highlight {
  border-radius: 2px;
}

/* Adjust these subgroup boxes the same way: left/top move the box, width/height resize it. */
.subgroup-highlight-small {
  left: 29.4%;
  top: 78.2%;
  width: 8.3%;
  height: 10%;
  border: 4px solid #dc0000;
}

.subgroup-highlight-large {
  left: 47.7%;
  top: 78.2%;
  width: 45%;
  height: 10%;
  border: 4px solid #08a64b;
}

.subgroup-chart figcaption {
  color: #0f1418;
  font-size: 1rem;
}

.subgroup-copy {
  display: grid;
  gap: 1rem;
  font-size: 1.35rem;
  line-height: 1.32;
}

.subgroup-copy p {
  margin: 0;
}

.subgroup-copy strong {
  font-size: 1.08em;
}

.large-object {
  color: #08a64b;
}

.small-object {
  color: #c00000;
}

.insights-selection-figure {
  margin-top: 1rem;
}

.insights-selection-figure img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.gallery {
  margin-top: 1rem;
}

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

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

.takeaway {
  margin-top: 1rem;
  border: 1px solid #cfe3ec;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: #f9fcfe;
}

.takeaway p {
  margin: 0;
}

.resources ul {
  margin: 0.3rem 0 0;
  padding-left: 1rem;
}

.note {
  color: var(--muted);
  font-size: 0.94rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 24, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

#lightbox-image {
  max-width: min(1200px, 94vw);
  max-height: 86vh;
  border: 1px solid #2b333a;
  border-radius: 12px;
}

#lightbox-close {
  position: fixed;
  right: 1rem;
  top: 1rem;
  border: 1px solid #3e4650;
  background: #1c232a;
  color: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .authors-large {
    font-size: 1.08rem;
  }

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

  .two-col,
  .grid-2,
  .findings-list,
  .visual-strip,
  .motivation-points,
  .motivation-blind-grid,
  .benchmark-intro-copy,
  .benchmark-isolation,
  .benchmark-stats-grid,
  .pipeline-panel,
  .quick-read-grid {
    grid-template-columns: 1fr;
  }

  .motivation-banner h2 {
    font-size: 1.35rem;
  }

  .motivation-badge {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.35rem;
  }

  .benchmark-banner h2 {
    font-size: 1.35rem;
  }

  .benchmark-badge {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.35rem;
  }

  .benchmark-depth-example {
    max-width: 200px;
  }

  .pipeline-banner h2 {
    font-size: 1.35rem;
  }

  .pipeline-badge {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.35rem;
  }

  .pipeline-efficiency > p {
    font-size: 1.2rem;
    text-align: left;
  }

  .pipeline-callout {
    grid-template-columns: 1fr;
  }

  .pipeline-callout p {
    font-size: 1.05rem;
  }

  .findings-banner h2 {
    font-size: 1.35rem;
  }

  .findings-badge {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.35rem;
  }

  .finding-cards-horizontal,
  .diagnostic-case,
  .subgroup-layout {
    grid-template-columns: 1fr;
  }

  .finding-card {
    align-items: flex-start;
  }

  .diagnostic-chart-wrap {
    max-width: 100%;
  }

  .subgroup-copy {
    font-size: 1.12rem;
  }

  .highlight-banner h3 {
    font-size: 1.35rem;
  }

  .highlight-badge {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.35rem;
  }

  .highlight-card p {
    font-size: 1.06rem;
  }

  .highlight-cards {
    grid-template-columns: 1fr;
  }

  .highlight-footnote {
    font-size: 1.12rem;
  }

  .quick-read-grid .card:last-child {
    grid-column: auto;
  }

  .topbar-inner {
    align-items: flex-start;
    padding: 0.5rem 0;
  }

  .nav {
    gap: 0.7rem;
  }
}
