:root {
  --bg: #ffffff;
  --ink: #171717;
  --muted: #666666;
  --muted-2: #808080;
  --line: #ebebeb;
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --blue: #0a72ef;
  --pink: #de1d8d;
  --red: #ff5b4f;
  --max: 1200px;
  --ring: rgba(0, 0, 0, 0.08) 0 0 0 1px;
  --card-shadow:
    rgba(0, 0, 0, 0.08) 0 0 0 1px,
    rgba(0, 0, 0, 0.04) 0 2px 2px,
    rgba(0, 0, 0, 0.04) 0 8px 8px -8px,
    #fafafa 0 0 0 1px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Geist, Inter, Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-feature-settings: "liga";
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.32px;
}

.brand::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  content: "DW";
  font-size: 12px;
  font-weight: 600;
}

.utility-links {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.utility-links a {
  border-radius: 9999px;
  padding: 8px 12px;
}

.utility-links a:hover {
  background: var(--surface-soft);
  color: var(--ink);
  box-shadow: var(--ring);
}

.page-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow,
.panel-kicker {
  margin: 0;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.search-portal {
  padding: 72px 0 28px;
  text-align: center;
}

.search-portal .eyebrow {
  margin-bottom: 18px;
}

.portal-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  width: min(780px, 100%);
  margin: 0 auto;
  border-radius: 9999px;
  background: #fff;
  box-shadow: var(--card-shadow);
  padding: 8px;
}

.portal-search input {
  min-width: 0;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 24px;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
}

.portal-search input::placeholder {
  color: #b3b3b3;
}

.portal-search button {
  min-width: 96px;
  height: 52px;
  border: 0;
  border-radius: 9999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
}

.portal-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(780px, 100%);
  margin: 18px auto 0;
}

.portal-shortcuts a {
  min-height: 88px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--ring);
  padding: 16px;
  text-align: left;
}

.portal-shortcuts a:hover {
  box-shadow: var(--card-shadow);
}

.portal-shortcuts span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.portal-shortcuts small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.search-page-form {
  margin: 28px 0 0;
}

.watch-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 0 70px;
  overflow: visible;
}

.watch-menu-item {
  position: relative;
  z-index: 10;
}

.watch-menu-item:hover,
.watch-menu-item:focus-within {
  z-index: 40;
}

.watch-menu-item::after {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 18px;
  content: "";
}

.watch-menu-item > button,
.watch-menu-item > a {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 9999px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--ring);
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.watch-menu-item > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.watch-menu-item:hover > button,
.watch-menu-item:focus-within > button,
.watch-menu-item:hover > a,
.watch-menu-item:focus-within > a {
  box-shadow: var(--card-shadow);
}

.mega-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(940px, calc(100vw - 48px));
  max-height: min(760px, calc(100vh - 150px));
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 22px;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--card-shadow);
  padding: 24px;
  z-index: 60;
}

.mega-panel.align-right {
  right: 0;
  left: auto;
}

.watch-menu-item:hover .mega-panel,
.watch-menu-item:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-intro h2 {
  margin: 14px 0 0;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.mega-intro p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.mega-list.compact {
  max-height: none;
  overflow: visible;
}

.mega-link,
.score-group {
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--ring);
  padding: 14px;
}

.mega-link {
  min-height: 118px;
}

.mega-link:hover {
  box-shadow: var(--card-shadow);
}

.mega-link span {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.mega-link small,
.mega-link b {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.benchmark-panel-body,
.score-groups,
.score-bars {
  display: grid;
  gap: 18px;
}

.benchmark-panel-body {
  max-height: none;
}

.score-group {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: none;
  padding: 0;
}

.score-group::before {
  display: block;
  width: 100%;
  height: 5px;
  background: var(--blue);
  content: "";
}

.score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  background: #f7f8fa;
  padding: 18px 20px;
}

.score-head strong {
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.score-head a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
}

.score-bars {
  padding: 18px 20px 0;
}

.score-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(160px, 1fr) 56px;
  gap: 14px;
  align-items: center;
}

.score-row span,
.score-row b {
  font-size: 15px;
}

