/* ==========================================================================
   STRONA GRY — przepisane 1:1 z podglad-gra.html
   ==========================================================================
   Ten plik wczytywany jest JAKO OSTATNI i celowo nadpisuje reguły ze
   styles.css (.project-detail*, .project-sidebar-card, .download-button,
   .progress-*, .komentarze-sekcja). Wcześniejsze podejście — dokładanie
   pojedynczych poprawek do projekt-extra.css — przegrywało ze starymi
   regułami i górna część strony nie przypominała podglądu.

   Wartości (szerokości, proporcje, rozmiary fontów, odstępy) pochodzą
   wprost z podglad-gra.html — nie zmieniać „na oko".
   ========================================================================== */

/* Fioletowe tło na CAŁEJ stronie, nie na pasku treści.
   Wcześniej gradient siedział na .project-page (max-width 1340px + zaokrąglone
   rogi), więc wyglądał jak wstawka na środku. body ma własne `var(--bg)`,
   a .main-content jest przezroczyste — więc tło nakładamy tutaj.
   Ten plik wczytuje tylko projekt.html, więc nie rusza reszty serwisu. */
body {
  background:
    radial-gradient(1100px 560px at 85% -6%, rgba(139, 92, 246, .16), transparent 55%),
    radial-gradient(900px 500px at -6% 20%, rgba(124, 92, 255, .10), transparent 52%),
    #0c0819;
  background-attachment: fixed;   /* gradienty nie powtarzają się przy scrollu */
}

/* ---- zmienne z podglądu, tylko w obrębie strony gry ---- */
.project-page {
  --gp-card: var(--surface);
  --gp-panel: var(--surface-soft, var(--surface));
  --gp-border: var(--border);
  --gp-muted: #9a92b8;
  --gp-dim: #6f6790;
  --gp-accent: var(--accent, #8b5cf6);
  --gp-accent2: #a78bfa;
  --gp-accent-strong: #b794ff;
  --gp-glow: rgba(139, 92, 246, .4);

  max-width: 1340px;           /* .wrap */
  margin: 0 auto;
  padding: 20px clamp(16px, 3vw, 30px) 40px;
  background: none;            /* tło jest na <body>, patrz niżej */
  border-radius: 0;
  font-size: 14px;
  line-height: 1.55;
}
.project-page .back-link { color: var(--gp-muted); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.project-page .back-link:hover { color: #fff; }

/* ---- reset starych reguł ze styles.css ---- */
.project-detail.gp {
  position: relative;          /* punkt odniesienia dla pasków ze zdjęciami */
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.gp .project-detail-cover,
.gp .project-detail-placeholder { min-height: 0; }

/* ====================  PASKI ZDJĘĆ PO BOKACH  =========================== */
/* Wypełniają wolną przestrzeń na lewo i prawo od treści (max-width 1340px).
   Miejsce jest tylko na naprawdę szerokim ekranie — margines po bokach to
   (viewport − 264px menu − 1340px) / 2. Paski (≈146px) potrzebują ~1900px
   szerokości; niżej się chowają i treść zostaje wyśrodkowana jak dotąd. */
.gp-rail {
  position: absolute;
  top: 0;
  /* Szerokość rośnie razem z wolnym marginesem: (100vw − 264px menu − 1340px
     treść) / 2, minus zapas 22px, żeby nie dotykać treści ani krawędzi ekranu.
     Min 130px (granica ~1920px, tam fizycznie tyle się mieści), max 340px —
     na szerokim monitorze kwadraty są duże, nie maleńkie. */
  width: clamp(130px, calc((100vw - 1604px) / 2 - 22px), 340px);
  display: none;               /* domyślnie schowane; pokazuje je media query */
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
.gp-rail[hidden] { display: none !important; }
.gp-rail-l { right: calc(100% + 14px); }
.gp-rail-r { left: calc(100% + 14px); }
.gp-rail-cap {
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gp-dim);
  padding-left: 2px;
  margin-bottom: 2px;
}
.gp-shot {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--gp-border);
  aspect-ratio: 16 / 9;
  background: var(--gp-card);
  cursor: zoom-in;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.gp-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-shot:hover {
  transform: scale(1.07);
  border-color: var(--gp-accent);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .5);
  z-index: 3;
}
/* Pokazuj tylko, gdy w marginesie faktycznie mieści się pasek + odstęp.
   Szerokość pasków skaluje już clamp() wyżej — nie ma osobnych progów. */
@media (min-width: 1900px) {
  .gp-rail:not([hidden]) { display: flex; }
}

/* ==========================  HERO 3-kol  ================================= */
.gp-hero {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

/* --- okładka --- */
.gp-gal {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gp-border);
  aspect-ratio: 2 / 2.35;
  background: var(--gp-card);
}
.gp-gal .project-detail-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.gp-gal .project-detail-placeholder { position: absolute; inset: 0; display: grid; place-items: center; }
.gp-gal .project-detail-placeholder svg { width: 64px; fill: var(--gp-accent); opacity: .4; }
.gp-pl {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 44px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--gp-accent), #5a34c9);
  clip-path: polygon(50% 0, 100% 22%, 100% 78%, 50% 100%, 0 78%, 0 22%);
  box-shadow: 0 4px 14px var(--gp-glow);
}

/* --- przycisk „Zwiastun" na okładce + odtwarzacz na cały ekran --- */
.gp-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px 10px 11px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 99px;
  background: rgba(12, 8, 25, .6);
  backdrop-filter: blur(3px);
  color: #fff;
  font: inherit;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.gp-play:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--gp-accent); border-color: transparent; }
