:root {
  --bg: #0a0611;
  --card: #130d20;
  --card-2: #171026;
  /* Logo-Lila (elektrisch, weder Pink noch Blau) */
  --line: rgba(176, 38, 255, 0.24);
  --line-lit: rgba(176, 38, 255, 0.55);
  --purple: #b026ff;
  --purple-mid: #9318e0;
  --purple-deep: #7a12c4;
  --purple-lit: #c65aff;
  --text: #ffffff;
  --muted: #9d93b0;
  --radius: 12px;
  --inner: 80%;
  --section-space: clamp(3.75rem, 6.5vw, 5.5rem);
  --card-gap: 1rem;
  --panel: rgba(20, 16, 31, 0.9);
  --panel-solid: rgba(22, 17, 34, 0.9);
  --head: "Montserrat", sans-serif;
  --body: "Inter", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: var(--bg);
  position: relative;
}

/* Viewport-Hintergrund: Artwork scrollt von oben (Logo) nach unten (Haus). */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--bg);
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 6, 17, 0.38) 0%,
      rgba(10, 6, 17, 0.22) 40%,
      rgba(10, 6, 17, 0.48) 100%
    ),
    url("assets/Background-hq.jpg");
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center top;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.inner {
  width: var(--inner);
  margin-inline: auto;
}

.ic {
  width: 16px;
  height: 16px;
  flex: none;
}

.ic-lg { width: 22px; height: 22px; }
.ic-xl { width: 30px; height: 30px; }

.label {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.7rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-purple {
  color: #fff;
  background: linear-gradient(180deg, var(--purple), var(--purple-deep));
}

.btn-purple:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn-dark {
  background: rgba(12, 8, 20, 0.85);
  border: 1px solid var(--line);
  color: #fff;
}

.btn-dark:hover {
  border-color: var(--line-lit);
  background: rgba(176, 38, 255, 0.18);
}

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.72rem;
}

.btn-center {
  display: flex;
  width: fit-content;
  margin: 2rem auto 0;
}

.btn-block { width: 100%; }

/* —— Topbar —— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8, 5, 14, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--head);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo img {
  /* logo asset ships on a black plate — screen blends it into the page */
  mix-blend-mode: screen;
  border-radius: 50%;
}

.logo em {
  font-style: normal;
  color: var(--purple);
}

.menu {
  display: flex;
  gap: 1.75rem;
}

.menu a {
  position: relative;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding-bottom: 0.3rem;
  transition: color 0.2s ease;
}

.menu a:hover { color: #fff; }

.menu a.active { color: var(--purple); }

.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 2px;
  border-radius: 2px;
  background: var(--purple);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner { padding: 3rem 0; }

.kicker {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: var(--head);
  font-weight: 900;
  font-size: clamp(3.2rem, 7.5vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero h1 span {
  color: var(--purple);
}

.hero-sub {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 1.9rem;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    rgba(6, 3, 12, 0.72) 0%,
    rgba(6, 3, 12, 0.4) 70%,
    transparent 100%
  );
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.05rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-grid article {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-badges .ic {
  color: var(--purple);
}

.hero-badges strong,
.stat-grid strong {
  display: block;
  font-family: var(--head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-lit);
}

.hero-badges span,
.stat-grid span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* —— About + Stats —— */
.about {
  padding: var(--section-space) 0 0;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.about-card {
  position: relative;
  min-height: 340px;
  height: 100%;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-solid);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/Rh.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 6, 17, 0.92) 0%, rgba(10, 6, 17, 0.8) 36%, rgba(10, 6, 17, 0.32) 60%, transparent 82%);
}

.about-copy {
  position: relative;
  z-index: 1;
  padding: 2rem 1.9rem;
  max-width: 24.5rem;
}

.about-copy h2 {
  font-family: var(--head);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: #fff;
}

.about-copy p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.stats {
  display: flex;
  height: 100%;
  min-height: 0;
}

.stat-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--card-gap);
  min-height: 100%;
}

