:root {
  --black: #000;
  --panel: #1b1b1b;
  --panel-hover: #151515;
  --facet-time: #1b2023;
  --facet-time-hover: #15191b;
  --facet-space: #1c211d;
  --facet-space-hover: #161a17;
  --facet-theme: #211d23;
  --facet-theme-hover: #1a171c;
  --facet-actor: #211f1b;
  --facet-actor-hover: #1a1815;
  --facet-experience: #241d1b;
  --facet-experience-hover: #1c1614;
  --facet-story: #1c2028;
  --facet-story-hover: #16191f;
  --facet-source: #22221c;
  --facet-source-hover: #1b1b16;
  --text: #929292;
  --text-dim: #7f7f7f;
  --text-bright: #d4d4d4;
  --yellow: #fdff6d;
  --green: #45d483;
  --orange: #ef9f55;
  --mono: "SFMono-Regular", "Roboto Mono", "Noto Sans Mono CJK SC", "PingFang SC", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Noto Sans SC", "PingFang SC", sans-serif;
  --serif: "Iowan Old Style", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --bar-height: 40px;
  --row-height: 72px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--black);
}

body {
  overflow: hidden;
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  -webkit-font-smoothing: antialiased;
}

button {
  appearance: none;
  border: 0;
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -3px;
}

.visually-hidden {
  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;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 4px;
  left: 4px;
  transform: translateY(-160%);
  padding: 7px 10px;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.status-bar {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  width: 100%;
  height: var(--bar-height);
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  padding: 0 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.42);
  color: #787878;
  white-space: nowrap;
  transition: background-color 300ms ease;
}

.status-bar:hover,
.status-bar:focus-within {
  background: #000;
}

.wordmark,
.compact-link,
.mobile-lens {
  height: 24px;
  padding: 0 6px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  line-height: 24px;
}

.wordmark {
  padding-left: 0;
  color: #efefef;
  font-family: var(--sans);
  font-weight: 720;
  letter-spacing: 0.02em;
}

.compact-nav,
.utility-nav {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-divider {
  width: 1px;
  height: 12px;
  margin: 0 3px;
  background: rgba(255, 255, 255, 0.13);
}

.compact-nav {
  margin-right: auto;
}

.utility-nav {
  margin-left: auto;
}

.compact-link:hover,
.compact-link.is-active {
  color: #e7e7e7;
}

.compact-link.is-active {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.88);
}

.catalog-status {
  margin: 0;
  padding-left: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.status-down {
  color: var(--green);
}

.status-up {
  color: var(--orange);
}

.mobile-lens,
.mobile-menu {
  display: none;
}

.catalog-scroll {
  position: absolute;
  inset: var(--bar-height) 0 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #000;
  scrollbar-color: #2c2c2c #000;
  scrollbar-width: thin;
}

.catalog-section {
  min-height: 100%;
  margin-top: -2px;
  padding: 0 2px;
}

.catalog-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: var(--row-height);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #000;
}

.catalog-card,
.feature-panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 2px;
  background: #000;
}

.catalog-card,
.feature-inner,
.compact-link,
.mobile-menu a {
  color: inherit;
  text-decoration: none;
}

.catalog-card {
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: opacity 180ms ease;
}

.catalog-card:hover,
.catalog-card:focus-visible {
  z-index: 30;
}

.catalog-card[hidden],
.feature-panel[hidden] {
  display: none;
}