.score-row span {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.score-row b {
  text-align: right;
}

.score-track {
  height: 14px;
  overflow: hidden;
  border-radius: 9999px;
  background: #ebebeb;
}

.score-track i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.score-group p {
  margin: 14px 20px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.benchmark-section {
  margin-top: 34px;
}

.benchmark-page .score-groups {
  gap: 24px;
  margin-top: 22px;
}

.benchmark-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.benchmark-link {
  display: grid;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.benchmark-link:hover {
  box-shadow: var(--card-shadow);
}

.benchmark-link span {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.benchmark-link b,
.benchmark-link small,
.benchmark-link em {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.benchmark-link b {
  color: var(--blue);
}

.benchmark-explain {
  display: grid;
  gap: 16px;
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
}

.benchmark-explain p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.benchmark-accordion {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.benchmark-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.benchmark-card[open] {
  box-shadow: var(--card-shadow);
}

.benchmark-card summary {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(120px, 0.35fr) minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.benchmark-card summary::-webkit-details-marker {
  display: none;
}

.benchmark-card summary span {
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.9px;
}

.benchmark-card summary b {
  color: var(--blue);
  font-weight: 600;
}

.benchmark-card summary small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.benchmark-card summary em {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-style: normal;
  white-space: nowrap;
}

.benchmark-card[open] summary {
  border-bottom: 1px solid var(--line);
  background: #f7f8fa;
}

.benchmark-detail {
  display: grid;
  gap: 18px;
  padding: 24px 28px 30px;
}

.benchmark-detail p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.benchmark-source-row {
  display: grid;
  gap: 10px;
  border-left: 4px solid var(--blue);
  padding: 2px 0 2px 16px;
}

.benchmark-source-row.detail {
  max-width: 760px;
  margin-top: 28px;
}

.benchmark-source-row a {
  color: var(--blue);
  font-weight: 600;
}

.benchmark-source-row span {
  color: var(--muted);
  font-size: 14px;
}

.model-score-table,
.score-chart-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.model-score-head,
.model-score-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(110px, 0.45fr) 90px minmax(120px, 0.55fr);
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
}

.model-score-head {
  background: #f7f8fa;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.model-score-row {
  color: var(--ink);
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.model-score-row:hover {
  background: #f7f8fa;
}

.model-score-row b {
  font-size: 18px;
}

.model-score-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.model-score-row.has-score b,
.model-score-row.has-score em {
  color: var(--blue);
}

.score-chart-list {
  gap: 0;
}

.score-chart-row {
  display: grid;
  grid-template-columns: 42px minmax(160px, 0.9fr) minmax(90px, 0.42fr) minmax(180px, 1.2fr) 64px;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 16px 18px;
  color: var(--ink);
  text-decoration: none;
}

.score-chart-row:first-child {
  border-top: 0;
}

.score-chart-row:hover {
  background: #f7f8fa;
}

.score-chart-row .rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.score-chart-row .model-name {
  font-weight: 700;
}

.score-chart-row .lab-name {
  color: var(--muted);
}

.score-chart-row .score-bar {
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #ebebeb;
}

.score-chart-row .score-bar i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.score-chart-row b {
  color: var(--blue);
  font-size: 20px;
  text-align: right;
}

.empty-state.compact {
  margin-top: 0;
  padding: 18px;
  font-size: 14px;
}

.score-chart-board {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 14px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
}

.score-column {
  display: grid;
  min-height: 430px;
  grid-template-rows: auto auto auto auto auto auto;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  text-decoration: none;
}

.score-column .rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.score-pillar {
  display: flex;
  align-items: end;
  width: 100%;
  height: 16px;
  border-radius: 16px;
  background: #f0f0f0;
  overflow: hidden;
}

.score-pillar i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.score-model-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #f0f0f0;
}

.score-model-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.score-column b {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.score-column strong {
  min-height: 48px;
  font-size: 17px;
  line-height: 1.35;
}

.score-column small {
  color: var(--muted);
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 32px;
  align-items: stretch;
  padding: 68px 0 50px;
  border-top: 1px solid var(--line);
}

.hero-copy-block {
  padding: 18px 0;
}

.hero h1,
.page-title,
.post-title {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(46px, 7.2vw, 86px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -2.4px;
}

.hero-copy,
.post-description {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 32px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--ring);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
}

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

.briefing-panel,
.feature-card,
.post-card,
.empty-state,
.error-state,
.post-content {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.briefing-panel {
  min-height: 430px;
}

.panel-kicker {
  padding: 24px 24px 0;
}

.signal-board {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.signal-card {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  gap: 14px;
  align-items: center;
  border-radius: 12px;
  box-shadow: var(--ring);
  padding: 14px;
}

.signal-name,
.signal-score {
  font-size: 13px;
  color: var(--muted);
}

.signal-line {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 9999px;
  background: #ebebeb;
}

.signal-line::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: var(--tone);
  content: "";
}

.panel-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.panel-footer span {
  min-height: 66px;
  border-right: 1px solid var(--line);
  padding: 14px;
  color: var(--muted);
  font-size: 12px;
}

.panel-footer span:last-child {
  border-right: 0;
}

.editorial-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--line);
  box-shadow: var(--ring);
}

.editorial-strip div {
  min-height: 118px;
  background: #fff;
  padding: 18px;
}

.editorial-strip strong {
  display: block;
  color: var(--blue);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 22px;
}

.editorial-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 70px 0 100px;
}

.section-title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
  margin-top: 24px;
}

.card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.visual-panel {
  display: grid;
  min-height: 180px;
  background: #050505;
}

.image-panel {
  display: block;
  padding: 0;
  background: #050505;
}

.image-panel::before,
.visual-panel::before {
  content: none;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card .image-panel,
.feature-card .image-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.post-card .image-panel img,
.feature-card .image-panel img {
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.visual-panel.large {
  min-height: 0;
}

.visual-panel.post-visual {
  min-height: 0;
  margin-top: 32px;
  border-radius: 16px;
}

.post-visual.image-panel {
  display: block;
  overflow: visible;
}

.post-visual.image-panel img {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.visual-panel span {
  display: inline-flex;
  align-self: end;
  justify-self: start;
  margin: 18px;
  border-radius: 9999px;
  background: #fff;
  box-shadow: var(--ring);
  padding: 8px 12px;
  color: var(--ink);
  font-size: 13px;
}

.card-body {
  padding: 22px;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.feature-card h2,
.post-card h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.96px;
}

.feature-card h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.feature-card p,
.post-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.read-more {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

.side-list,
.post-grid {
  display: grid;
  gap: 20px;
}

.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.page-hero {
  padding: 64px 0 24px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.category-spotlight {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.spotlight-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.spotlight-links a {
  display: grid;
  min-height: 136px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  color: var(--ink);
}

.spotlight-links strong {
  font-size: 22px;
  font-weight: 700;
}

.spotlight-links span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.category-filter button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}

.category-filter button:hover,
.category-filter button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.post-card[hidden] {
  display: none;
}

.article-shell {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 96px;
}

.post-content {
  margin-top: 34px;
  padding: 34px;
  font-size: 17px;
}

.post-content h2,
.post-content h3 {
  margin-top: 1.8em;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.8px;
}

.post-content p,
.post-content ul,
.post-content ol {
  color: var(--muted);
  line-height: 1.8;
}

.post-content a {
  color: var(--blue);
  text-decoration: underline;
}

.post-content img {
  width: 100%;
  height: auto;
  margin: 28px 0;
  border-radius: 16px;
  box-shadow: var(--ring);
  background: #050505;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.post-content th,
.post-content td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
}

.empty-state,
.error-state {
  margin-top: 24px;
  padding: 24px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .watch-grid,
  .hero,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .mega-panel,
  .mega-panel.align-right {
    position: static;
    width: 100%;
    max-height: none;
    grid-template-columns: 1fr;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    margin-top: 12px;
  }

  .mega-list {
    grid-template-columns: 1fr;
    max-height: none;
  }

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

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

  .benchmark-card summary,
  .model-score-head,
  .model-score-row,
  .score-chart-row {
    grid-template-columns: 1fr;
  }

  .score-chart-row b {
    text-align: left;
  }

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

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-shell,
  .article-shell {
    width: min(100% - 32px, var(--max));
  }

  .portal-search,
  .portal-shortcuts,
  .panel-footer,
  .editorial-strip,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-links {
    grid-template-columns: 1fr;
  }

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

  .portal-search {
    border-radius: 22px;
  }

  .portal-search button {
    width: 100%;
  }

  .hero h1,
  .page-title,
  .post-title {
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -1.6px;
  }

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

  .score-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-row b {
    text-align: left;
  }

  .post-content {
    padding: 22px;
  }
}