.stat-grid article {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.15rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.stat-grid article:hover {
  border-color: var(--line-lit);
  background: var(--panel-solid);
}

.stat-grid .ic { color: var(--purple); flex: none; }

/* —— Section heads —— */
.center-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2.5vw, 1.35rem);
  font-family: var(--head);
  font-weight: 900;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.75rem;
  color: #fff;
}

.center-head::before,
.center-head::after {
  content: "";
  width: clamp(1.75rem, 7vw, 4rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 38, 255, 0.85), transparent);
  flex: none;
}

/* Shared outer box — hält Blitz-Hintergrund ruhig */
.section-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.75rem 1.75rem;
  background: var(--panel-solid);
}

.section-panel > .center-head {
  margin-bottom: 1.45rem;
}

/* —— Why —— */
.why { padding: var(--section-space) 0 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.why-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.95rem;
  row-gap: 0.35rem;
  align-items: center;
  padding: 1.45rem 1.2rem;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.why-grid article:hover {
  border-color: var(--line-lit);
  background: var(--panel-solid);
}

.why-grid .ic {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--purple);
  margin: 0;
}

.why-grid h3 {
  font-family: var(--head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
}

.why-grid p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}

/* —— Was wir suchen —— */
.seek {
  padding: var(--section-space) 0 0;
}

.seek-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.65fr);
  gap: 1.5rem 1.75rem;
  align-items: center;
}

.seek-head,
.seek-list {
  position: relative;
  z-index: 1;
}

.seek-head {
  max-width: 17.5rem;
  margin-bottom: 0;
}

.seek-head h2 {
  font-family: var(--head);
  font-weight: 900;
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.85rem;
  color: #fff;
}

.seek-head > p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 17.5rem;
}

.seek-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--card-gap);
  max-width: 100%;
  list-style: none;
}

.seek-list li {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
  min-width: 0;
  padding: 1rem 0.9rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.seek-list li:hover {
  border-color: var(--line-lit);
  background: var(--panel-solid);
}

.seek-list .ic {
  color: var(--purple-lit);
  margin: 0;
}

.seek-list strong {
  display: block;
  font-family: var(--head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.seek-list p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* —— Clans —— */
.clans { padding: var(--section-space) 0 0; }

.clan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.clan-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
  padding: 1.45rem 1.35rem 1.3rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.clan-card:hover {
  border-color: var(--line-lit);
  background: var(--panel-solid);
}

.clan-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-width: 0;
  text-align: left;
}

.clan-crest {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.clan-head h3 {
  font-family: var(--head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
}

.clan-tag {
  margin-top: 0.25rem;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--purple-lit);
}

.clan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.clan-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.75rem;
  text-align: center;
  min-width: 0;
}

.clan-stats > div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.clan-stats dt {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.clan-stats dd {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  overflow-wrap: anywhere;
}

.clan-card .btn-block {
  margin-top: auto;
}

/* —— Community & Erfolge —— */
.community { padding: var(--section-space) 0 0; }

.section-kicker {
  text-align: center;
  font-family: var(--head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin: -0.9rem 0 1.4rem;
}

.cwl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
}

.cwl-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  max-height: 380px;
  padding: 1.4rem 1.3rem 1.1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cwl-card:hover {
  border-color: var(--line-lit);
  background: var(--panel-solid);
}

.cwl-card h3 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cwl-wars {
  overflow-y: auto;
  flex: 1;
  min-height: 8rem;
  max-height: 18rem;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(176, 38, 255, 0.45) transparent;
}

.cwl-wars li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cwl-wars li:last-child { border-bottom: none; }

.cwl-month {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.cwl-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-style: normal;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--purple-lit);
  white-space: nowrap;
}

.cwl-gem {
  width: 12px;
  height: 12px;
  color: var(--purple);
  flex: none;
}

.cwl-stars {
  font-weight: 800;
  color: var(--purple-lit);
}

.cwl-wars li.is-live .cwl-month,
.cwl-wars li.is-live .cwl-meta,
.cwl-wars li.is-live .cwl-stars,
.cwl-wars li.is-live .cwl-gem {
  color: var(--purple-lit);
}

/* —— CTA —— */
.cta { padding: var(--section-space) 0 3.25rem; }

.cta-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  min-height: 168px;
  padding: 1.9rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(8, 4, 16, 0.88) 0%,
      rgba(8, 4, 16, 0.62) 38%,
      rgba(8, 4, 16, 0.28) 62%,
      rgba(8, 4, 16, 0.15) 100%
    ),
    url("assets/Banner-Abschluss.png") center 28% / cover no-repeat;
}

