:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #e8ecef;
  --ink: #212121;
  --muted: #5a6872;
  --line: #cfd8dc;
  --dark-blue: #1a2332;
  --dark-blue-2: #243348;
  --green: #0f2d24;
  --green-2: #14463a;
  --orange: #ff5722;
  --yellow: #ffc107;
  --cyan: #00bcd4;
  --purple: #7c4dff;
  --new: #4caf50;
  --hot: #f44336;
  --off: #ff9800;
  --white: #ffffff;
  --font-display: "Noto Sans SC", "DIN Alternate", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 10px 24px rgba(10, 18, 30, .12);
  --shadow-sm: 0 2px 6px rgba(10, 18, 30, .08);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image: linear-gradient(rgba(26, 35, 50, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 35, 50, .035) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.75;
}

main {
  display: block;
}

#main-content {
  scroll-margin-top: 18px;
  outline: none;
}

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

a {
  color: var(--purple);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--orange);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--ink);
}

p {
  margin-top: 0;
}

ul, ol {
  margin: 0;
  padding-left: 0;
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 2px;
}

.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;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}

.narrow-col {
  max-width: 720px;
}

.section-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.section-panel-dark {
  background: var(--dark-blue);
  color: rgba(255, 255, 255, .88);
  border: 0;
}

.section-panel-green {
  background: var(--green);
  color: rgba(255, 255, 255, .88);
  border: 0;
}

.section-panel-dark .section-title,
.section-panel-green .section-title {
  color: var(--white);
}

.section-panel-dark .lede,
.section-panel-green .lede {
  color: rgba(255, 255, 255, .74);
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
}

.section-note {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-top: 12px;
}

.lede {
  font-size: 16px;
  color: var(--muted);
  max-width: 720px;
}

.mono {
  font-family: var(--font-mono);
}

.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 200;
  background: var(--purple);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: relative;
  background: var(--dark-blue);
  color: var(--white);
  z-index: 10;
}

.masthead {
  position: relative;
  text-align: center;
  padding: 22px 64px 14px;
}

.masthead::before {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  margin: 0 auto 10px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--cyan), transparent);
}

.masthead-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  font-family: var(--font-mono);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
}

.brand:hover {
  color: var(--white);
}

.brand-code {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--yellow);
}

.brand-name {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
}

.brand-note {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, .72);
  max-width: 240px;
  text-align: left;
  line-height: 1.4;
}

.brand-light .brand-code {
  color: var(--yellow);
}

.brand-light .brand-name {
  color: var(--white);
}

.masthead-meta {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.site-nav {
  background: rgba(0, 0, 0, .15);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  color: rgba(255, 255, 255, .88);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .05);
}

.nav-link[aria-current="page"] {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.nav-toggle {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 6px;
  cursor: pointer;
  color: var(--white);
  z-index: 20;
}

.nav-toggle-box {
  display: block;
  width: 20px;
}

.nav-toggle-inner {
  display: block;
  height: 2px;
  background: var(--white);
  position: relative;
}

.nav-toggle-inner::before,
.nav-toggle-inner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--white);
}

.nav-toggle-inner::before {
  top: -7px;
}

.nav-toggle-inner::after {
  top: 7px;
}

.site-footer {
  background: var(--dark-blue);
  color: rgba(255, 255, 255, .8);
  margin-top: 64px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr;
  gap: 36px;
  padding-top: 48px;
  padding-bottom: 28px;
}

.site-footer .brand-code,
.site-footer .brand-name {
  font-size: 30px;
}

.site-footer a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.footer-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 14px;
  font-family: var(--font-display);
}

.footer-tagline {
  margin: 6px 0 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  font-family: var(--font-mono);
}

.footer-subnav-list,
.footer-link-list,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-subnav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-subnav-list a,
.footer-link-list a {
  display: inline-block;
  padding: 4px 0;
}

.footer-link-list li,
.footer-contact-list li {
  margin-bottom: 8px;
}

.footer-contact-list {
  color: rgba(255, 255, 255, .72);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .16);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark-blue);
  border-radius: var(--radius);
}

.media-frame::after {
  content: attr(data-label);
  position: absolute;
  left: 10px;
  bottom: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
}

.media-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 22px 22px;
}

.media-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #243348, #142129);
  color: rgba(255, 255, 255, .65);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-cover {
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  padding: 14px;
}

.card-body > :last-child {
  margin-top: auto;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
}

.card-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.card-status {
  margin-left: auto;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 130px;
  padding: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: var(--white);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .25));
  pointer-events: none;
  border-radius: inherit;
}

.tile > * {
  position: relative;
  z-index: 1;
}

.tile-code {
  font-size: 12px;
  font-family: var(--font-mono);
  opacity: .85;
}

.tile-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.tile-count {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: .9;
}

.tile-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.tile-orange {
  background: var(--orange);
}

.tile-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.tile-yellow:hover {
  color: var(--ink);
}

.tile-cyan {
  background: var(--cyan);
}

.tile-purple {
  background: var(--purple);
}

.tile-green {
  background: var(--green);
}

