.races-page .nav a.active {
  color: var(--text);
  border-color: var(--line-strong);
  background: var(--accent-soft);
}

.races-shell {
  max-width: 1540px;
}

.races-main {
  display: grid;
  gap: 18px;
}

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

.races-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  min-height: 338px;
  background:
    radial-gradient(circle at 80% 32%, rgba(255, 214, 10, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 214, 10, 0.08), transparent 38%),
    var(--panel);
}

.races-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.races-hero-copy {
  align-self: center;
  padding: 42px 46px;
}

.races-hero h1 {
  margin: 16px 0 12px;
  max-width: 720px;
  font-size: clamp(3.5rem, 6vw, 6.8rem);
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.races-hero-copy > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.races-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.races-hero-stats > div {
  display: grid;
  min-width: 122px;
  gap: 2px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
}

.races-hero-stats strong {
  font-size: 1.1rem;
}

.races-hero-stats span {
  color: var(--muted-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.races-hero-visual {
  position: relative;
  min-height: 338px;
}

.races-hero-visual::before,
.races-hero-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 214, 10, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.races-hero-visual::before {
  width: 290px;
  height: 290px;
}

.races-hero-visual::after {
  width: 190px;
  height: 190px;
}

.score-orbit,
.score-orbit-core {
  position: absolute;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
}

.score-orbit {
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(10, 10, 10, 0.96));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.score-orbit span {
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.score-orbit small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-a {
  left: calc(50% - 178px);
  top: calc(50% - 29px);
}

.orbit-b {
  left: calc(50% + 74px);
  top: calc(50% - 126px);
}

.orbit-c {
  left: calc(50% + 70px);
  top: calc(50% + 40px);
}

.score-orbit-core {
  left: 50%;
  top: 50%;
  width: 114px;
  height: 114px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 214, 10, 0.35);
  background: var(--accent);
  color: #0a0a08;
  box-shadow: 0 0 50px rgba(255, 214, 10, 0.18);
}

.score-orbit-core span {
  font-size: 1.5rem;
  line-height: 0.8;
}

.score-orbit-core strong {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

.races-browser {
  display: grid;
  grid-template-columns: minmax(320px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.race-catalog {
  position: sticky;
  top: 16px;
  display: flex;
  flex-direction: column;
  min-height: 660px;
  max-height: calc(100vh - 32px);
  min-width: 0;
  padding: 18px;
}

.race-catalog-head,
.race-results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.race-catalog h2,
.race-results h2,
.race-reading-guide h2 {
  margin: 5px 0 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.race-count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #080808;
  font-size: 0.82rem;
  font-weight: 800;
}

.race-search,
.race-athlete-search {
  position: relative;
  display: block;
}

.race-search {
  margin-top: 18px;
}

.race-search svg,
.race-athlete-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.8;
  pointer-events: none;
}

.race-search input,
.race-athlete-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.race-search input,
.race-athlete-search input {
  padding: 0 14px 0 43px;
}

.race-search input:focus,
.race-athlete-search input:focus {
  border-color: rgba(255, 214, 10, 0.46);
  background: rgba(255, 214, 10, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.08);
}

.race-tier-switch {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-top: 10px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.18);
}

.race-tier-switch button {
  min-height: 36px;
  padding: 0 7px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.race-tier-switch button.active {
  background: var(--accent);
  color: #090909;
}

.race-event-list {
  display: grid;
  gap: 8px;
  min-height: 0;
  margin-top: 14px;
  padding-right: 3px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 214, 10, 0.32) transparent;
}

.race-event-card {
  width: 100%;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.race-event-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 214, 10, 0.24);
  background: rgba(255, 214, 10, 0.045);
}

.race-event-card.active {
  border-color: rgba(255, 214, 10, 0.46);
  background: linear-gradient(120deg, rgba(255, 214, 10, 0.11), rgba(255, 255, 255, 0.025));
  box-shadow: inset 3px 0 0 var(--accent);
}

.race-event-date {
  display: grid;
  place-content: center;
  min-height: 54px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
}

.race-event-date strong {
  font-size: 1.05rem;
  line-height: 1;
}

.race-event-date span {
  margin-top: 4px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.race-event-copy {
  min-width: 0;
}

.race-event-copy strong {
  display: block;
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.race-event-copy span {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 0.73rem;
}

.race-event-arrow {
  color: var(--muted-2);
  font-size: 1.2rem;
}

.race-loading-card,
.race-results-loading,
.race-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 130px;
  color: var(--muted);
}

.race-loading-card i,
.race-results-loading i {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: race-spin 700ms linear infinite;
}

@keyframes race-spin {
  to { transform: rotate(360deg); }
}

.race-more-button {
  width: 100%;
  margin-top: 10px;
}

.race-results {
  min-width: 0;
  overflow: hidden;
}

.race-results-head {
  padding: 23px 24px 20px;
  border-bottom: 1px solid var(--line);
}

.race-results-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.race-results-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(270px, 0.72fr) minmax(180px, 0.58fr);
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.12);
}

.result-tier-switch,
.race-sex-switch {
  display: flex;
  margin-top: 0;
}

.result-tier-switch button,
.race-sex-switch button {
  flex: 1 1 0;
  min-width: 0;
}

.race-table-shell {
  width: 100%;
  min-height: 440px;
  overflow-x: auto;
}

.race-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
}

.race-table th {
  height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.race-table th:nth-child(1),
.race-table td:nth-child(1) {
  width: 66px;
  text-align: center;
}

.race-table th:nth-child(4),
.race-table td:nth-child(4),
.race-table th:nth-child(5),
.race-table td:nth-child(5) {
  text-align: right;
}

.race-table td {
  height: 66px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  vertical-align: middle;
}

.race-result-row {
  transition: background 130ms ease;
}

.race-result-row:hover,
.race-result-row.is-open {
  background: rgba(255, 214, 10, 0.035);
}

.race-rank {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.race-athlete {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.race-athlete-flag {
  width: 31px;
  flex: 0 0 31px;
  text-align: center;
  font-size: 1.26rem;
}

.race-athlete-copy {
  min-width: 0;
}

.race-athlete-copy strong {
  display: block;
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.race-athlete-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 0.7rem;
}

.race-athlete-meta-mobile {
  display: none !important;
}

.race-division {
  max-width: 210px;
}

.race-division strong {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.race-tier-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-top: 4px;
  padding: 0 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.race-tier-badge.is-elite {
  border-color: rgba(255, 214, 10, 0.32);
  color: var(--accent);
  background: rgba(255, 214, 10, 0.06);
}

.race-time {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  font-size: 0.85rem;
}

.race-points {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.race-points strong {
  color: var(--accent);
  font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
}

.race-points small {
  color: var(--muted-2);
  font-size: 0.62rem;
}

.selected-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(161, 255, 172, 0.08);
  color: var(--success);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.selected-result-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.race-calculation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  cursor: pointer;
}

.race-calculation-button:hover,
.race-calculation-button[aria-expanded="true"] {
  border-color: rgba(255, 214, 10, 0.38);
  background: var(--accent-soft);
  color: var(--accent);
}

.race-calculation-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.race-calculation-row[hidden] {
  display: none;
}

.race-calculation-row td {
  height: auto;
  padding: 0;
  background: rgba(255, 214, 10, 0.025);
}

.race-calculation-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  padding: 18px 22px 21px;
  border-bottom: 1px solid rgba(255, 214, 10, 0.16);
}

.race-calculation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.race-calculation-grid > div {
  min-width: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
}

.race-calculation-grid span,
.race-formula-label {
  display: block;
  color: var(--muted-2);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.race-calculation-grid strong {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.race-formula {
  align-self: center;
  padding: 15px 17px;
  border: 1px solid rgba(255, 214, 10, 0.18);
  border-radius: 13px;
  background: linear-gradient(120deg, rgba(255, 214, 10, 0.08), rgba(255, 255, 255, 0.018));
}

.race-formula-expression {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
}

.race-formula-expression strong {
  color: var(--accent);
}

.race-results-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.race-reading-guide {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 30px;
  padding: 28px;
}

.race-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.race-guide-grid article {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.race-guide-grid article > span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
}

.race-guide-grid strong {
  display: block;
  margin-top: 10px;
}

.race-guide-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.races-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .races-hero {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .races-hero-copy {
    padding: 36px;
  }

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

  .race-results-controls {
    grid-template-columns: 1fr 1fr;
  }

  .race-sex-switch {
    grid-column: 1 / -1;
  }

  .race-calculation-panel {
    grid-template-columns: 1fr;
  }
}

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

  .races-hero-visual {
    display: none;
  }

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

  .race-catalog {
    position: static;
    min-height: 0;
    max-height: none;
  }

  .race-event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 420px;
  }

  .race-reading-guide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .races-page {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .races-shell {
    padding: 12px 10px 24px;
  }

  .races-page .topbar {
    margin-bottom: 10px;
  }

  .races-page .topbar-actions {
    display: none;
  }

  .races-main {
    gap: 10px;
  }

  .races-hero {
    min-height: 0;
    border-radius: 20px;
  }

  .races-hero-copy {
    padding: 25px 19px 20px;
  }

  .races-hero h1 {
    margin: 12px 0 10px;
    font-size: clamp(3.05rem, 17vw, 4.8rem);
  }

  .races-hero-copy > p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .races-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 20px;
  }

  .races-hero-stats > div {
    min-width: 0;
    padding: 9px 8px;
    border-radius: 11px;
  }

  .races-hero-stats strong {
    font-size: 0.86rem;
  }

  .races-hero-stats span {
    font-size: 0.55rem;
  }

  .races-browser {
    gap: 10px;
  }

  .race-catalog,
  .race-results {
    width: 100%;
    min-width: 0;
    border-radius: 18px;
  }

  .race-catalog {
    padding: 15px 13px 13px;
  }

  .race-catalog h2,
  .race-results h2,
  .race-reading-guide h2 {
    font-size: 1.4rem;
  }

  .race-event-list {
    display: flex;
    gap: 8px;
    margin: 12px -13px 0;
    padding: 0 13px 3px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .race-event-list::-webkit-scrollbar {
    display: none;
  }

  .race-event-card {
    min-width: min(82vw, 310px);
    scroll-snap-align: start;
  }

  .race-more-button {
    min-height: 44px;
  }

  .race-results-head {
    display: grid;
    padding: 18px 15px 15px;
  }

  .race-results-controls {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .race-sex-switch {
    grid-column: auto;
  }

  .race-search input,
  .race-athlete-search input {
    min-height: 45px;
  }

  .race-table-shell {
    min-height: 360px;
    overflow: visible;
  }

  .race-table,
  .race-table tbody {
    display: block;
    width: 100%;
  }

  .race-table thead {
    display: none;
  }

  .race-result-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto 36px;
    align-items: center;
    gap: 7px;
    min-height: 74px;
    padding: 9px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .race-result-row td {
    display: block;
    width: auto !important;
    height: auto;
    padding: 0;
    border: 0;
    text-align: left !important;
  }

  .race-result-row td:nth-child(1) {
    grid-column: 1;
  }

  .race-result-row td:nth-child(2) {
    grid-column: 2;
    min-width: 0;
  }

  .race-result-row td:nth-child(3),
  .race-result-row td:nth-child(4) {
    display: none;
  }

  .race-result-row td:nth-child(5) {
    grid-column: 3;
  }

  .race-result-row td:nth-child(6) {
    grid-column: 4;
  }

  .race-athlete {
    gap: 7px;
  }

  .race-athlete-flag {
    width: 25px;
    flex-basis: 25px;
    font-size: 1.05rem;
  }

  .race-athlete-copy strong {
    font-size: 0.82rem;
  }

  .race-athlete-meta-mobile {
    display: block !important;
    max-width: 100%;
    overflow: hidden;
    color: var(--muted-2);
    font-size: 0.62rem !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .race-points {
    align-items: flex-end;
  }

  .race-points strong {
    font-size: 0.92rem;
  }

  .race-points small {
    display: none;
  }

  .selected-result-badge {
    min-height: 18px;
    padding: 0 5px;
    font-size: 0.51rem;
  }

  .race-calculation-button {
    width: 34px;
    height: 34px;
  }

  .race-calculation-row {
    display: block;
    width: 100%;
  }

  .race-calculation-row[hidden] {
    display: none;
  }

  .race-calculation-row td {
    display: block;
    width: 100% !important;
    padding: 0;
  }

  .race-calculation-panel {
    width: 100%;
    gap: 9px;
    padding: 12px 10px 15px;
  }

  .race-calculation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .race-calculation-grid > div {
    padding: 7px;
  }

  .race-calculation-grid > div:nth-child(4),
  .race-calculation-grid > div:nth-child(5) {
    grid-column: span 1;
  }

  .race-calculation-grid span {
    font-size: 0.49rem;
  }

  .race-calculation-grid strong {
    font-size: 0.68rem;
  }

  .race-formula {
    padding: 11px;
  }

  .race-formula-expression {
    font-size: 0.78rem;
  }

  .race-results-footer {
    min-height: 60px;
    padding: 10px;
  }

  .race-results-footer .button {
    min-height: 42px;
    white-space: nowrap;
  }

  .race-reading-guide {
    gap: 15px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .race-guide-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .race-guide-grid article {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 0 8px;
    padding: 11px;
  }

  .race-guide-grid strong {
    margin-top: 0;
  }

  .race-guide-grid p {
    grid-column: 2;
    margin-top: 3px;
  }

  .races-footer {
    margin-bottom: 0;
  }

  .mobile-tabbar {
    grid-template-columns: repeat(5, 1fr);
  }
}