.gp-play-ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--gp-accent); }
.gp-play:hover .gp-play-ic { background: #fff; }
.gp-play-ic svg { width: 14px; height: 14px; fill: #fff; margin-left: 1px; }
.gp-play:hover .gp-play-ic svg { fill: var(--gp-accent); }

.gp-trailer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(6, 4, 14, .86);
  backdrop-filter: blur(4px);
  cursor: zoom-out;
}
.gp-trailer.on { display: grid; }
.gp-trailer video {
  width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 12px;
  background: #000;
  border: 1px solid var(--gp-border);
  cursor: default;
}
.gp-trailer-x {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(12, 8, 25, .6);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.gp-trailer-x:hover { background: var(--gp-accent); border-color: transparent; }

/* --- środek --- */
.gp-mid { min-width: 0; }
.gp-mid .gp-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gp-accent2);
  background: rgba(139, 92, 246, .18);
  padding: 5px 12px;
  border-radius: 8px;
}
.gp-mid .gp-cat:empty { display: none; }
.gp-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  margin: 12px 0 8px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.01em;
  overflow-wrap: anywhere;
}
.gp-sub { display: flex; align-items: center; gap: 10px; color: var(--gp-muted); font-size: 15px; margin-bottom: 18px; }
.gp-ver {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .05em;
  color: #fff;
  background: var(--gp-accent);
  padding: 4px 9px;
  border-radius: 7px;
}

/* 3 boksy: Rodzaj / Wersja gry / Aktualizacja (Język usunięty — flaga PL
   jest na okładce). Boksy bez danych chowają się, więc auto-fit trzyma
   równą szerokość niezależnie od tego, ile ich zostanie. */
.gp-ibx { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; max-width: 560px; }
.gp-ibx .b { background: var(--gp-card); border: 1px solid var(--gp-border); border-radius: 11px; padding: 10px 12px; min-width: 0; }
.gp-ibx .b small { display: block; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--gp-dim); margin-bottom: 3px; }
.gp-ibx .b span { font-size: 13.5px; font-weight: 600; overflow-wrap: anywhere; }

/* --- przyciski (.btns) --- */
.gp-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }
.gp-actions .vs-share { display: contents; }
.project-page .gp-actions .download-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 13px 20px;
  width: auto;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--gp-accent), var(--gp-accent-strong));
  box-shadow: 0 10px 24px var(--gp-glow);
  border: 0;
}
.project-page .gp-actions .download-button svg { width: 18px; height: 18px; fill: #fff; }
.project-page .gp-actions .vs-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--gp-border);
  background: var(--gp-card);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
}
.project-page .gp-actions .vs-share-btn:hover { border-color: var(--gp-accent); color: var(--gp-accent); }

/* --- 3 ikony (.feats) --- */
.gp-feats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gp-feat { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.gp-feat-ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gp-accent), var(--gp-accent-strong));
  box-shadow: 0 5px 14px var(--gp-glow);
}
.gp-feat-ic svg { width: 20px; height: 20px; fill: #fff; }
.gp-feat b { font-size: 12px; letter-spacing: .03em; text-transform: uppercase; }
.gp-feat small { font-size: 11.5px; color: var(--gp-muted); }

/* --- karta statusu (.status) — naturalna wysokość, bez sticky --- */
.project-page .gp-status {
  position: static;
  align-self: start;
  background: var(--gp-panel);
  border: 1px solid var(--gp-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: none;
}
.project-page .gp-status > h2 { font-size: 16px; margin: 0 0 16px; }
.project-page .gp-status .status-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px; }
.project-page .gp-status .status-value { color: #5fe0ab; }
.project-page .gp-status .progress-block { margin: 0; }
.project-page .gp-status .progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--gp-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 14px 0 6px;
}
.project-page .gp-status .progress-label strong { color: var(--text); }
.project-page .gp-status .progress-track {
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
  margin-bottom: 16px;
}
.project-page .gp-status .progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gp-accent), var(--gp-accent-strong));
}