.tile-dark {
  background: var(--dark-blue);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  background: var(--line);
  color: var(--ink);
  white-space: nowrap;
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-new {
  background: var(--new);
  color: var(--white);
}

.status-hot {
  background: var(--hot);
  color: var(--white);
}

.status-off {
  background: var(--off);
  color: var(--ink);
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
}

.tag:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.tag[aria-pressed="true"] {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.tag-orange {
  background: #ffe8e0;
  border-color: #ffb59c;
  color: #b23b14;
}

.tag-yellow {
  background: #fff7d6;
  border-color: #f3d37a;
  color: #6d4e00;
}

.tag-cyan {
  background: #d7f6fa;
  border-color: #80e3ee;
  color: #006d7d;
}

.tag-purple {
  background: #ece5ff;
  border-color: #c5b1f6;
  color: #5a2bd1;
}

.tag-green {
  background: #e0f1e4;
  border-color: #a4d5ae;
  color: #1a6b26;
}

.tag-count {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: .75;
}

.index-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.index-link {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
}

.index-link:hover {
  background: var(--cyan);
  color: var(--white);
}

.index-link-current,
.index-link[aria-current="true"] {
  background: var(--purple);
  color: var(--white);
}

.index-link-off {
  opacity: .4;
  pointer-events: none;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.filter-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.filter-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
}

.filter-state::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--new);
}

.filter-state[data-state="hot"]::before {
  background: var(--hot);
}

.filter-state[data-state="off"]::before {
  background: var(--off);
}

.rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.rank-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 110px 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  color: var(--purple);
}

.rank-main {
  min-width: 0;
}

.rank-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.rank-meta {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.rank-track {
  height: 6px;
  background: #e7ebee;
  border-radius: 100px;
  overflow: hidden;
}

.rank-bar {
  display: block;
  height: 100%;
  background: var(--cyan);
  border-radius: inherit;
  transition: width .5s ease;
}

.rank-value {
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: right;
  color: var(--muted);
}

.rank-list-dark .rank-row {
  border-color: rgba(255, 255, 255, .14);
}

.rank-list-dark .rank-name {
  color: var(--white);
}

.rank-list-dark .rank-meta,
.rank-list-dark .rank-value {
  color: rgba(255, 255, 255, .65);
}

.rank-list-dark .rank-num {
  color: var(--yellow);
}

.rank-list-dark .rank-track {
  background: rgba(255, 255, 255, .18);
}

.rank-list-dark .rank-bar {
  background: var(--yellow);
}

.index-table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.index-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 14px;
}

.index-table th,
.index-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.index-table th {
  font-family: var(--font-display);
  background: var(--dark-blue);
  color: var(--white);
  font-weight: 700;
}

.index-table tbody tr:hover {
  background: #f0f4f6;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline-item {
  position: relative;
  padding: 0 0 24px 28px;
  border-left: 2px solid var(--line);
  margin-left: 8px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid var(--surface);
}

.timeline-item.is-hot::before {
  background: var(--hot);
}

.timeline-item.is-new::before {
  background: var(--new);
}

.timeline-date {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--purple);
}

.timeline-batch {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  font-family: var(--font-mono);
}

.timeline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.timeline-desc {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.scroll-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.scroll-track {
  display: flex;
  gap: 14px;
  width: max-content;
  min-width: 100%;
}

.scroll-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
}

.list-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.list-table-row {
  display: table-row;
}

.list-table-row > * {
  display: table-cell;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.list-table-header {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumbs {
  padding: 14px 0;
  font-size: 13px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-list li + li::before {
  content: "/";
  color: var(--line);
  margin-right: 8px;
}

.breadcrumb-link {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb-link:hover {
  color: var(--orange);
}

.breadcrumb-current {
  color: var(--ink);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  border: 0;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.btn:hover {
  background: #e64a19;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--cyan);
}

.btn-secondary:hover {
  background: #0099aa;
}

.btn-ghost {
  background: transparent;
  color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
}

.btn-ghost:hover {
  background: var(--dark-blue);
  color: var(--white);
}

.pagination {
  display: flex;
  gap: 8px;
}

.page-link {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-mono);
}

.page-link[aria-current="page"] {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

[data-reveal],
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1);
}

[data-reveal].is-revealed,
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}

[data-stagger].is-revealed > * {
  opacity: 1;
  transform: none;
}

[data-stagger].is-revealed > *:nth-child(1) { transition-delay: .04s; }
[data-stagger].is-revealed > *:nth-child(2) { transition-delay: .08s; }
[data-stagger].is-revealed > *:nth-child(3) { transition-delay: .12s; }
[data-stagger].is-revealed > *:nth-child(4) { transition-delay: .16s; }
[data-stagger].is-revealed > *:nth-child(5) { transition-delay: .20s; }
[data-stagger].is-revealed > *:nth-child(6) { transition-delay: .24s; }
[data-stagger].is-revealed > *:nth-child(7) { transition-delay: .28s; }
[data-stagger].is-revealed > *:nth-child(8) { transition-delay: .32s; }

@media (max-width: 899px) {
  body {
    font-size: 14px;
  }

  .masthead {
    padding: 18px 64px 14px 20px;
    text-align: center;
  }

  .brand-code,
  .brand-name {
    font-size: 34px;
  }

  .brand-note {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    display: none;
  }

  .site-nav[data-open] {
    display: block;
  }

  .nav-list {
    display: block;
    padding: 6px 0 12px;
  }

  .nav-link {
    border-bottom: 0;
    border-left: 3px solid transparent;
  }

  .nav-link[aria-current="page"] {
    border-left-color: var(--yellow);
    background: rgba(255, 255, 255, .07);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 20px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .rank-row {
    grid-template-columns: 30px minmax(0, 1fr) 80px;
  }

  .rank-value {
    display: none;
  }
}

@media (max-width: 599px) {
  .masthead-kicker,
  .masthead-meta {
    font-size: 11px;
  }

  .brand-code,
  .brand-name {
    font-size: 30px;
  }

  .tile-grid,
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .footer-grid {
    padding-inline: 16px;
  }
}

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

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

  [data-reveal],
  .reveal,
  [data-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