.card-face {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 3px;
  background: var(--facet-panel, var(--panel));
  box-shadow:
    inset 0 -3px 0 rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition:
    background-color 200ms ease,
    color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.catalog-card[data-primary-facet="time"] {
  --facet-panel: var(--facet-time);
  --facet-panel-hover: var(--facet-time-hover);
}

.catalog-card[data-primary-facet="space"] {
  --facet-panel: var(--facet-space);
  --facet-panel-hover: var(--facet-space-hover);
}

.catalog-card[data-primary-facet="theme"] {
  --facet-panel: var(--facet-theme);
  --facet-panel-hover: var(--facet-theme-hover);
}

.catalog-card[data-primary-facet="actor"] {
  --facet-panel: var(--facet-actor);
  --facet-panel-hover: var(--facet-actor-hover);
}

.catalog-card[data-primary-facet="experience"] {
  --facet-panel: var(--facet-experience);
  --facet-panel-hover: var(--facet-experience-hover);
}

.catalog-card[data-primary-facet="story"] {
  --facet-panel: var(--facet-story);
  --facet-panel-hover: var(--facet-story-hover);
}

.catalog-card[data-primary-facet="source"] {
  --facet-panel: var(--facet-source);
  --facet-panel-hover: var(--facet-source-hover);
}

.catalog-card:hover .card-face,
.catalog-card:focus-visible .card-face {
  color: var(--text-bright);
  transform: translateY(2px) scale(0.98);
  background: var(--facet-panel-hover, var(--panel-hover));
  box-shadow:
    inset 0 -3px 0 rgba(0, 0, 0, 0),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.active-edge {
  position: absolute;
  z-index: 25;
  inset: 0 auto 0 0;
  width: 8px;
  overflow: hidden;
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 150ms ease;
}

.active-edge::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 1.5px;
  background: #fff;
  content: "";
}

.active-edge::after {
  width: 0;
  height: 0;
  border-top: 8px solid #fff;
  border-right: 8px solid transparent;
  content: "";
}

.catalog-card:hover .active-edge,
.catalog-card:focus-visible .active-edge {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 25;
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  padding: 8px 10px 10px;
  overflow: hidden;
}

.card-index {
  display: none;
  flex: 0 0 24px;
  color: #858585;
  line-height: 12px;
}

.catalog-card:hover .card-index {
  color: #d3d3d3;
}

.card-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.card-heading {
  min-width: 0;
  overflow: hidden;
}

.card-title,
.card-subtitle,
.card-scope {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-title,
.card-subtitle {
  line-height: 12px;
}

.card-title {
  margin-bottom: 2px;
  color: #949494;
}

.catalog-card:hover .card-title,
.catalog-card:focus-visible .card-title {
  color: #e1e1e1;
}

.card-subtitle,
.card-scope {
  color: #8f8f8f;
}

.catalog-card:hover .card-subtitle,
.catalog-card:hover .card-scope {
  color: #929292;
}

.card-scope {
  line-height: 1;
}

.card-rail {
  position: relative;
  z-index: 25;
  width: 8px;
  height: 100%;
  flex: 0 0 8px;
}

.card-rail::before,
.card-rail::after {
  position: absolute;
  inset-block: 0;
  width: 0.5px;
  background: #000;
  content: "";
}

.card-rail::before {
  left: 2px;
}

.card-rail::after {
  right: 2px;
}

.rail-cap-top,
.rail-cap-bottom {
  position: absolute;
  inset-inline: 0;
  width: 8px;
  height: 2px;
  background: #000;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rail-cap-top {
  top: 0;
  border-radius: 0 0 999px 999px;
}

.rail-cap-bottom {
  bottom: 0;
  border-radius: 999px 999px 0 0;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.card-code {
  position: relative;
  z-index: 25;
  display: flex;
  width: 38px;
  flex: 0 0 38px;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 8px 9px 6px;
  color: #8f8f8f;
  font-size: 10px;
  line-height: 12px;
  text-align: right;
}

.card-code-label {
  display: block;
  white-space: nowrap;
}

.catalog-card:hover .card-code {
  color: #fff;
}

.card-glyph {
  display: flex;
  height: 12px;
  align-items: end;
  justify-content: flex-end;
  gap: 3px;
}

.card-glyph i:first-child {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  box-shadow: inset 0 -0.5px 0 rgba(255, 255, 255, 0.3);
}

.card-glyph i:last-child {
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 -0.5px 0 rgba(255, 255, 255, 0.3);
}

.feature-panel {
  grid-column: span 2;
  grid-row: span 3;
}

.feature-a {
  grid-column: 1 / span 2;
  grid-row: 4 / span 3;
}

.feature-b {
  grid-column: 1 / span 2;
  grid-row: 9 / span 3;
}

.feature-c {
  grid-column: 1 / span 2;
  grid-row: 14 / span 3;
}

.feature-inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border-radius: 3px;
  background: #202020;
  box-shadow:
    inset 0 -3px 0 rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-align: left;
}

.feature-inner:hover,
.feature-inner:focus-visible {
  color: #fff;
}

.feature-kicker {
  position: relative;
  z-index: 25;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-title {
  position: relative;
  z-index: 25;
  margin: 0;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.feature-note {
  position: relative;
  z-index: 25;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.3;
}

.feature-a .feature-inner {
  background: #171b1d;
}

.feature-a .feature-inner::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 26%, rgba(196, 201, 187, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 52%);
  content: "";
  opacity: 0.72;
  transition: opacity 200ms ease;
}

.feature-a .feature-inner:hover::after {
  opacity: 0.42;
}

.feature-b .feature-inner {
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.feature-b .feature-kicker {
  margin-bottom: 12px;
}

.feature-b .feature-title {
  max-width: 260px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.feature-b .feature-note {
  max-width: 210px;
}

.feature-c .feature-inner {
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #1d1f1f;
  text-align: center;
}

.feature-c .feature-title {
  max-width: 230px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.feature-c .feature-note {
  max-width: 210px;
}

.catalog-footer {
  position: relative;
  z-index: 10;
  min-height: 212px;
  padding: 72px 24px 90px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 80%);
  font-family: var(--sans);
}

.footer-copy {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.footer-copy strong {
  color: #fff;
  font-weight: 680;
}

.ambient-light {
  position: fixed;
  z-index: 20;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: color-dodge;
  transform: translateZ(0);
}

.ambient-light::before,
.ambient-light::after {
  position: absolute;
  inset: -24%;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.ambient-light[data-film-state="fallback"]::before {
  background: url("./assets/material-light-poster-v3.png") center / cover no-repeat;
  filter: blur(10px) saturate(0.72);
  opacity: 0.66;
  animation: ambient-fallback-a 12s ease-in-out infinite alternate;
}

.ambient-light[data-film-state="fallback"]::after {
  background: url("./assets/material-light-poster-v3.png") center / cover no-repeat;
  filter: blur(16px) saturate(0.58);
  opacity: 0.3;
  animation: ambient-fallback-b 17s ease-in-out infinite alternate;
}

.ambient-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("./assets/material-light-poster-v3.png") center / cover no-repeat;
  filter: blur(8px);
  object-fit: cover;
  transform: translateZ(0);
}

@keyframes ambient-fallback-a {
  from {
    transform: translate3d(-2.4%, -1.8%, 0) scale(1.035) rotate(-0.35deg);
  }
  to {
    transform: translate3d(2.8%, 2.1%, 0) scale(1.075) rotate(0.45deg);
  }
}

@keyframes ambient-fallback-b {
  from {
    transform: translate3d(2.2%, -2.6%, 0) scale(1.08) rotate(0.5deg);
  }
  to {
    transform: translate3d(-2.6%, 2.2%, 0) scale(1.035) rotate(-0.45deg);
  }
}

.filter-dock {
  position: fixed;
  z-index: 5000;
  bottom: 24px;
  left: 24px;
  display: flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 8px 8px 0;
  border-radius: 6px;
  background: #000;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 6px 12px rgba(0, 0, 0, 0.75);
}

.dock-grip {
  display: flex;
  width: 32px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  cursor: grab;
}

.dock-grip:hover {
  color: rgba(255, 255, 255, 0.8);
}

.dock-grip:active {
  cursor: grabbing;
}

.dock-grip svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.dock-current {
  display: flex;
  min-width: 92px;
  height: 18px;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0 7px;
  color: #c7c7c7;
  font-size: 10px;
}

.dock-current #current-filter-label {
  color: #fff;
}

.dock-separator {
  color: #555;
}

.dock-clear {
  height: 18px;
  margin-left: 3px;
  padding: 0 7px;
  border-radius: 1px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 10px;
}

.dock-clear:hover,
.dock-clear:focus-visible {
  background: #d8d8d8;
}

.local-error {
  grid-column: 1 / -1;
  padding: 32px;
  color: #ddd;
  font-family: var(--sans);
}

@media (min-width: 640px) {
  :root {
    --row-height: 80px;
  }

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

  .card-index {
    display: block;
  }

  .card-copy {
    padding-left: 12px;
  }

  .feature-panel {
    grid-column: span 1;
  }

  .feature-a {
    grid-column: 1;
    grid-row: 3 / span 3;
  }

  .feature-b {
    grid-column: 2;
    grid-row: 6 / span 3;
  }

  .feature-c {
    grid-column: 3;
    grid-row: 9 / span 3;
  }

}

@media (min-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .feature-a {
    grid-column: 4;
    grid-row: 3 / span 3;
  }

  .feature-b {
    grid-column: 2;
    grid-row: 6 / span 3;
  }

  .feature-c {
    grid-column: 5;
    grid-row: 9 / span 3;
  }
}

@media (min-width: 1536px) {
  :root {
    --row-height: 90px;
  }

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

  .catalog-card {
    font-size: 11px;
  }

  .card-content {
    padding: 12px 16px 13px;
  }

  .card-copy {
    padding-left: 18px;
  }

  .card-code {
    width: 40px;
    flex-basis: 40px;
    padding: 13px 8px;
  }

  .feature-a {
    grid-column: 2;
    grid-row: 3 / span 3;
  }

  .feature-b {
    grid-column: 4;
    grid-row: 5 / span 3;
  }

  .feature-c {
    grid-column: 6;
    grid-row: 7 / span 3;
  }

  .ambient-light {
    opacity: 0.35;
  }

  .ambient-film {
    filter: blur(16px);
  }

  .catalog-footer {
    min-height: 340px;
    padding-top: 200px;
  }
}

@media (max-width: 1150px) {
  .compact-nav .compact-link:nth-of-type(n + 6) {
    display: none;
  }

  .catalog-status {
    display: none;
  }
}

@media (max-width: 800px) {
  .status-bar {
    gap: 8px;
    padding: 0 10px;
  }

  .compact-nav,
  .utility-nav {
    display: none;
  }

  .mobile-lens {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    position: fixed;
    z-index: 6000;
    top: 40px;
    right: 8px;
    display: grid;
    width: min(280px, calc(100vw - 16px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    border-radius: 3px;
    background: #000;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.15),
      0 18px 45px rgba(0, 0, 0, 0.75);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu button,
  .mobile-menu a {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    background: #1c1c1c;
    color: #999;
  }

  .mobile-menu button.is-active {
    background: #fff;
    color: #000;
  }

  .mobile-menu-label {
    grid-column: 1 / -1;
    padding: 6px 4px 2px;
    color: #626262;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

}

@media (max-width: 639px) {
  .filter-dock {
    bottom: 10px;
    left: 8px;
    max-width: calc(100vw - 16px);
  }

  .catalog-section {
    padding-right: 1px;
    padding-left: 1px;
  }

  .feature-inner {
    padding: 18px;
  }

  .feature-b .feature-title {
    font-size: 22px;
  }

  .card-code {
    width: 36px;
    flex-basis: 36px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .ambient-light {
    opacity: 0.18;
  }

  .catalog-footer {
    min-height: 260px;
    padding: 72px 16px 70px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ambient-light {
    opacity: 0.26;
    background: url("./assets/material-light-poster-v3.png") center / cover no-repeat;
    filter: blur(8px);
  }

  .ambient-light::before,
  .ambient-light::after {
    display: none;
  }

  .ambient-film {
    visibility: hidden;
  }
}

.g6-ambient-toggle { min-height:28px; white-space:nowrap; }
.g6-ambient-toggle:focus-visible { outline:2px solid #dbe6eb; outline-offset:2px; }
.ambient-light[data-motion-paused="true"]::before, .ambient-light[data-motion-paused="true"]::after { animation-play-state:paused !important; }

/* M1 absorbs the 2026-09-09 wordmark correction into its own payload. */
.wordmark{font-size:14px;font-weight:750;text-decoration:none;margin-right:4px;}

/* The narrow type rail must never paint over an adjacent cabinet door. */
.card-code-label {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Same structure and breakpoints in Chinese and English. */
.status-bar .compact-nav .compact-link { display: block; }
.status-bar .utility-nav { gap: 2px; margin-left: auto; }
.status-bar .utility-nav .compact-link { flex-shrink: 0; }
.status-bar .language-switch {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  margin-inline: 12px;
  font-size: 11px;
  white-space: nowrap;
}
.language-switch a, .language-switch .language-current {
  display: inline-flex;
  min-width: 34px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding-inline: 5px;
  text-decoration: none;
}
.language-switch a { color: #999; }
.language-switch .language-current { color: #eee; font-weight: 700; }
.language-divider { color: #555; }
.language-switch a:hover { color: #fff; }
.language-switch a:focus-visible { outline: 1px solid #eee; outline-offset: -2px; }
@media (max-width: 1350px) {
  .status-bar .catalog-status { display: none; }
}
@media (max-width: 1000px) {
  .status-bar .compact-nav, .status-bar .utility-nav { display: none; }
  .status-bar .wordmark { margin-right: auto; }
  .status-bar .language-switch { margin-inline: 6px; }
  .status-bar .mobile-lens { display: block; margin-left: 6px; }
  .mobile-menu {
    position: fixed;
    z-index: 6000;
    top: var(--bar-height);
    right: 8px;
    display: grid;
    width: min(280px, calc(100vw - 16px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    background: #000;
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu button, .mobile-menu a {
    display: flex;
    min-width: 0;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: #1c1c1c;
    color: #999;
    overflow-wrap: anywhere;
    text-decoration: none;
  }
  .mobile-menu-label { grid-column: 1 / -1; }
}