/* lista danych (.st-facts) */
.gp-status .gp-meta:not(:empty) { border-top: 1px solid var(--gp-border); padding-top: 14px; }
.gp-status .vs-meta { margin: 0; display: grid; gap: 11px; }
.gp-status .vs-meta > div { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.gp-status .vs-meta dt { color: var(--gp-muted); font-size: 13px; }
.gp-status .vs-meta dd { margin: 0; color: var(--text); font-weight: 600; font-size: 13px; }

/* Ocena w karcie statusu — pod listą danych */
.gp-rating:empty { display: none; }
.gp-rating { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gp-border); }
.gp-rating .vs-rating-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.gp-rating .vs-rating-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--gp-muted); }
.gp-rating .vs-rating-summary { font-size: 12.5px; color: var(--text); font-weight: 600; }
.gp-rating .vs-stars { display: flex; gap: 4px; }
.gp-rating .vs-star {
  border: 0;
  background: none;
  padding: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--gp-dim);
  cursor: pointer;
}
.gp-rating .vs-star:hover,
.gp-rating .vs-star.is-on { color: var(--gp-accent2); }
.gp-rating .vs-rating-msg { margin: 6px 0 0; font-size: 12px; color: var(--gp-muted); }

/* przycisk Kontakt (.st-support) */
.gp-kontakt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--gp-border);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}
.gp-kontakt svg { width: 17px; height: 17px; fill: #e0506a; }
.gp-kontakt:hover { border-color: var(--gp-accent); color: var(--gp-accent); }

/* ==========================  ŚRODEK 2-kol  =============================== */
.gp-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 26px;
  align-items: start;
}
.gp-left, .gp-right { min-width: 0; }
.gp-left, .gp-right, .gp-left p, .gp-left li { overflow-wrap: anywhere; }

/* .card z podglądu */
.project-page .gp-left .project-section,
.project-page .gp-right .komentarze-sekcja {
  margin: 0;
  background: var(--gp-card);
  border: 1px solid var(--gp-border);
  border-radius: 16px;
  padding: 22px 24px;
}
.project-page .gp-left .project-section + .project-section { margin-top: 18px; }
.project-page .gp-left .project-section h2,
.project-page .gp-right .komentarze-sekcja > h2 { font-size: 18px; margin: 0 0 14px; }
.project-page .gp-left .project-section p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text); }
.project-page .gp-left .installation-list { font-size: 14px; }
.project-page .gp-left .project-blok-img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

/* ciekawostka */
.gp-ciekawostka {
  margin-top: 16px;
  border: 1px solid rgba(139, 92, 246, .35);
  border-radius: 13px;
  padding: 16px 18px;
  background: linear-gradient(120deg, rgba(139, 92, 246, .12), transparent);
}
.gp-ciekawostka h4 { margin: 0 0 6px; color: var(--gp-accent2); font-size: 15px; }
.project-page .gp-ciekawostka p { margin: 0; font-size: 13px; color: var(--gp-muted); }

/* ---- Instrukcja instalacji: oś czasu kroków + panele sekcji ---- */
.inst-empty { margin: 0; color: var(--gp-muted); }
.inst-steps { display: grid; margin: 0; }
.inst-step { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding-bottom: 18px; }
.inst-step:last-child { padding-bottom: 0; }
.inst-step::before { content: ""; position: absolute; left: 16px; top: 36px; bottom: -2px; width: 2px; background: linear-gradient(var(--gp-border), transparent); }
.inst-step:last-child::before { display: none; }
.inst-num { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 14px; color: #fff; background: linear-gradient(135deg, var(--gp-accent), var(--gp-accent-strong)); box-shadow: 0 4px 12px var(--gp-glow); z-index: 1; }
.inst-body { padding-top: 5px; min-width: 0; }
.inst-body .t { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text); }
.inst-body .x { margin-top: 7px; display: grid; gap: 5px; }
.inst-body .x span { position: relative; display: block; font-size: 12.5px; line-height: 1.5; color: var(--gp-muted); padding-left: 14px; }
.inst-body .x span::before { content: ""; position: absolute; left: 2px; top: 8px; width: 4px; height: 4px; border-radius: 50%; background: var(--gp-dim); }
.inst-body code, .inst-list code { background: rgba(139, 92, 246, .14); color: var(--gp-accent2); border-radius: 6px; padding: 1px 6px; font-size: 12px; word-break: break-all; }

