.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.leaderboard-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding: 13px 2px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 12px;
}

.leaderboard-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.leaderboard-table tbody tr {
  transition: background-color 160ms ease;
}

.leaderboard-table tbody td:first-child {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.leaderboard-model-cell {
  min-width: 210px;
}

.leaderboard-model-cell strong,
.leaderboard-model-cell small {
  display: block;
}

.leaderboard-model-cell small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.leaderboard-score-cell {
  min-width: 116px;
}

.table-score {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 9px;
}

.table-score i {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e9e7;
}

.table-score i::after {
  width: var(--score-width);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--earth);
  content: "";
}

.row-link {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, translate 160ms ease;
}

.row-link:hover,
.row-link:focus-visible {
  border-color: var(--earth);
  color: var(--earth);
  translate: 2px 0;
  outline: none;
}

.profile-result-action {
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.profile-result-action:hover {
  background: #26304a;
}

.result-page-intro,
.exploration-page-intro {
  min-height: 340px;
}

.result-page-intro h1,
.exploration-page-intro h1 {
  max-width: 900px;
}

.eyebrow-back {
  margin-bottom: 42px;
  padding: 0;
  border: 0;
  color: var(--earth);
  background: transparent;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.eyebrow-back:hover {
  text-decoration: underline;
}

.result-content-shell {
  padding-top: 34px;
}

.model-result-hero {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 32px;
  padding: 12px 0 38px;
  border-bottom: 1px solid var(--line-strong);
}

.model-result-rank span,
.model-result-rank strong,
.model-result-core span,
.model-result-core strong,
.model-result-core small {
  display: block;
}

.model-result-rank span,
.model-result-core span,
.model-result-core small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}

.model-result-rank strong {
  margin-top: 7px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.model-result-identity h2 {
  margin: 7px 0 8px;
  font-size: 42px;
  line-height: 1.05;
}

.model-result-identity > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.model-result-core {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.model-result-core strong {
  margin: 8px 0;
  color: var(--earth);
  font-size: 46px;
  line-height: 1;
}

.model-result-scoreband {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line-strong);
}

.result-metric {
  min-width: 0;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.result-metric:last-child {
  border-right: 0;
}

.result-metric span,
.result-metric strong {
  display: block;
}

.result-metric span {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.result-metric strong {
  margin-top: 8px;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.model-result-analysis {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
  padding: 40px 0 52px;
  border-bottom: 1px solid var(--line-strong);
}

.result-score-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.result-score-track {
  display: grid;
  grid-template-columns: minmax(90px, 135px) minmax(80px, 1fr) 38px;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.result-score-track > span:first-child {
  overflow: hidden;
  color: #4f5968;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
}

.result-score-line {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e9e7;
}

.result-score-line i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--earth);
}

.result-score-track strong {
  font-size: 11px;
  text-align: right;
}

.process-diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-diagnostic-grid .result-metric {
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-diagnostic-grid .result-metric strong {
  font-size: 17px;
}

.model-featured-section,
.model-results-section {
  padding: 62px 0;
  border-bottom: 1px solid var(--line-strong);
}

.featured-task-list {
  border-top: 1px solid var(--line-strong);
}

.featured-task-row {
  width: 100%;
  min-height: 80px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 90px 34px;
  align-items: center;
  gap: 20px;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 160ms ease, background-color 160ms ease;
}

.featured-task-row:hover,
.featured-task-row:focus-visible {
  padding-right: 12px;
  padding-left: 12px;
  background: var(--earth-soft);
  outline: none;
}

.featured-rank,
.featured-score strong {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-variant-numeric: tabular-nums;
}

.featured-rank {
  color: var(--muted);
  font-size: 12px;
}

.featured-task-copy,
.featured-task-copy small,
.featured-task-copy strong,
.featured-score small,
.featured-score strong {
  display: block;
}

.featured-task-copy small,
.featured-score small {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.featured-task-copy strong {
  margin-top: 7px;
  font-size: 15px;
}

.featured-score {
  text-align: right;
}

.featured-score strong {
  margin-top: 5px;
  font-size: 20px;
}

.featured-arrow {
  font-size: 18px;
  text-align: right;
}

.result-list-heading {
  align-items: end;
}

.result-controls {
  min-width: min(560px, 100%);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 170px;
  align-items: end;
  gap: 10px;
}

.result-controls .task-search-wrap span {
  color: #586273;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.model-task-results {
  border-top: 1px solid var(--line-strong);
}

.model-task-table-head,
.model-task-result {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 120px 68px 68px 72px 38px;
  align-items: center;
  gap: 14px;
}

.model-task-table-head {
  min-height: 42px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.model-task-result {
  min-height: 66px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: #4b5566;
  font-size: 12px;
}

.model-task-result.is-missing {
  opacity: 0.58;
}

.model-task-name small,
.model-task-name strong {
  display: block;
}

.model-task-name small {
  color: var(--muted);
  font-size: 10px;
}

.model-task-name strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 13px;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #9ca7a4;
}

.status-dot.is-ok {
  background: var(--earth);
}

.status-dot.is-error {
  background: #a66052;
}

.exploration-content-shell {
  width: min(1480px, calc(100% - 32px));
  padding-top: 34px;
}

.exploration-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 16px;
}

.exploration-toolbar input {
  min-height: 52px;
  font-size: 15px;
}

.exploration-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 12px;
}

.exploration-count strong {
  font-size: 24px;
}

.exploration-count span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.exploration-browser {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.exploration-task-panel,
.exploration-comparison {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.exploration-task-panel {
  position: sticky;
  top: 78px;
  max-height: calc(100vh - 96px);
  overflow: hidden;
}

.exploration-panel-label,
.example-list-label {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.exploration-task-list {
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.exploration-task-row {
  width: 100%;
  min-height: 84px;
  display: block;
  padding: 13px 15px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.exploration-task-row:hover,
.exploration-task-row:focus-visible,
.exploration-task-row.is-selected {
  background: var(--earth-soft);
  outline: none;
}

.exploration-task-row small,
.exploration-task-row strong,
.exploration-task-row em {
  display: block;
}

.exploration-task-row small {
  color: var(--earth);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 760;
}

.exploration-task-row strong {
  margin-top: 5px;
  font-size: 13.5px;
  line-height: 1.35;
}

.exploration-task-row em {
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10.5px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exploration-comparison {
  min-height: 720px;
  overflow: hidden;
}

.comparison-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line-strong);
}

.comparison-header h2 {
  margin: 7px 0 8px;
  max-width: 800px;
  font-size: 26px;
  line-height: 1.2;
}

.comparison-header > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
}

.compact-action {
  min-height: 36px;
  padding: 0 13px;
  white-space: nowrap;
}

.comparison-layout {
  display: block;
  min-width: 0;
}

.example-model-strip {
  border-bottom: 1px solid var(--line-strong);
  background: #fbfcfb;
}

.example-model-strip-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.example-model-row {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.example-model-row:last-child { border-right: 0; }

.example-model-row:hover,
.example-model-row:focus-visible,
.example-model-row.is-selected {
  background: var(--earth-soft);
  outline: none;
}

.example-model-row.is-selected { box-shadow: inset 0 3px 0 var(--earth); }

.example-model-name strong,
.example-model-name small,
.example-score-group strong,
.example-score-group small {
  display: block;
}

.example-model-name strong {
  font-size: 12px;
}

.example-model-name small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.3;
}

.example-score-group {
  text-align: right;
}

.example-score-group small {
  color: var(--muted);
  font-size: 9.5px;
}

.example-score-group strong {
  margin-top: 3px;
  font-size: 17px;
}

.trajectory-view {
  min-width: 0;
}

.trajectory-diagnostics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-strong);
}

.trajectory-diagnostics .result-metric {
  min-height: 72px;
  padding: 17px;
  border-bottom: 1px solid var(--line);
}

.trajectory-process,
.trajectory-band {
  padding: 30px 30px 36px;
  border-bottom: 1px solid var(--line-strong);
}

.trajectory-section-heading,
.trajectory-band-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.trajectory-section-heading h3,
.trajectory-band-heading h3 {
  margin: 5px 0 0;
  font-size: 22px;
}

.trajectory-section-heading > span {
  padding: 5px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.trajectory-timeline {
  position: relative;
}

.trajectory-timeline::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 20px;
  width: 1px;
  background: #cad4d1;
  content: "";
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 24px;
}

.timeline-index {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #9db4ad;
  border-radius: 50%;
  color: var(--earth);
  background: var(--surface);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.timeline-step.is-error .timeline-index {
  border-color: #c5a39b;
  color: #985748;
}

.timeline-step-main {
  min-width: 0;
  padding: 3px 0 0;
}

.timeline-step-main header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-name {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  font-weight: 760;
}

.tool-state {
  padding: 3px 5px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-step-main header p {
  margin: 8px 0 0;
  color: #4d5868;
  font-size: 12.5px;
  line-height: 1.55;
}

.timeline-files {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.timeline-files code {
  max-width: 100%;
  padding: 4px 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: #41544f;
  background: #f4f7f6;
  font-size: 9.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  padding: 0;
  border: 0;
  color: var(--earth);
  background: transparent;
  font-size: 10px;
  font-weight: 760;
  cursor: pointer;
}

.timeline-toggle span {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid #adc0ba;
  border-radius: 50%;
}

.timeline-details {
  margin-top: 14px;
  padding: 16px;
  border-left: 2px solid #a9beb7;
  background: #f7f9f8;
}

.timeline-details > section + section {
  margin-top: 18px;
}

.timeline-details h4 {
  margin: 0 0 8px;
  font-size: 10px;
  text-transform: uppercase;
}

.timeline-details pre {
  max-height: 360px;
  margin: 0;
  overflow: auto;
  color: #34424f;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.compact-object {
  margin-top: 0;
  background: #fff;
}

.truncation-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 6px;
  border: 1px solid #c7b58c;
  border-radius: 3px;
  color: #765e2f;
  background: #fbf7ed;
  font-size: 9px;
  font-weight: 760;
}

.evidence-claim-list {
  border-top: 1px solid var(--line-strong);
}

.evidence-claim {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 8px 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.evidence-claim > span {
  color: var(--earth);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.evidence-claim strong {
  font-size: 12.5px;
  line-height: 1.55;
}

.evidence-claim code {
  grid-column: 2;
  color: var(--muted);
  font-size: 10px;
  overflow-wrap: anywhere;
}

.reasoning-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: reasoning;
}

.reasoning-list li {
  position: relative;
  min-height: 45px;
  padding: 12px 0 12px 46px;
  border-top: 1px solid var(--line);
  color: #3f4a59;
  font-size: 13px;
  line-height: 1.55;
  counter-increment: reasoning;
}

.reasoning-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--earth);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  content: counter(reasoning, decimal-leading-zero);
}

.unresolved-box {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 2px solid #a66052;
  background: #fbf6f4;
  font-size: 11px;
}

.unresolved-box ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.final-answer-object {
  margin-top: 0;
}

.muted-copy {
  color: var(--muted);
  font-size: 12px;
}

.embedded-exploration-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-strong);
}

.embedded-exploration-heading h3 {
  margin: 5px 0;
  font-size: 23px;
}

.embedded-exploration-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.embedded-example-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 18px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.embedded-example-strip button {
  min-width: 0;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 35px;
  align-items: center;
  gap: 7px;
  padding: 9px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.embedded-example-strip button:hover,
.embedded-example-strip button.is-selected {
  background: var(--earth-soft);
}

.embedded-example-strip button strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
}

.embedded-example-strip button em {
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.embedded-trajectory {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
}

@media (max-width: 1180px) {
  .site-nav-links {
    gap: 18px;
  }

  .model-result-analysis {
    grid-template-columns: 1fr 1fr;
  }

  .exploration-browser {
    grid-template-columns: 300px minmax(0, 1fr);
  }

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

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

@media (max-width: 860px) {
  .model-result-hero {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .model-result-core {
    grid-column: 1 / -1;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .model-result-scoreband {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-result-scoreband .result-metric {
    border-bottom: 1px solid var(--line);
  }

  .model-result-analysis {
    grid-template-columns: 1fr;
  }

  .model-result-analysis > section:last-child {
    grid-column: auto;
  }

  .result-list-heading,
  .comparison-header,
  .embedded-exploration-heading {
    align-items: start;
    flex-direction: column;
  }

  .result-controls {
    width: 100%;
    min-width: 0;
  }

  .model-task-results {
    overflow-x: auto;
  }

  .model-task-table-head,
  .model-task-result {
    min-width: 820px;
  }

  .exploration-browser {
    grid-template-columns: 1fr;
  }

  .exploration-task-panel {
    position: static;
    max-height: 360px;
  }

  .example-model-strip {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
  }

  .example-model-strip-items {
    width: max-content;
    min-width: 100%;
    display: flex;
  }

  .example-model-row {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  .leaderboard-note {
    display: grid;
  }

  .model-result-hero {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }

  .model-result-rank strong {
    font-size: 36px;
  }

  .model-result-identity h2 {
    font-size: 30px;
  }

  .model-result-scoreband {
    grid-template-columns: 1fr 1fr;
  }

  .model-result-analysis {
    gap: 32px;
  }

  .featured-task-row {
    grid-template-columns: 32px minmax(0, 1fr) 60px;
    gap: 10px;
  }

  .featured-arrow {
    display: none;
  }

  .result-controls,
  .exploration-toolbar {
    grid-template-columns: 1fr;
  }

  .exploration-count {
    padding-bottom: 0;
  }

  .comparison-header,
  .trajectory-process,
  .trajectory-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .comparison-header h2 {
    font-size: 22px;
  }

  .example-model-row { flex-basis: 190px; }

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

  .trajectory-diagnostics .result-metric {
    padding: 13px;
  }

  .timeline-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .timeline-index {
    width: 32px;
    height: 32px;
  }

  .trajectory-timeline::before {
    left: 16px;
  }

  .evidence-claim {
    grid-template-columns: 1fr;
  }

  .evidence-claim code {
    grid-column: 1;
  }

  .embedded-example-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leaderboard-table tbody tr,
  .row-link,
  .featured-task-row {
    transition: none;
  }
}