.cta-copy,
.cta-btns { position: relative; }

.cta-copy h2 {
  font-family: var(--head);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #fff;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  max-width: 42ch;
}

.cta-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* —— Players —— */
.players {
  padding: var(--section-space) 0 0;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--card-gap);
}

.player {
  display: grid;
  grid-template-columns: 34% minmax(0, 1fr);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-width: 0;
}

.player:hover {
  border-color: var(--line-lit);
  background: var(--panel-solid);
}

.pl-art {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  background: linear-gradient(170deg, #2a1747, #0d0716);
}

.pl-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pl-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 7, 22, 0.6) 100%);
}

.pl-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.85rem 0.85rem 0.85rem 0.75rem;
  min-width: 0;
}

.pl-rank {
  font-family: var(--head);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--purple-lit);
  margin-bottom: 0.25rem;
}

.pl-info strong {
  display: block;
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(0.92rem, 1.05vw, 1.12rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.role {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.cups {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--purple-lit);
}

.cups .ic {
  width: 20px;
  height: 20px;
  color: var(--purple);
}

/* —— Footer —— */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 1.25rem 1.75rem;
  text-align: center;
}

.footer p {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.footer span {
  color: var(--purple);
  font-weight: 700;
}

/* —— Responsive —— */
@media (max-width: 1080px) {
  .menu { display: none; }

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

@media (max-width: 1200px) {
  .seek-panel {
    grid-template-columns: minmax(160px, 0.65fr) minmax(0, 1.45fr);
    gap: 1.25rem 1.35rem;
  }

  .section-panel {
    padding: 1.6rem 1.4rem;
  }

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

@media (max-width: 900px) {
  .hero { min-height: 520px; }

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

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

  .section-panel {
    padding: 1.75rem 1.25rem 1.4rem;
  }

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

  .seek-head {
    max-width: none;
    margin-bottom: 0.25rem;
  }

  .seek-head > p { max-width: none; }

  /* Hochkant ist kein Platz fuer Text auf dem Bild: Szene als Streifen unter den Text */
  .about-card {
    min-height: 0;
    align-items: flex-start;
    padding-bottom: 205px;
  }

  .about-card::before,
  .about-card::after {
    inset: auto 0 0 0;
    height: 205px;
  }

  .about-card::before { background-position: center bottom; }

  .about-card::after {
    background: linear-gradient(180deg, rgba(10, 6, 17, 0.9) 0%, rgba(10, 6, 17, 0.2) 42%, transparent 100%);
  }

  .clan-grid,
  .cwl-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .why-grid,
  .player-grid { grid-template-columns: 1fr 1fr; }

  .hero-badges { gap: 1.25rem 1.75rem; }

  .stat-grid { grid-template-columns: 1fr; }

  .cta-bar {
    min-height: 0;
    padding: 1.5rem 1.35rem;
    background:
      linear-gradient(
        180deg,
        rgba(8, 4, 16, 0.82) 0%,
        rgba(8, 4, 16, 0.55) 100%
      ),
      url("assets/Banner-Abschluss.png") center 28% / cover no-repeat;
  }
}

@media (max-width: 460px) {
  .why-grid,
  .player-grid,
  .clan-grid,
  .cwl-grid,
  .seek-list { grid-template-columns: 1fr; }
}