.inst-sec { margin-top: 14px; border: 1px solid var(--gp-border); border-radius: 13px; padding: 15px 17px; background: var(--gp-card); }
.inst-sec-h { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 14px; color: var(--text); }
.inst-sec-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; background: rgba(139, 92, 246, .16); }
.inst-sec-ic svg { width: 17px; height: 17px; fill: var(--gp-accent2); }
.inst-sec--safety { border-color: rgba(45, 189, 134, .32); background: linear-gradient(120deg, rgba(45, 189, 134, .09), transparent); }
.inst-sec--safety .inst-sec-ic { background: rgba(45, 189, 134, .18); }
.inst-sec--safety .inst-sec-ic svg { fill: #2dbd86; }
.inst-sec--req { border-color: rgba(139, 92, 246, .32); background: linear-gradient(120deg, rgba(139, 92, 246, .10), transparent); }
.inst-list { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.inst-list li { position: relative; padding-left: 20px; font-size: 13px; line-height: 1.55; color: var(--gp-muted); }
.inst-list li::before { content: ""; position: absolute; left: 5px; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--gp-accent2); }
.inst-sec--safety .inst-list li::before { background: #2dbd86; }
.inst-list li b { color: var(--text); font-weight: 700; }
.inst-list a { color: var(--gp-accent2); }

details.inst-sec { padding: 0; }
details.inst-sec > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 14px; color: var(--text); padding: 15px 17px; }
details.inst-sec > summary::-webkit-details-marker { display: none; }
.inst-chevron { margin-left: auto; transition: transform .2s ease; fill: var(--gp-muted); }
details.inst-sec[open] .inst-chevron { transform: rotate(180deg); }
details.inst-sec .inst-list { margin: 0; padding: 0 17px 16px; }

/* komentarze w prawej kolumnie — kasujemy boczny margines z projekt-extra.css,
   który rozpychał sekcję poza komórkę gridu */
.project-page .gp-right .komentarze-sekcja { margin: 0; }
.gp-right .km-form { background: transparent; border: 0; padding: 0; margin-bottom: 16px; }
.gp-right .km-lista { border-top: 1px solid var(--gp-border); padding-top: 16px; }

/* Serduszko pod komentarzem. projekt.html nie wczytuje komentarze.css
   (ma zduplikowane reguły w projekt-extra.css), więc styl musi być też tutaj. */
.km-like {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  padding: 2px 4px;
  font: inherit;
  font-size: 12px;
  color: var(--gp-muted);
  cursor: pointer;
  border-radius: 8px;
}
.km-like svg { width: 15px; height: 15px; fill: currentColor; transition: transform .12s ease; }
.km-like:hover { color: #e0506a; }
.km-like:hover svg { transform: scale(1.15); }
.km-like.is-on { color: #e0506a; }
.km-like[disabled] { opacity: .6; cursor: default; }

/* ==========================  DÓŁ  ======================================== */
.gp-foot { display: block; margin-top: 28px; }
.project-page .gp-foot .recommended { margin: 0; }
.gp-ocena:empty { display: none; }
.gp-ocena {
  margin-top: 22px;
  background: var(--gp-card);
  border: 1px solid var(--gp-border);
  border-radius: 16px;
  padding: 22px 24px;
}

/* ==========================  OKNO KONTAKT  =============================== */
.gp-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; }
.gp-modal[hidden] { display: none; }
.gp-modal-tlo { position: absolute; inset: 0; background: rgba(6, 4, 14, .72); backdrop-filter: blur(3px); }
.gp-modal-box {
  position: relative;
  width: min(520px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--gp-card);
  border: 1px solid var(--gp-border);
  border-radius: 20px;
  padding: 26px;
}
.gp-modal-box h2 { margin: 0 0 8px; font-size: 22px; }
.gp-modal-lead { margin: 0 0 18px; color: var(--gp-muted); font-size: 15px; }
.gp-modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--gp-border);
  background: transparent;
  color: var(--gp-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.gp-modal-x:hover { border-color: var(--gp-accent); color: var(--gp-accent); }
.gp-kontakt-lista { margin: 0; display: grid; gap: 14px; }
.gp-kontakt-lista > div { display: grid; gap: 3px; }
.gp-kontakt-lista dt { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--gp-dim); }
.gp-kontakt-lista dd { margin: 0; font-size: 15px; color: var(--text); }
.gp-kontakt-lista a { color: var(--gp-accent2); }
.gp-modal-uwaga { margin: 18px 0 0; font-size: 13px; color: var(--gp-muted); }

/* ==========================  RESPONSYWNOŚĆ  ============================== */
@media (max-width: 1120px) {
  .gp-hero { grid-template-columns: 280px minmax(0, 1fr); }
  .project-page .gp-status { grid-column: 1 / -1; }
  .gp-body { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .gp-hero { grid-template-columns: 1fr; }
  .gp-ibx, .gp-feats { grid-template-columns: 1fr 1fr; }
}
