/* Layout overrides only, loaded after style.css. Brand colors live in
   style.css's own :root — not redefined here, so the brand palette set
   there is the one that actually renders. Structural helper classes used
   by this site's unique hero (full-bleed background slide, content
   bottom-left) / games (decorative filter chips + stacked category
   sections) / payments-providers (plain static grid) layout. */

/* ---- hero.php: full-bleed background slide, content bottom-left ---- */
.hero-slide--full {
  align-items: flex-end;
  padding-bottom: 26px;
}

.hero-slide--full .hero-slide__image {
  width: 100%;
}

.hero-slide--full .hero-slide__content {
  max-width: 460px;
}

/* ---- header.php: compact quick-link row under the header, unique to
   this site's structure — additional to the side-panel rail. ---- */
.header__quicklinks {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px var(--edge-gap);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--color-border);
  scrollbar-width: none;
}

.header__quicklinks::-webkit-scrollbar {
  display: none;
}

.header__quicklink {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  min-height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.header__quicklink svg {
  width: 15px;
  height: 15px;
}

/* ---- payments-providers.php: plain static wrap grid ---- */
.providers-plain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.payments-plain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (min-width: 600px) {
  .providers-plain-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .payments-plain-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ---- footer.php: trust/payment info moved above the nav grid ---- */
.footer__trust--top {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
