*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #1c6bb8;
  --blue-dk: #0c3665;
  --blue-mid: #155baa;
  --blue-lt: #d8ecf9;
  --blue-xlt: #edf6fd;
  --red: #c8102e;
  --red-dk: #9e0c24;
  /* Heller Rot-Akzent für Text auf dunklen Flächen (Kontrast ≥3:1). */
  --red-lt: #ff4d6d;
  --gold: #f5c842;
  --gold-dk: #d4a010;
  /* Semantische Status-Farben (v. a. CMS): Erfolg/Warnung/Fehler. */
  --ok: #166534;
  --green: #2d7d46;
  --warn: #b45309;
  --amber: #b45309;
  --err: #b91c1c;
  --wine: #8e2244;
  --wine-lt: #b8395d;
  --wine-br: #d76c87; /* helleres Weinrot für dunkle Hintergründe (Lesbarkeit) */
  --white: #ffffff;
  --cream: #faf5eb;
  --cream-border: #e8dfc8;
  --text: #0c1e33;
  --text-md: #354c63;
  --text-sm: #637a8f;
  --border: #d0e4f2;
  --sh1: 0 2px 12px rgba(12, 54, 101, 0.09), 0 1px 4px rgba(12, 54, 101, 0.05);
  --sh2: 0 6px 28px rgba(12, 54, 101, 0.13), 0 2px 8px rgba(12, 54, 101, 0.06);
  --sh3:
    0 16px 52px rgba(12, 54, 101, 0.17),
    0 4px 16px rgba(12, 54, 101, 0.08);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --font-h: "Nunito", sans-serif;
  --font-b: "DM Sans", sans-serif;
  --max-w: 1280px;
}
html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-b);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: var(--font-b);
  cursor: pointer;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f0f6fc;
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

/* ══ HEADER ══ */
/* ── Highlight-Band (schlanke Kacheln über den Angeboten) ──
   Karussell-Ersatz: mehrere Highlights gleichzeitig sichtbar. Liegt im selben
   Creme-Fluss wie die Angebote (kein eigener Hintergrund) und ist bewusst
   kompakt + optisch leichter, damit die Angebote der zentrale Block bleiben.
   Symmetrische Abstände oben/unten. `--accent` je Kachel aus dem Symbol. */
.gq-highlight {
  padding: 44px 0;
}
.gq-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 14px;
}
.gq-highlight-card {
  --accent: #1c6bb8;
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--accent);
  box-shadow: 0 5px 18px rgba(12, 54, 101, 0.06);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.gq-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 54, 101, 0.13);
}
.gq-highlight-ic {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--accent);
  background: #eef3f8;
  background: color-mix(in srgb, var(--accent) 13%, #fff);
}
.gq-highlight-ic svg {
  width: 25px;
  height: 25px;
}
.gq-highlight-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.gq-highlight-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.2;
}
.gq-highlight-text {
  font-family: var(--font-b);
  font-size: 12.5px;
  color: var(--text-sm);
  line-height: 1.35;
}
.gq-highlight-cta {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .gq-highlight {
    padding: 30px 0;
  }
  .gq-highlight-card {
    flex-wrap: wrap;
  }
  .gq-highlight-cta {
    width: 100%;
    padding-left: 59px;
  }
}

.gq-header {
  background: linear-gradient(180deg, #0c1e33 0%, #0f2540 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(28, 107, 184, 0.3);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.gq-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--red) 0%,
    #ff4d6d 50%,
    var(--red) 100%
  );
}
.gq-header.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(28, 107, 184, 0.15);
}

/* ── Ankündigungs-Leiste (über dem Header) ──
   Schmaler, wegklickbarer Streifen für EINE aktuelle Botschaft. Liegt im
   normalen Fluss über dem sticky Header: scrollt oben weg, danach dockt der
   Header an. Marken-Rot mit dezentem Shine + pulsierendem Gold-Punkt. */
.gq-announce {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 46px 9px 18px;
  background: linear-gradient(
    90deg,
    var(--red-dk) 0%,
    var(--red) 35%,
    var(--red-lt) 50%,
    var(--red) 65%,
    var(--red-dk) 100%
  );
  background-size: 220% 100%;
  color: #fff;
  text-align: center;
  animation: gq-announce-shine 9s linear infinite;
}
@keyframes gq-announce-shine {
  to {
    background-position: 220% 0;
  }
}
.gq-announce-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: 100%;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.35;
}
.gq-announce-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.7);
  animation: gq-announce-pulse 2s ease-out infinite;
}
@keyframes gq-announce-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(245, 200, 66, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 200, 66, 0);
  }
}
.gq-announce-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s;
}
.gq-announce-link:hover .gq-announce-cta {
  background: rgba(255, 255, 255, 0.32);
}
.gq-announce-x {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.gq-announce-x:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (max-width: 640px) {
  .gq-announce {
    padding: 8px 38px 8px 12px;
    gap: 8px;
  }
  .gq-announce-link {
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 9px;
    font-size: 12.5px;
  }
  .gq-announce-cta {
    font-size: 12px;
    padding: 2px 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gq-announce,
  .gq-announce-dot {
    animation: none;
  }
}
.gq-hinner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.gq-logo-lnk {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.gq-logo {
  height: 44px;
  width: auto;
}
.gq-logo-kroni {
  height: 62px;
  width: auto;
  margin-right: -4px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s;
}
.gq-logo-lnk:hover .gq-logo-kroni {
  transform: rotate(-8deg) scale(1.05);
}
.gq-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}
.gq-navlnk {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.18s;
  white-space: nowrap;
  position: relative;
}
.gq-navlnk:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.gq-navlnk.active {
  color: #fff;
  background: rgba(28, 107, 184, 0.25);
}
.gq-navlnk.active::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
/* Jobs — hervorgehoben */
.gq-navlnk-jobs {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  color: #22c55e;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
  white-space: nowrap;
  transition: all 0.18s;
  margin-left: 4px;
}
.gq-navlnk-jobs:hover {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.6);
  color: #4ade80;
}
.gq-navlnk-jobs.active {
  background: rgba(34, 197, 94, 0.22);
  border-color: #22c55e;
}
.gq-hactions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
}
.gq-mktbtn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  padding: 9px 18px;
  border-radius: 40px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.gq-mktbtn:hover {
  background: var(--blue-mid);
  box-shadow: 0 4px 16px rgba(28, 107, 184, 0.35);
}
.gq-mkt-locpulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: locpulse 1.8s ease-in-out infinite;
}
@keyframes locpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
.gq-mktname {
  max-width: 148px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gq-mktdrop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh3);
  border: 1px solid var(--border);
  min-width: 320px;
  max-height: 420px;
  overflow-y: auto;
  z-index: 2000;
}
.gq-mktdrop-hdr {
  padding: 11px 16px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-sm);
  border-bottom: 1px solid var(--border);
}
.gq-mktopt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.14s;
  /* Button-Reset: Optionen sind <button> für Tastaturbedienung. */
  width: 100%;
  text-align: left;
  background: #fff;
  font: inherit;
}
.gq-mktopt:last-child {
  border-bottom: none;
}
.gq-mktopt:hover {
  background: var(--blue-xlt);
}
.gq-mktopt.sel {
  background: var(--blue-xlt);
}
.gq-mktopt-n {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}
.gq-mktopt-a {
  font-size: 11px;
  color: var(--text-sm);
}
.gq-mktchk {
  color: var(--blue);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 900;
}
.gq-srchbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--text-sm);
  transition: all 0.18s;
}
.gq-srchbtn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-xlt);
}
.gq-mtoggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .gq-nav {
    display: none;
  }
  .gq-mtoggle {
    display: flex !important;
  }
}
@media (max-width: 560px) {
  .gq-logo {
    height: 48px;
  }
  .gq-hinner {
    height: 66px;
    gap: 10px;
  }
  .gq-mktname {
    max-width: 80px;
  }
}

/* Slightly enlarge visual scale on all subpages (except home) */
body[class^="page-"]:not(.page-home) {
  /* increase relative font-size for rem-based elements */
  font-size: 1.04em;
}
body[class^="page-"]:not(.page-home) .gq-hero-h1 {
  font-size: clamp(52px, 7.5vw, 92px);
}
body[class^="page-"]:not(.page-home) .gq-hero-p {
  font-size: 18px;
}
.gq-mmenu {
  background: #0c1e33;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0 20px;
}
.gq-mmenu-lnk {
  display: block;
  padding: 13px 0;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.18s;
}
.gq-mmenu-lnk:hover {
  color: #fff;
}
.gq-msel {
  width: 100%;
  margin-top: 8px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%231c6bb8' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat right 14px center;
  appearance: none;
}

/* ══ BUTTONS ══ */
.gq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.gq-btn-pr {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.gq-btn-pr:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 107, 184, 0.32);
}
.gq-btn-wh {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.gq-btn-wh:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
}
.gq-btn-rd {
  background: linear-gradient(
    180deg,
    #e01734 0%,
    var(--red) 55%,
    var(--red-dk) 100%
  );
  color: #fff;
  border-color: transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 4px 14px rgba(200, 16, 46, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.gq-btn-rd:hover {
  background: linear-gradient(
    180deg,
    #f01e3e 0%,
    #d4112f 55%,
    var(--red-dk) 100%
  );
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(200, 16, 46, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.gq-btn-rd:active {
  transform: translateY(0);
  box-shadow:
    0 3px 10px rgba(200, 16, 46, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
/* Kräftigere, dunklere Rot-Variante (z. B. Schritte-CTA). */
.gq-btn-deep {
  background: linear-gradient(
    180deg,
    var(--red) 0%,
    var(--red-dk) 58%,
    #7c0a1d 100%
  );
  box-shadow:
    0 4px 14px rgba(124, 10, 29, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.gq-btn-deep:hover {
  background: linear-gradient(
    180deg,
    #d31533 0%,
    #9c0c23 58%,
    #74091b 100%
  );
  box-shadow:
    0 10px 28px rgba(124, 10, 29, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.gq-btn-ol {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.gq-btn-ol:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.gq-btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.gq-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}
.gq-btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}
.gq-btn-lg {
  padding: 14px 30px;
  font-size: 16px;
}

/* ══ HERO ══ */
.gq-hero {
  background: var(--blue-dk);
  /* Vertikal (180°): die Unterkante ist gleichmäßig #0c3665 und trifft damit
     exakt die solide Wellenfüllung darunter – keine Naht am Übergang. */
  background-image: linear-gradient(
    180deg,
    #0a2e56 0%,
    #0d3f75 55%,
    #0c3665 100%
  );
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.gq-hero-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 0 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.gq-hero-body {
  flex: 1;
  min-width: 0;
  padding-bottom: 44px;
}
.gq-hero-kicker {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #fff;
  margin-bottom: 16px;
}
.gq-hero-h1 {
  font-family: "Barlow Condensed", var(--font-h), sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 20px;
  text-wrap: balance;
}
.gq-hero-h1 .accent {
  color: var(--red-lt);
}
.gq-hero-p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.gq-hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gq-hero-markt {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  font-family: var(--font-h);
  font-weight: 600;
}
.gq-hero-markt svg {
  color: var(--red-lt);
  flex-shrink: 0;
}
.gq-hero-markt strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}
.gq-hero-right {
  flex-shrink: 0;
  width: 380px;
  align-self: flex-end;
  position: relative;
}
.gq-hero-right img {
  width: 100%;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.5));
  transform-origin: bottom center;
}
body[class^="page-"]:not(.page-home) .gq-hero-right {
  width: 220px;
}
@media (max-width: 900px) {
  .gq-hero-right {
    width: 240px;
  }
}
@media (max-width: 660px) {
  .gq-hero-right {
    display: none;
  }
  .gq-hero-body {
    padding-bottom: 40px;
  }
  .gq-hero-in {
    padding: 40px 0 0;
  }
}

/* ══ WAVE DIVIDER ══ */
.gq-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.gq-wave svg {
  display: block;
  width: 100%;
}

/* ══ SECTIONS ══ */
.gq-sec {
  padding: 80px 0;
}
.gq-sec-sm {
  padding: 52px 0;
}
@media (max-width: 768px) {
  .gq-sec {
    padding: 52px 0;
  }
  .gq-sec-sm {
    padding: 36px 0;
  }
}

/* ══ SECTIONS mit Holzmaserung ══ */
/* Basis: warmes Off-White — konsistent für alle hellen Sektionen */
:root {
  --bg-warm: #fefcf8;
  --bg-cream: #f9ede0;
}

.bg-white {
  background-color: #f6efe3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='560'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.006 0.34' numOctaves='4' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.42 0 0 0 0 0.26 0 0 0 0 0.08 0 0 0 0.32 0'/%3E%3C/filter%3E%3Crect width='1200' height='560' filter='url(%23w)'/%3E%3C/svg%3E");
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.bg-cream {
  background-color: #f1e6d0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='560'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.006 0.34' numOctaves='4' seed='8' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.38 0 0 0 0 0.22 0 0 0 0 0.05 0 0 0 0.32 0'/%3E%3C/filter%3E%3Crect width='1200' height='560' filter='url(%23w)'/%3E%3C/svg%3E");
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.bg-blue {
  background-color: #0c3665;
  background-image: none;
}
.bg-dark {
  background-color: #080c10;
  background-image:
    radial-gradient(
      ellipse 320px 320px at 8% 20%,
      rgba(200, 16, 46, 0.18),
      transparent 70%
    ),
    radial-gradient(
    ellipse 280px 280px at 92% 15%,
    rgba(184, 57, 93, 0.14),
    transparent 70%
  ),
    radial-gradient(
    ellipse 400px 300px at 50% 80%,
    rgba(28, 107, 184, 0.16),
    transparent 70%
  ),
    radial-gradient(
    ellipse 200px 200px at 78% 55%,
    rgba(200, 16, 46, 0.10),
    transparent 70%
  ),
    radial-gradient(
    ellipse 160px 160px at 22% 72%,
    rgba(184, 57, 93, 0.09),
    transparent 70%
  );
  position: relative;
  overflow: hidden;
}
/* Bokeh-Lichter */
.bg-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle 3px at 12% 18%,
      rgba(184, 57, 93, 0.7) 0%,
      transparent 100%
    ),
    radial-gradient(
    circle 2px at 28% 42%,
    rgba(255, 255, 255, 0.5) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 4px at 45% 12%,
    rgba(200, 16, 46, 0.8) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 2px at 63% 35%,
    rgba(184, 57, 93, 0.6) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 3px at 78% 22%,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 2px at 88% 48%,
    rgba(200, 16, 46, 0.7) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 5px at 18% 65%,
    rgba(28, 107, 184, 0.5) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 2px at 35% 78%,
    rgba(184, 57, 93, 0.6) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 3px at 55% 58%,
    rgba(255, 255, 255, 0.35) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 4px at 72% 75%,
    rgba(200, 16, 46, 0.6) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 2px at 90% 85%,
    rgba(184, 57, 93, 0.5) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 6px at 5% 88%,
    rgba(28, 107, 184, 0.4) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 3px at 40% 95%,
    rgba(200, 16, 46, 0.5) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 2px at 58% 88%,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 100%
  ),
    radial-gradient(
    circle 4px at 95% 30%,
    rgba(184, 57, 93, 0.55) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
/* Konfetti-Streifen */
.bg-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(184, 57, 93, 0.06) 1px, transparent 1px),
    linear-gradient(225deg, rgba(200, 16, 46, 0.05) 1px, transparent 1px),
    linear-gradient(45deg, rgba(28, 107, 184, 0.04) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 60px 60px;
  pointer-events: none;
  z-index: 0;
  animation: confettidrift 20s linear infinite;
}
@keyframes confettidrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 80px 80px, -120px 120px, 60px -60px;
  }
}
.bg-dark > * {
  position: relative;
  z-index: 1;
}

/* bg-blue-m = alias */
.bg-blue-m {
  background-color: var(--blue);
  background-image: linear-gradient(
    160deg,
    var(--blue-dk) 0%,
    var(--blue) 100%
  );
}

/* ══ ANGEBOTE (PROSPEKT STYLE) ══
   Edles Anthrazit statt Signalrot – wird überall verwendet, wo der
   Prospekt-Kasten auftaucht (Startseite + /angebote). */
:root {
  --slate: #343b46;
  --slate-dk: #272d36;
}
.gq-prospekt-header {
  background: linear-gradient(180deg, var(--slate) 0%, var(--slate-dk) 100%);
  color: #fff;
  padding: 18px 28px;
  border-radius: var(--r) var(--r) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  /* feine Goldkante als edler Akzent */
  border-bottom: 2px solid var(--wine-lt);
}
.gq-prospekt-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.02em;
}
.gq-prospekt-validity {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 14px;
  border-radius: 40px;
}
.gq-prospekt-body {
  background: rgba(251, 244, 233, 0.55);
  border-radius: 0 0 var(--r) var(--r);
  border: 2px solid var(--slate-dk);
  border-top: none;
  padding: 18px 24px 24px;
}
.gq-prospekt-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}
.gq-sec-cta {
  text-align: center;
  margin-top: 28px;
}

/* Markt-Hinweisbanner über dem Angebots-Grid */
.gq-mktnote {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--r);
  padding: 10px 16px;
  margin-bottom: 18px;
  font-family: var(--font-h);
}
.gq-mktnote--set {
  background: linear-gradient(90deg, #eef6ff 0%, #f0f9ff 100%);
  border: 1.5px solid #bfdbfe;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e3a5f;
}
.gq-mktnote--empty {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sm);
}
.gq-mktnote a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.gq-mktnote-name {
  color: var(--blue-dk);
}
.gq-mktnote-switch {
  margin-left: auto;
  font-size: 12px;
  white-space: nowrap;
}

/* Ergebniszeile (Anzahl + Preishinweis) */
.gq-count-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.gq-count-ttl {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
}
.gq-count-cat {
  color: var(--text-sm);
  font-weight: 600;
}
.gq-count-note {
  font-size: 12.5px;
  color: var(--text-sm);
}

/* ══ OFFER CARDS (e-commerce style) ══ */
/* Responsive auto-fill: 4 cols on wide screens, scaling down gracefully —
   ideal when a whole prospekt (~30 offers) is shown at once. */
.gq-ogrid-real {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
@media (max-width: 640px) {
  .gq-ogrid-real {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
}
.gq-ocard-real {
  position: relative;
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--sh1);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s,
    border-color 0.3s;
}
.gq-ocard-real:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3);
  border-color: var(--blue-lt);
}

/* category tag (top-left) */
.gq-ocard-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(237, 246, 253, 0.92);
  border: 1px solid var(--blue-lt);
  padding: 4px 9px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}

/* savings badge (top-right ribbon) */
.gq-ocard-save {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  padding: 5px 9px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.32);
  white-space: nowrap;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Reinweiß, ohne Verlauf, Regal-Schatten oder Drop-Shadow: Die Produktfotos
   aus den Aktions-CSVs sind JPEGs mit weißem Hintergrund – jede Tönung oder
   ein Rechteck-Schatten hebt sie als harte Kästen ab. Auf Weiß gehen sie
   nahtlos in die Karte über. */
.gq-ocard-real-img {
  position: relative;
  overflow: hidden;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px 12px;
  background: #fff;
}
.gq-ocard-real-img img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gq-ocard-real:hover .gq-ocard-real-img img {
  transform: scale(1.06) translateY(-2px);
}

/* body */
.gq-ocard-body {
  padding: 14px 16px 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.gq-ocard-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}
.gq-ocard-sub {
  font-size: 12px;
  color: var(--text-md);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gq-ocard-size {
  font-size: 11.5px;
  color: var(--text-sm);
}

/* price row */
.gq-ocard-price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.gq-ocard-price {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 23px;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.02em;
}
.gq-ocard-orig {
  font-size: 13px;
  color: var(--text-sm);
  text-decoration: line-through;
  text-decoration-color: rgba(99, 122, 143, 0.6);
}

.gq-ocard-real-foot {
  margin-top: 10px;
  padding: 11px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  background: #fbfdff;
}
.gq-ocard-real-pfand {
  font-size: 11px;
  color: var(--text-sm);
}
.gq-ocard-cart {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  background: var(--blue-xlt);
  color: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.gq-ocard-cart:hover {
  background: var(--blue);
  color: #fff;
  transform: scale(1.08);
}
/* Gemerkt: rotes, gefülltes Herz. */
.gq-ocard-cart.on {
  background: var(--red);
  color: #fff;
}
.gq-ocard-cart.on:hover {
  background: var(--red-dk);
}
/* "Gemerkt"-Filterchip in der Chip-Leiste. */
.gq-chip-merk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.gq-chip-merk:not(.on) svg {
  color: var(--red);
}
.gq-chip-merk.on {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.gq-chip-merk.on .gq-chip-ct {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ══ MARKT BAND ══ */
.gq-mktband {
  border-radius: var(--r-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  position: relative;
}
.gq-mktband--glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.gq-mktband-body {
  flex: 1;
  position: relative;
  z-index: 1;
}
.gq-mktband-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.gq-mktband-meta-row {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.gq-mktband-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
}
.gq-mktband-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
/* Markt-Besonderheiten (nur W&S) im „Dein Markt"-Band – heller Chip-Stil. */
.gq-mktband-feats {
  margin: 0 0 22px;
}
.gq-mktband-feats-ttl {
  display: block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 9px;
}
.gq-mktband-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gq-mktband-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}
.gq-mktband-chip svg {
  color: #6ee7a0;
  flex-shrink: 0;
}
.gq-mktband-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gq-mktband-sel {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: none;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%231c6bb8' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat right 14px center;
  appearance: none;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}
.gq-mktband-kroni {
  width: 200px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.gq-mktband-kroni img {
  width: 100%;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
}
@media (max-width: 768px) {
  .gq-mktband {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
    border-radius: var(--r);
  }
  .gq-mktband-row {
    justify-content: center;
  }
  .gq-mktband-kroni {
    display: none;
  }
}

/* ══ WOHLFÜHL CARDS (Sortiment/Gutscheine/Jobs) ══ */
.gq-wcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .gq-wcard-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .gq-wcard-grid {
    grid-template-columns: 1fr;
  }
}
.gq-wcard {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  cursor: pointer;
}
.gq-wcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh2);
  border-color: var(--blue-lt);
}
.gq-wcard-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}
.gq-wcard-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.gq-wcard-dsc {
  font-size: 14.5px;
  color: var(--text-md);
  flex: 1;
  line-height: 1.65;
}

/* ══ FEATURE STRIP (Partyplaner etc.) ══ */
.gq-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .gq-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.gq-feature-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gq-feature-img img {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.4));
}
@media (max-width: 560px) {
  /* Im 1-spaltigen CTA das Maskottchen kleiner halten, damit Text + Button
     im sichtbaren Bereich bleiben (payback, service). */
  .gq-feature-img img {
    max-width: 200px;
  }
}

/* Sortiment: Kategorie-Grid + CTA-Buttons (responsiv). */
.gq-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.gq-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .gq-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 36px;
  }
  .gq-cta-actions {
    flex-direction: column;
  }
  .gq-cta-actions .gq-btn {
    width: 100%;
  }
}

/* ══ SO EINFACH GEHT'S – 3-Schritte-Ablauf (Home) ══ */
/* Karte hebt die 3 Schritte klar von der Holz-/Creme-Textur ab. */
.gq-steps-card {
  max-width: 1040px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh2);
  padding: 48px 48px 44px;
}
.gq-steps-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.gq-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gq-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
/* gestrichelte Verbindungslinie hinter den Icon-Kreisen */
.gq-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  left: 50%;
  width: calc(100% + 24px);
  height: 3px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    var(--blue-lt) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.gq-step-ic {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-dk) 0%, var(--blue) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh2);
  margin-bottom: 22px;
}
.gq-step-ic svg {
  width: 34px;
  height: 34px;
}
.gq-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: var(--text);
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(12, 54, 101, 0.2);
}
.gq-step-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 7px;
}
.gq-step-dsc {
  font-size: 14.5px;
  color: var(--text-md);
  line-height: 1.6;
  max-width: 240px;
}
@media (max-width: 720px) {
  .gq-steps-card {
    padding: 32px 20px 30px;
  }
  .gq-steps {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 340px;
    margin: 0 auto;
  }
  .gq-step:not(:last-child)::after {
    display: none;
  }
}

/* ══ INFO CARDS ══ */
.gq-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 660px) {
  .gq-info-grid {
    grid-template-columns: 1fr;
  }
}
.gq-info-card {
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.gq-info-card-white {
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh1);
}
.gq-info-card-blue {
  background: var(--blue-xlt);
  border: 1.5px solid var(--blue-lt);
}
.gq-info-card-img {
  width: 140px;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}
.gq-info-card-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}
.gq-info-card-dsc {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ══ DARK SERVICE GRID ══ */
.gq-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .gq-dark-grid {
    grid-template-columns: 1fr;
  }
}
.gq-dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 24px;
  transition: background 0.2s, transform 0.2s;
}
.gq-dark-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.gq-dark-card-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
}
.gq-dark-card-dsc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}
.gq-feature-p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.gq-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ══ PAYBACK ══ */
.gq-payback {
  border-radius: var(--r-lg);
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-left: 5px solid var(--wine-lt);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gq-payback-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.gq-payback-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 4px;
}
.gq-payback-sub {
  font-size: 14px;
  color: var(--text-md);
}

/* ══ FILTER CHIPS ══ */
.gq-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gq-chip {
  padding: 8px 18px;
  border-radius: 40px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-md);
  transition: all 0.18s;
  white-space: nowrap;
}
.gq-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.gq-chip.on {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(28, 107, 184, 0.28);
}
.gq-chip-ct {
  display: inline-block;
  margin-left: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 800;
}
.gq-chip:not(.on) .gq-chip-ct {
  background: var(--blue-lt);
  color: var(--blue);
}

/* ══ SUCHLEISTE (Angebote) ══ */
.gq-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.gq-search-ic {
  position: absolute;
  left: 16px;
  width: 19px;
  height: 19px;
  color: var(--text-sm);
  pointer-events: none;
}
.gq-search-input {
  width: 100%;
  padding: 13px 46px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  background: #fff;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.gq-search-input::placeholder {
  color: var(--text-sm);
}
.gq-search-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28, 107, 184, 0.15);
}
/* Native Browser-Such-X ausblenden – wir nutzen einen eigenen Clear-Button. */
.gq-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.gq-search-clear {
  position: absolute;
  right: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--blue-xlt);
  color: var(--blue);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.gq-search-clear:hover {
  background: var(--blue);
  color: #fff;
}
@media (max-width: 640px) {
  .gq-search-input {
    /* 16px verhindert das automatische Zoomen von iOS beim Fokus. */
    font-size: 16px;
    padding: 12px 44px;
  }
}

/* ══ ANGEBOTE PAGE ══ */
.gq-apghero {
  background: var(--blue-dk);
  /* Horizontaler Verlauf (nicht diagonal): so trifft die Hero-Unterkante exakt
     auf den – ebenfalls horizontalen – Verlauf der Wellenform darunter. Sonst
     entsteht an der Naht eine sichtbare Stufe. Stops identisch zur Welle. */
  background-image: linear-gradient(
    90deg,
    #0a2e56 0%,
    var(--blue-dk) 50%,
    #1558a0 100%
  );
  padding: 44px 0 56px;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.gq-apghero-in {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  /* Einheitliche Hero-Höhe über alle Unterseiten (Referenz: Märkte). Kurze
     Heroes (z. B. Jobs) werden auf dieses Maß angehoben → konsistentes Bild. */
  min-height: 248px;
}
.gq-apghero-eyebrow {
  font-family: var(--font-h);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}
.gq-apghero-h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 52px);
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.gq-apghero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 40px;
  padding: 6px 16px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}
/* Sekundäre Hero-Pill-Reihe (unter dem Titel) – Frosted-Glass + Marken-Punkt. */
.gq-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.gq-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.gq-hero-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine-lt);
  box-shadow: 0 0 0 3px rgba(184, 57, 93, 0.25);
  flex-shrink: 0;
}
.gq-hero-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}
.gq-apghero-kroni {
  flex-shrink: 0;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}
.gq-apghero-kroni img {
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: -60px;
}
@media (max-width: 560px) {
  .gq-apghero-kroni {
    display: none;
  }
  .gq-apghero-in {
    padding-bottom: 36px;
  }
}

/* ══ FOOTER ══ */
.gq-footer {
  background: var(--blue-dk);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 28px;
  /* Tiefes Weinrot als Markenakzent – bewusst dunkler/satter als das helle
     Rot der Header-Leiste, damit sich oben und unten klar unterscheiden. */
  border-top: 4px solid var(--wine);
}
.gq-fbrand-txt {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.6);
}
.gq-fsocial {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.gq-fclaim {
  margin-top: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--wine);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}
.gq-fclaim-lead {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--wine-br);
  margin-bottom: 2px;
}
.gq-footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s;
  font-size: 14px;
}
.gq-footer a:hover {
  color: #fff;
}
.gq-fgrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .gq-fgrid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 520px) {
  .gq-fgrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.gq-fcol-ttl {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.36);
  margin-bottom: 16px;
}
.gq-flinks {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.gq-fbottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-h);
}
.gq-fbottom-claim {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.gq-flogo {
  height: 42px;
  width: auto;
}
.gq-fsn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none !important;
  transition: all 0.18s;
}
.gq-fsn:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

/* ══ TYPOGRAPHY HELPERS ══ */
.sec-title-light {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  text-wrap: balance;
}
.sec-title-dark {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  text-wrap: balance;
}
.sec-sub-light {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  line-height: 1.7;
}
.sec-sub-dark {
  font-size: 16px;
  color: var(--text-md);
  margin-top: 10px;
  line-height: 1.7;
}
.gq-eyebrow-red {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 13px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.gq-eyebrow-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--text);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 13px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.gq-eyebrow-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 13px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.sec-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* ══ ANIMIERTE BLASEN ══ */
@keyframes bubbleUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  80% {
    opacity: 0.25;
  }
  100% {
    transform: translateY(-110vh) scale(1.15);
    opacity: 0;
  }
}
@keyframes bubbleSway {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: 18px;
  }
}
.gq-bubble-zone {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.gq-bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation:
    bubbleUp var(--dur, 5s) ease-in var(--delay, 0s) infinite,
    bubbleSway calc(var(--dur, 5s) * 0.7) ease-in-out var(--delay, 0s) infinite;
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.gq-float {
  animation: floatY 5s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Job-Beschreibung HTML-Styles */
.gq-job-desc p {
  margin-bottom: 10px;
}
.gq-job-desc ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.gq-job-desc li {
  margin-bottom: 4px;
}
.gq-job-desc br {
  display: none;
}

/* ══ MÄRKTE SEITE ══ */
.mkt-section {
  padding: 32px 0 60px;
}
.mkt-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
.mkt-map-col {
  position: sticky;
  top: 82px;
}
.mkt-map-canvas {
  width: 100%;
  height: calc(100vh - 170px);
  min-height: 500px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh2);
  overflow: hidden;
}
.mkt-map-attr {
  text-align: center;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-sm);
}
.mkt-map-attr a {
  color: var(--blue);
}

/* Toolbar */
.mkt-list-col {
  width: 100%;
}
.mkt-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 8px;
}
.mkt-search {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d0e4f2;
  border-radius: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0c1e33;
  background: #fff;
  outline: none;
  box-sizing: border-box;
}
.mkt-locbtn {
  white-space: nowrap;
  padding: 0 16px;
  height: 42px;
  border: 1.5px solid #d0e4f2;
  border-radius: 10px;
  background: #fff;
  color: #1c6bb8;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.mkt-locbtn--on {
  background: #1c6bb8;
  color: #fff;
  border-color: #1c6bb8;
}
.mkt-count {
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #637a8f;
  margin-bottom: 8px;
}

/* Scroll container */
.mkt-scroll {
  max-height: calc(100vh - 290px);
  overflow-y: auto;
  padding-right: 2px;
}

/* Individual item */
.mkt-item {
  display: block;
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 6px;
  background: #fff;
  border: 1.5px solid #d0e4f2;
  border-radius: 10px;
  cursor: pointer;
  box-sizing: border-box;
}
.mkt-item--active {
  background: #edf6fd;
  border-color: #1c6bb8;
}
.mkt-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 2px 0;
}
.mkt-item-name {
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #0c1e33;
  margin: 0;
}
.mkt-item-dist {
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1c6bb8;
  white-space: nowrap;
  flex-shrink: 0;
}
.mkt-item-addr {
  font-size: 11px;
  color: #637a8f;
  margin: 0 0 2px 0;
}
.mkt-item-tel {
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1c6bb8;
  margin: 0 0 2px 0;
}
.mkt-item-hours {
  font-size: 11px;
  color: #354c63;
  margin: 6px 0 8px 0;
  padding-top: 6px;
  border-top: 1px solid #d0e4f2;
}
.mkt-item-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}
.mkt-item-detail,
.mkt-item-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 6px;
  text-align: center;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  border-radius: 8px;
  box-sizing: border-box;
  line-height: 1.2;
}
.mkt-item-cta {
  background: #1c6bb8;
  color: #fff;
}
.mkt-item-detail {
  background: #fff;
  color: #1c6bb8;
  border: 1.5px solid #1c6bb8;
}
/* Markt-Besonderheiten (nur W&S): Chip-Liste im aufgeklappten Eintrag. */
.mkt-item-feats {
  margin: 8px 0 10px;
  padding-top: 8px;
  border-top: 1px solid #d0e4f2;
}
.mkt-item-feats-ttl {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #637a8f;
  margin-bottom: 7px;
}
.mkt-feat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.mkt-feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  background: #fff;
  border: 1px solid #cfe4f5;
  border-radius: 40px;
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #155baa;
  line-height: 1.4;
}
.mkt-feat-chip svg {
  color: #2d9b57;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   FEATURED TILES  (gq-feat-*)
══════════════════════════════════════════════════ */
.gq-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
/* Kompakter Leerzustand statt 8 Platzhalter-Kacheln. */
.gq-feat-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 36px 24px;
  border: 1.5px dashed var(--blue-lt);
  border-radius: var(--r-lg);
  background: var(--blue-xlt);
  color: var(--text-md);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 15px;
}
/* Featured-Kachel = kompakte Angebots-Karte (Bild + Name + Preis + Pfand),
   im Stil der /angebote-Karten, aber dichter fürs 4×2-Raster. */
.gq-feat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh1);
  text-decoration: none;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s,
    border-color 0.3s;
}
.gq-feat-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh3);
  border-color: var(--blue-lt);
}
.gq-feat-tile-cat {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(237, 246, 253, 0.92);
  border: 1px solid var(--blue-lt);
  padding: 3px 7px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}
.gq-feat-tile-img {
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Weiß wie die Produktfotos, damit Letterboxing nahtlos verschmilzt. */
  padding: 14px 14px 4px;
  background: #fff;
}
.gq-feat-tile-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gq-feat-tile:hover .gq-feat-tile-img img {
  transform: scale(1.06) translateY(-2px);
}
.gq-feat-tile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 13px 13px;
}
.gq-feat-tile-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 13.5px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.44em;
}
.gq-feat-tile-size {
  font-size: 10.5px;
  color: var(--text-sm);
  line-height: 1.3;
}
.gq-feat-tile-price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  /* Preis nach unten ausrichten, damit Preise über die Reihe fluchten. */
  margin-top: auto;
  padding-top: 6px;
}
.gq-feat-tile-price {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--red);
}
.gq-feat-tile-orig {
  font-size: 12px;
  color: var(--text-sm);
  text-decoration: line-through;
  text-decoration-color: rgba(99, 122, 143, 0.6);
}
.gq-feat-tile-meta {
  font-size: 10px;
  color: var(--text-sm);
  margin-top: 3px;
}
.gq-feat-tile-empty {
  align-items: center;
  justify-content: center;
  min-height: 232px;
  background: #f6f9fc;
  border-style: dashed;
  color: #aaa;
}
.gq-feat-tile-empty:hover {
  transform: none;
  box-shadow: var(--sh1);
  border-color: var(--border);
}
@media (max-width: 900px) {
  .gq-feat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .gq-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE POLISH
══════════════════════════════════════════════════ */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
main {
  width: 100%;
  min-width: 0;
}
a,
button,
input,
select,
textarea {
  max-width: 100%;
}
/* Nummerierte Streifen statt Karten-Stack: volle Breite, Gold-Akzent beim
   Hover, große Outline-Ziffern als grafisches Element. */
.gq-home-link-stack {
  display: flex;
  flex-direction: column;
}
.gq-home-link-card {
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px 8px;
  text-decoration: none;
  transition: background 0.2s, padding-left 0.25s ease;
}
.gq-home-link-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.gq-home-link-card:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-left: 24px;
}
.gq-home-link-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  min-width: 66px;
  flex-shrink: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(215, 108, 135, 0.8);
  transition: color 0.2s, -webkit-text-stroke-color 0.2s;
}
.gq-home-link-card:hover .gq-home-link-num {
  color: var(--wine-br);
  -webkit-text-stroke-color: var(--wine-br);
}
.gq-home-link-body {
  flex: 1;
  min-width: 0;
}
.gq-home-link-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.gq-home-link-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 560px;
}
.gq-home-link-cta {
  flex-shrink: 0;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: color 0.2s, transform 0.25s ease;
}
.gq-home-link-card:hover .gq-home-link-cta {
  color: var(--wine-br);
  transform: translateX(4px);
}
.gq-jobs-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gq-mmenu-hero,
.gq-mmenu-actions {
  display: none;
}

@keyframes menuRise {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes menuFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .gq-hinner {
    gap: 14px;
  }
  /* Mehr Einträge in der Nav → enger setzen, damit alles in einer Zeile bleibt. */
  .gq-nav {
    gap: 0;
  }
  .gq-navlnk {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13.5px;
  }
  .gq-navlnk-jobs {
    padding-left: 11px;
    padding-right: 11px;
  }
}

@media (max-width: 1024px) {
  .gq-header {
    background:
      linear-gradient(90deg, rgba(200, 16, 46, 0.22), transparent 32%),
      linear-gradient(180deg, rgba(12, 30, 51, 0.98), rgba(10, 38, 68, 0.98));
  }
  .gq-hinner {
    justify-content: space-between;
  }
  .gq-mtoggle {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.18s, color 0.18s, transform 0.18s;
  }
  .gq-mtoggle.is-open {
    background: #fff;
    color: var(--blue-dk);
    transform: rotate(2deg);
  }
  /* Vollbild-Overlay: deckt Ankündigung, Header und Seite ab. */
  .gq-mmenu {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background:
      radial-gradient(
        130% 80% at 100% 0%,
        rgba(28, 107, 184, 0.32),
        transparent 58%
      ),
      linear-gradient(180deg, #071827 0%, #0a2238 55%, #061320 100%);
    border: none;
    border-radius: 0;
    box-shadow: none;
    animation: menuFade 0.2s ease;
  }
  .gq-mmenu-top {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(14px + env(safe-area-inset-top)) 18px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .gq-mmenu-logo {
    display: flex;
    align-items: center;
  }
  .gq-mmenu-logo img {
    height: 42px;
    width: auto;
    display: block;
  }
  .gq-mmenu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s;
  }
  .gq-mmenu-close:hover {
    background: rgba(255, 255, 255, 0.16);
  }
  .gq-mmenu-close:active {
    transform: scale(0.94);
  }
  .gq-mmenu-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 18px calc(28px + env(safe-area-inset-bottom));
  }
  .gq-mmenu-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 136px;
    overflow: hidden;
    padding: 18px 136px 18px 18px;
    border-radius: 18px;
    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.10),
        rgba(255, 255, 255, 0.03)
      ),
      linear-gradient(160deg, rgba(21, 91, 170, 0.88), rgba(130, 18, 48, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.13);
  }
  .gq-mmenu-hero-copy {
    position: relative;
    z-index: 1;
  }
  .gq-mmenu-hero-copy span {
    display: inline-block;
    margin-bottom: 6px;
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
  }
  .gq-mmenu-hero-copy strong {
    display: block;
    max-width: 210px;
    color: #fff;
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.08;
  }
  .gq-mmenu-hero-copy p {
    max-width: 210px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
  }
  .gq-mmenu-kroni {
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 142px;
    max-width: 42%;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
    transform: rotate(4deg);
  }
  .gq-mmenu-actions {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gq-mmenu-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 14px;
    background: #fff;
    color: var(--blue-dk);
    text-decoration: none;
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  }
  .gq-mmenu-action-red {
    background: var(--red);
    color: #fff;
  }
  .gq-mmenu-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .gq-mmenu-lnk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 14px 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  .gq-mmenu-lnk.active {
    color: #fff;
    background: rgba(28, 107, 184, 0.52);
    border-color: rgba(216, 236, 249, 0.42);
  }
  .gq-mmenu-lnk-jobs,
  .gq-mmenu-lnk-jobs.active {
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.16);
  }
  .gq-hero-in,
  .gq-apghero-in {
    gap: 24px;
  }
  .gq-hero-right {
    width: min(32vw, 300px);
  }
  .gq-apghero-kroni img {
    max-height: 210px;
  }
  .mkt-layout {
    grid-template-columns: 1fr;
  }
  .mkt-map-col {
    position: static;
    order: -1;
  }
  .mkt-map-canvas {
    height: 420px;
    min-height: 360px;
  }
  .mkt-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --r-lg: 18px;
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .gq-header {
    position: sticky;
  }
  .gq-logo {
    height: 40px;
  }
  .gq-mktbtn {
    padding: 8px 12px;
    font-size: 13px;
  }
  .gq-mktdrop {
    right: 0;
    min-width: min(340px, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    max-height: min(420px, calc(100vh - 96px));
  }
  .gq-hero-in {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 44px;
    min-height: 460px;
  }
  .gq-hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 42px;
  }
  .gq-hero-h1,
  body[class^="page-"]:not(.page-home) .gq-hero-h1 {
    font-size: clamp(36px, 12vw, 58px);
    letter-spacing: 0;
  }
  .gq-hero-p,
  body[class^="page-"]:not(.page-home) .gq-hero-p {
    font-size: 16px;
    margin-bottom: 26px;
  }
  .gq-hero-ctas {
    align-items: stretch;
  }
  .gq-hero-ctas .gq-btn,
  .gq-mktband-row .gq-btn,
  .gq-payback .gq-btn {
    width: 100%;
  }
  .gq-btn-lg {
    padding: 13px 20px;
    font-size: 15px;
  }
  .gq-prospekt-header {
    padding: 16px 18px;
    align-items: flex-start;
  }
  .gq-prospekt-body {
    padding: 16px;
  }
  .gq-ogrid-real {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .gq-ocard-real-img {
    height: 150px;
    padding: 16px 12px 10px;
  }
  .gq-ocard-body {
    padding: 12px 12px 4px;
  }
  .gq-ocard-real-foot {
    padding: 10px 12px;
  }
  .gq-apghero {
    padding: 34px 0 42px;
    overflow: hidden;
  }
  .gq-apghero-in {
    position: relative;
    flex-direction: column;
    min-height: 220px;
  }
  .gq-apghero-kroni {
    display: block;
    position: absolute;
    right: -18px;
    bottom: -52px;
    z-index: 0;
    width: 158px;
    opacity: 0.2;
    pointer-events: none;
    transform: rotate(-6deg);
  }
  .gq-apghero-kroni img {
    width: 100% !important;
    height: auto !important;
    max-height: none;
  }
  .gq-apghero-in > div:first-child {
    position: relative;
    z-index: 1;
  }
  .gq-info-card {
    align-items: flex-start;
    padding: 24px;
  }
  .gq-payback {
    align-items: flex-start;
    padding: 24px;
  }
  .gq-jobs-filter-grid {
    grid-template-columns: 1fr;
  }
  .gq-home-link-card {
    align-items: flex-start;
    gap: 14px;
    padding: 20px 4px;
  }
  .gq-home-link-card:hover {
    padding-left: 4px;
  }
  .gq-home-link-num {
    font-size: 34px;
    min-width: 46px;
  }
  .gq-home-link-title {
    font-size: 19px;
  }
  .gq-home-link-cta {
    display: none;
  }
  .mkt-section {
    padding: 24px 0 44px;
  }
  .mkt-map-canvas {
    height: 360px;
    min-height: 320px;
    border-radius: var(--r);
  }
}

@media (max-width: 640px) {
  .gq-hinner {
    height: 64px;
    gap: 8px;
  }
  .gq-logo {
    height: 36px;
  }
  .gq-mktname {
    max-width: 92px;
  }
  .gq-mktbtn {
    gap: 5px;
    padding: 8px 10px;
  }
  .gq-mmenu {
    inset: 0;
    padding: 0;
    border-radius: 0;
  }
  .gq-mmenu-hero {
    min-height: 124px;
    padding: 16px 112px 16px 16px;
  }
  .gq-mmenu-hero-copy strong {
    font-size: 20px;
  }
  .gq-mmenu-kroni {
    width: 122px;
  }
  .gq-sec {
    padding: 44px 0;
  }
  .gq-sec-sm {
    padding: 32px 0;
  }
  .gq-btn {
    min-height: 44px;
    white-space: normal;
    text-align: center;
  }
  .gq-job-row-btn {
    flex-wrap: wrap;
  }
  .gq-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .gq-chips::-webkit-scrollbar {
    display: none;
  }
  .gq-chip {
    flex: 0 0 auto;
    padding: 10px 16px;
  }
  .gq-wcard {
    padding: 22px;
  }
  .gq-ocard-real,
  .gq-info-card,
  .gq-home-link-card {
    box-shadow:
      0 10px 28px rgba(12, 54, 101, 0.14),
      0 1px 0 rgba(255, 255, 255, 0.7) inset;
  }
  .gq-feat-tile {
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(12, 54, 101, 0.14);
  }
  .gq-hero-right {
    display: block;
    position: absolute;
    right: -30px;
    bottom: -4px;
    z-index: 0;
    width: min(58vw, 230px);
    opacity: 0.28;
    pointer-events: none;
  }
  .gq-hero-right img {
    filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.48));
  }
  .gq-mktband {
    align-items: flex-start;
    padding: 28px 20px 116px;
    text-align: left;
  }
  .gq-mktband-body {
    width: 100%;
  }
  .gq-mktband-row {
    justify-content: flex-start;
  }
  .gq-mktband-kroni {
    display: block;
    position: absolute;
    right: -6px;
    bottom: -14px;
    width: 120px;
    opacity: 0.34;
    pointer-events: none;
  }
  .gq-info-card {
    display: block;
  }
  .gq-info-card-img {
    width: 96px;
    margin-bottom: 14px;
  }
  .gq-footer {
    padding-top: 44px;
  }
  .gq-fbottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .mkt-toolbar {
    grid-template-columns: 1fr;
  }
  .mkt-locbtn {
    width: 100%;
    min-height: 44px;
  }
  /* 16px verhindert iOS-Auto-Zoom beim Fokus; größere Tap-Höhe. */
  .mkt-search {
    font-size: 16px;
    padding: 12px 14px;
  }
}

@media (max-width: 460px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .gq-mktbtn svg:last-child,
  .gq-mktbtn .gq-mkt-locpulse {
    display: none;
  }
  .gq-mktname {
    max-width: 78px;
  }
  .gq-mtoggle {
    width: 36px;
  }
  .gq-mmenu-actions {
    grid-template-columns: 1fr;
  }
  .gq-mmenu-hero {
    padding-right: 96px;
  }
  .gq-mmenu-kroni {
    right: -8px;
    width: 108px;
  }
  .gq-hero-h1,
  body[class^="page-"]:not(.page-home) .gq-hero-h1,
  .gq-apghero-h1 {
    font-size: clamp(32px, 11vw, 44px);
  }
  .gq-hero-kicker,
  .gq-eyebrow-white,
  .gq-eyebrow-red,
  .gq-eyebrow-gold {
    letter-spacing: 0.07em;
  }
  .gq-prospekt-header {
    border-radius: 12px 12px 0 0;
  }
  .gq-prospekt-body {
    border-radius: 0 0 12px 12px;
    padding: 12px;
  }
  /* 2-Spalten-Angebotsraster (aus dem 640px-Block) bewusst beibehalten –
     halbiert die Seitenlänge und macht die Deals scanbar. */
  .gq-hero-in {
    min-height: 430px;
  }
  .gq-hero-right {
    right: -46px;
    width: min(64vw, 210px);
    opacity: 0.22;
  }
  .gq-apghero-kroni {
    right: -42px;
    width: 146px;
    opacity: 0.17;
  }
  .gq-home-link-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    align-items: center;
  }
  .gq-home-link-body {
    grid-column: 2;
  }
  .mkt-map-canvas {
    height: 300px;
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gq-mmenu {
    animation: none;
  }
}

/* ══════════════════════════════════════════════════
   ADMIN PANEL  (gq-adm-*)
══════════════════════════════════════════════════ */

/* Hide site header/footer on admin pages */
body.page-admin .gq-announce,
body.page-admin .gq-header,
body.page-admin .gq-footer {
  display: none;
}
body.page-admin main {
  padding: 0;
}

/* Shell: sidebar + main */
.gq-adm-shell {
  display: flex;
  min-height: 100vh;
  background: #f1f5f9;
}

/* Sidebar */
.gq-adm-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #0c1e33;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.gq-adm-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gq-adm-sidebar-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.01em;
}
.gq-adm-sidebar-tag {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--wine-lt);
  padding: 2px 7px;
  border-radius: 4px;
}
.gq-adm-nav {
  flex: 1;
  padding: 12px 0;
}
.gq-adm-nav-section {
  padding: 14px 20px 5px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}
.gq-adm-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13.5px;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  cursor: pointer;
  background: none;
  border-right: none;
  border-top: none;
  border-bottom: none;
  width: 100%;
  text-align: left;
}
.gq-adm-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.gq-adm-nav-item--active {
  background: rgba(28, 107, 184, 0.25) !important;
  color: #fff !important;
  border-left-color: var(--blue) !important;
}
.gq-adm-nav-item--logout {
  color: rgba(255, 100, 100, 0.75);
}
.gq-adm-nav-item--logout:hover {
  color: #ff6b6b;
}
.gq-adm-nav-icon {
  flex-shrink: 0;
  opacity: 0.85;
}
.gq-adm-sidebar-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0 12px;
}

/* Main area */
.gq-adm-main {
  flex: 1;
  min-width: 0;
  /* Seitenabstand skaliert mit der Breite (mehr Luft auf großen Monitoren). */
  padding: 32px clamp(24px, 3.5vw, 56px) 64px;
}
/* Inhaltsbreite deckeln + zentrieren, damit auf breiten Screens nichts
   randlos auseinanderläuft und Zeilen nicht zu lang werden. */
.gq-adm-main-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 768px) {
  .gq-adm-shell {
    flex-direction: column;
  }
  .gq-adm-sidebar {
    width: 100%;
    min-height: unset;
    height: auto;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .gq-adm-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .gq-adm-main {
    padding: 20px 18px 40px;
  }
}

/* Header */
.gq-adm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.gq-adm-header-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 26px;
  color: var(--text);
  line-height: 1.2;
}
.gq-adm-header-sub {
  font-size: 14px;
  color: var(--text-sm);
  margin-top: 4px;
}

/* Status cards */
.gq-adm-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .gq-adm-cards-row {
    grid-template-columns: 1fr;
  }
}
.gq-adm-status-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--sh1);
}
.gq-adm-status-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.gq-adm-status-icon {
  font-size: 18px;
}
.gq-adm-status-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gq-adm-status-count {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
}
.gq-adm-status-count-label {
  font-size: 16px;
  font-weight: 600;
}
.gq-adm-status-meta {
  font-size: 13px;
  color: var(--text-md);
  line-height: 1.7;
}
.gq-adm-status-empty {
  font-size: 14px;
  color: var(--text-sm);
  padding: 12px 0;
}
/* Action card */
.gq-adm-action-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--sh1);
  flex-wrap: wrap;
}
.gq-adm-action-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.gq-adm-action-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 3px;
}
.gq-adm-action-desc {
  font-size: 13px;
  color: var(--text-md);
}

/* Admin form elements */
.gq-adm-label {
  display: block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-sm);
  margin-bottom: 6px;
}

/* Alert banners */
.gq-adm-alert {
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 12px;
}
.gq-adm-alert-warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
}
.gq-adm-alert-err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

/* Login page */
.gq-adm-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  padding: 24px;
}
.gq-adm-login-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--sh2);
}
.gq-adm-login-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.gq-adm-login-brand {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
}
.gq-adm-login-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 6px;
}
.gq-adm-login-sub {
  font-size: 14px;
  color: var(--text-sm);
  margin-bottom: 20px;
}

/* ── Admin: editor panels (settings / news / jobs) ── */
.gq-adm-panel {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: var(--sh1);
}
.gq-adm-panel-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 2px;
}
.gq-adm-panel-desc {
  font-size: 13px;
  color: var(--text-sm);
  margin-bottom: 16px;
}
.gq-adm-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) {
  .gq-adm-field-grid {
    grid-template-columns: 1fr;
  }
}
.gq-adm-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gq-adm-field--full {
  grid-column: 1 / -1;
}
.gq-adm-field-label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-md);
}
.gq-adm-input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-family: var(--font-b);
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s;
  resize: vertical;
}
.gq-adm-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28, 107, 184, 0.18);
}
/* Sichtbarer Tastatur-Fokus auf Buttons & Sidebar-Nav (a11y). */
.gq-adm-btn:focus-visible,
.gq-adm-nav-item:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.gq-adm-field-hint {
  font-family: var(--font-b);
  font-size: 12px;
  color: var(--text-sm);
}
.gq-adm-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-md);
}
/* Pill-Switch (an = grün, aus = grau) statt nativer Checkbox. */
.gq-adm-toggle input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 38px;
  height: 22px;
  border-radius: 40px;
  background: #cbd5e1;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  transition: background 0.18s;
}
.gq-adm-toggle input::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s;
}
.gq-adm-toggle input:checked {
  background: var(--green);
}
.gq-adm-toggle input:checked::after {
  transform: translateX(16px);
}
.gq-adm-toggle input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ── Admin: sticky save bar ── */
.gq-adm-savebar {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  /* opak (kein durchscheinender Button mehr); gleiche Breite wie die
     Content-Spalte, daher verschwindet scrollender Inhalt sauber dahinter. */
  margin-top: 8px;
  padding: 14px 0;
  background: #fff;
  border-top: 1.5px solid var(--border);
}
.gq-adm-savemsg {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-md);
}
.gq-adm-savemsg--ok {
  color: var(--ok);
}
.gq-adm-savemsg--err {
  color: var(--err);
}
.gq-adm-alert-ok {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: var(--ok);
}

/* ── Admin: buttons ── */
.gq-adm-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.16s,
    border-color 0.16s,
    transform 0.16s,
    opacity 0.16s;
}
.gq-adm-btn:disabled {
  opacity: 0.6;
  cursor: default;
}
/* Primär = Blau (speichern/erstellen). Rot ist im CMS ausschließlich für
   destruktive Aktionen reserviert (gq-adm-btn-danger). */
.gq-adm-btn-primary {
  background: var(--blue);
  color: #fff;
}
.gq-adm-btn-primary:hover:not(:disabled) {
  background: var(--blue-dk);
}
/* Solider Danger-Button (z. B. „endgültig löschen") – Outline-Variante bleibt
   gq-adm-btn-danger; diese hier für die seltene gefüllte Gefahr-Aktion. */
.gq-adm-btn-danger-solid {
  background: var(--red);
  color: #fff;
}
.gq-adm-btn-danger-solid:hover:not(:disabled) {
  background: var(--red-dk);
}
.gq-adm-btn-ghost {
  background: #fff;
  color: var(--text-md);
  border-color: var(--border);
}
.gq-adm-btn-ghost:hover:not(:disabled) {
  background: #f1f5f9;
  border-color: var(--blue);
  color: var(--blue);
}
.gq-adm-btn-sm {
  padding: 6px 12px;
  font-size: 12.5px;
}
.gq-adm-btn-danger {
  background: #fff;
  color: #b91c1c;
  border-color: #fecaca;
}
.gq-adm-btn-danger:hover {
  background: #fef2f2;
}

/* ── Admin: list rows (news / jobs) ── */
.gq-adm-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gq-adm-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: var(--sh1);
}
.gq-adm-row-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f4f8;
}
.gq-adm-row-main {
  flex: 1;
  min-width: 0;
}
.gq-adm-row-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gq-adm-row-meta {
  font-size: 12.5px;
  color: var(--text-sm);
  margin-top: 2px;
}
.gq-adm-row-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.gq-adm-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 40px;
  color: #fff;
}
.gq-adm-badge--off {
  background: #94a3b8;
}
.gq-adm-badge--on {
  background: var(--green);
}
.gq-adm-badge--draft {
  background: var(--amber);
}
/* Token-basierte Badge-Farben (Gruppen, Kategorien, Typen) statt Inline-Hex. */
.gq-adm-badge--blue,
.gq-adm-badge--wvg {
  background: var(--blue);
}
.gq-adm-badge--green {
  background: var(--green);
}
.gq-adm-badge--amber {
  background: var(--amber);
}
.gq-adm-badge--wine,
.gq-adm-badge--ws {
  background: var(--wine-lt);
}
.gq-adm-badge--gray {
  background: #94a3b8;
}

/* ── Admin: status group badge ── */
.gq-adm-group-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 3px 10px;
  border-radius: 40px;
}

/* ── Admin: media library grid ── */
.gq-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}
.gq-media-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.gq-media-thumb {
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gq-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gq-media-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.gq-media-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gq-media-meta {
  font-size: 11px;
  color: var(--text-sm);
}
.gq-media-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Prospekt-Viewer (PDF-Modal) */
@keyframes gqFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.gq-pv-act:hover {
  background: rgba(255, 255, 255, 0.32) !important;
}
/* On phones the title + three action buttons don't fit one row, which
   pushed the ✕ close button off-screen. Drop the text labels (keep the
   icons) so "Neuer Tab", "Download" and ✕ all stay reachable. */
@media (max-width: 560px) {
  .gq-pv-act-label {
    display: none;
  }
}

/* ══════════════════════════════════════════════════
   PARTYPLANER  (gq-pp-*)
══════════════════════════════════════════════════ */

/* ── Hero ── */
.gq-pp-hero {
  /* Größe an die übrigen Unterseiten (.gq-apghero) angeglichen. */
  padding: 44px 0 56px;
}
.gq-pp-hero-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* gleiche Hero-Höhe wie die übrigen Unterseiten (.gq-apghero-in) */
  min-height: 248px;
}
.gq-pp-hero-body {
  flex: 1;
  min-width: 0;
}
.gq-pp-hero-h1 {
  font-family: "Barlow Condensed", var(--font-h), sans-serif;
  font-weight: 800;
  /* Größe wie der Standard-Sub-Hero (.gq-apghero-h1). */
  font-size: clamp(28px, 4.5vw, 52px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin: 4px 0 16px;
  text-wrap: balance;
}
.gq-pp-hero-accent {
  background: linear-gradient(
    90deg,
    var(--wine-br) 0%,
    #f3b8c8 45%,
    var(--wine-br) 90%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ppShimmer 3.5s linear infinite;
}
@keyframes ppShimmer {
  to {
    background-position: -200% 0;
  }
}
.gq-pp-hero-p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 18px;
}
.gq-pp-hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.gq-pp-hero-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 5px 14px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}
.gq-pp-hero-kroni {
  flex-shrink: 0;
  width: 240px;
}
.gq-pp-hero-kroni img {
  width: 100%;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.55));
}

/* ── Planer-Karte ── */
.gq-pp {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh2);
  overflow: hidden;
}
.gq-pp-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: stretch;
}

/* Eingabe-Panel (Anthrazit) */
.gq-pp-panel {
  background: linear-gradient(170deg, var(--slate) 0%, var(--slate-dk) 100%);
  padding: 28px 26px 32px;
  color: #fff;
}
.gq-pp-panel-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 19px;
  color: #fff;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--wine-lt);
}
.gq-pp-field {
  display: block;
  margin-bottom: 20px;
}
.gq-pp-field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}
.gq-pp-field-label {
  display: block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.gq-pp-field-head .gq-pp-field-label {
  margin-bottom: 0;
}
.gq-pp-field-value {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 15px;
  color: var(--wine-lt);
}

/* Range-Slider */
.gq-pp-range {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 40px;
  background: linear-gradient(
    90deg,
    var(--wine-lt) var(--p, 50%),
    rgba(255, 255, 255, 0.16) var(--p, 50%)
  );
  outline: none;
  cursor: pointer;
}
.gq-pp-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--wine-lt);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s;
}
.gq-pp-range::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}
.gq-pp-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--wine-lt);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
/* Fokus-Ring: Gold mit voller Deckkraft (≈7:1 auf dem Anthrazit-Panel),
   abgesetzt durch einen dunklen Innenring – erfüllt WCAG 1.4.11. */
.gq-pp-range:focus-visible {
  box-shadow: 0 0 0 2px var(--slate-dk), 0 0 0 4px var(--gold);
}

/* Anlass-Buttons */
.gq-pp-occ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gq-pp-occ {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-align: left;
}
.gq-pp-occ:hover {
  background: rgba(255, 255, 255, 0.12);
}
.gq-pp-occ.on {
  background: rgba(184, 57, 93, 0.16);
  border-color: var(--wine-lt);
  color: var(--wine-lt);
}

/* Segment-Buttons */
.gq-pp-seg {
  display: flex;
  gap: 6px;
}
.gq-pp-seg-hint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-style: italic;
}
.gq-pp-seg-btn {
  flex: 1;
  padding: 9px 6px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.gq-pp-seg-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.gq-pp-seg-btn.on {
  background: #fff;
  border-color: #fff;
  color: var(--slate-dk);
}

/* Toggle */
.gq-pp-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-top: 4px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
}
.gq-pp-toggle small {
  display: block;
  font-weight: 600;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
}
.gq-pp-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.gq-pp-toggle-track {
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.gq-pp-toggle-track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.gq-pp-toggle input:checked + .gq-pp-toggle-track {
  background: var(--wine-lt);
  border-color: var(--wine-lt);
}
.gq-pp-toggle input:checked + .gq-pp-toggle-track::after {
  transform: translateX(20px);
}
.gq-pp-toggle input:focus-visible + .gq-pp-toggle-track {
  box-shadow: 0 0 0 2px var(--slate-dk), 0 0 0 4px var(--gold);
}
.gq-pp-occ:focus-visible,
.gq-pp-seg-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Getränke-Mix-Regler ── */
.gq-pp-mix-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.gq-pp-mix-reset {
  background: none;
  border: none;
  /* größere Tap-Fläche, Optik via negativem Margin unverändert */
  padding: 8px 6px;
  margin: -8px -6px;
  cursor: pointer;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.gq-pp-mix-reset:hover {
  color: #fff;
}
.gq-pp-mix-row {
  display: grid;
  grid-template-columns: 96px 1fr 40px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.gq-pp-mix-name {
  font-family: var(--font-b);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
}
.gq-pp-range--mix {
  margin: 0;
  min-width: 0;
}
.gq-pp-mix-pct {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 12.5px;
  color: var(--wine-lt);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.gq-pp-mix-note {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}

/* ── Ergebnisse ── */
.gq-pp-results {
  padding: 28px 30px 30px;
  min-width: 0;
}
.gq-pp-stats {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}
.gq-pp-stat {
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r);
  padding: 16px 18px;
}
.gq-pp-stat-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.gq-pp-stat-big .gq-pp-stat-num {
  font-size: 42px;
  color: var(--red);
}
.gq-pp-stat-unit {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-sm);
  margin-left: 5px;
}
.gq-pp-stat-lbl {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-sm);
  margin-top: 3px;
}

.gq-pp-block {
  margin-bottom: 26px;
}
.gq-pp-block-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gq-pp-block-title::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: var(--border);
}

/* Getränkemix-Balken */
.gq-pp-bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 64px;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.gq-pp-bar-label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-md);
}
.gq-pp-bar-track {
  height: 16px;
  border-radius: 40px;
  background: #f0f3f7;
  overflow: hidden;
}
.gq-pp-bar {
  position: relative;
  height: 100%;
  border-radius: 40px;
  transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.gq-pp-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  background-size: 220% 100%;
  animation: ppSheen 3.2s ease-in-out infinite;
}
@keyframes ppSheen {
  0%, 55% {
    background-position: 130% 0;
  }
  100% {
    background-position: -90% 0;
  }
}
.gq-pp-bar--beer {
  background: linear-gradient(180deg, #f8d56b, var(--gold-dk));
}
.gq-pp-bar--soft {
  background: linear-gradient(180deg, #ff9f43, #e07b1f);
}
.gq-pp-bar--water {
  background: linear-gradient(180deg, #6fb8ec, var(--blue));
}
.gq-pp-bar--wine {
  background: linear-gradient(180deg, #b04a66, #7e2c44);
}
.gq-pp-bar--sekt {
  background: linear-gradient(180deg, #f3e0b0, #d9b76a);
}
.gq-pp-bar--spirits {
  background: linear-gradient(180deg, #9286e0, #5d4fc0);
}
.gq-pp-bar-val {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--text-sm);
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Einkaufslisten-Karten */
.gq-pp-packs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.gq-pp-pack {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px 16px 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gq-pp-pack:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh1);
}
.gq-pp-pack--hl {
  background: rgba(184, 57, 93, 0.1);
  border-color: var(--wine-lt);
}
.gq-pp-pack-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: var(--blue-dk);
  font-variant-numeric: tabular-nums;
}
.gq-pp-pack--hl .gq-pp-pack-num {
  color: var(--wine);
}
.gq-pp-pack-unit {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--text);
  margin-top: 6px;
}
.gq-pp-pack-sub {
  font-size: 11.5px;
  color: var(--text-sm);
  margin-top: 2px;
}

.gq-pp-tip {
  margin-top: 14px;
  background: rgba(184, 57, 93, 0.12);
  border: 1px solid rgba(142, 34, 68, 0.35);
  border-left: 4px solid var(--wine-lt);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #6b5410;
}

/* Extras */
.gq-pp-extras {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gq-pp-extra {
  background: var(--blue-xlt);
  border: 1.5px solid var(--blue-lt);
  border-radius: 40px;
  padding: 7px 15px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue-dk);
}

/* Aktionen */
.gq-pp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.gq-pp-printmsg {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--wine);
  font-family: var(--font-h);
}
.gq-pp-note {
  font-size: 12.5px;
  color: var(--text-sm);
  margin-top: 14px;
  line-height: 1.6;
}

/* ── Verleih (auf Blau) ── */
.gq-pp-verleih {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gq-pp-verleih-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
  padding: 24px 22px;
  transition: background 0.2s, transform 0.2s;
}
.gq-pp-verleih-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.gq-pp-verleih-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: rgba(184, 57, 93, 0.16);
  border: 1px solid rgba(184, 57, 93, 0.35);
  color: var(--wine-lt);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.gq-pp-verleih-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  margin-bottom: 6px;
}
.gq-pp-verleih-dsc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}
.gq-pp-verleih-note {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Countdown-Timeline ── */
.gq-pp-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0;
}
.gq-pp-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Gestrichelter Connector hinter den Plaketten – die opaken Kreise decken die
   Enden ab, sodass nur das Stück zwischen zwei Schritten sichtbar bleibt. */
.gq-pp-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: calc(100% + 24px);
  height: 3px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    var(--blue-lt) 0 7px,
    transparent 7px 14px
  );
  z-index: 0;
}
.gq-pp-step-dot {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-dk) 0%, var(--blue) 100%);
  border: 3px solid #fff;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(12, 54, 101, 0.28);
  /* schwebt mit kleinem Abstand über der Karte; der Connector liegt auf
     Plaketten-Höhe und damit frei über den Karten. */
  margin-bottom: 18px;
}
.gq-pp-step-card {
  width: 100%;
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh1);
  padding: 24px 22px;
  text-align: center;
}
.gq-pp-step-when {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--red);
  margin-bottom: 7px;
}
.gq-pp-step-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 18.5px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
.gq-pp-step-dsc {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.6;
}

/* ── Scroll-Reveal (nur aktiv, wenn ScrollFx "gq-fx" auf <body> setzt) ── */
body.gq-fx [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
body.gq-fx [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
body.gq-fx [data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
body.gq-fx [data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
body.gq-fx [data-reveal-delay="3"] {
  transition-delay: 0.24s;
}
body.gq-fx [data-reveal-delay="4"] {
  transition-delay: 0.32s;
}
body.gq-fx [data-reveal-delay="5"] {
  transition-delay: 0.4s;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gq-pp-grid {
    grid-template-columns: 320px 1fr;
  }
  .gq-pp-hero-kroni {
    width: 260px;
  }
}
@media (max-width: 900px) {
  .gq-pp-grid {
    grid-template-columns: 1fr;
  }
  .gq-pp-verleih {
    grid-template-columns: 1fr 1fr;
  }
  .gq-pp-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .gq-pp-step:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 640px) {
  .gq-pp-hero {
    padding: 34px 0 42px;
  }
  .gq-pp-hero-kroni {
    position: absolute;
    right: -28px;
    bottom: -8px;
    width: min(50vw, 200px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
  }
  .gq-pp-hero-in {
    position: relative;
  }
  .gq-pp-hero-body {
    position: relative;
    z-index: 1;
  }
  .gq-pp-results {
    padding: 22px 18px 24px;
  }
  .gq-pp-panel {
    padding: 22px 18px 26px;
  }
  .gq-pp-stats {
    grid-template-columns: 1fr 1fr;
  }
  .gq-pp-stat-big {
    grid-column: 1 / -1;
  }
  .gq-pp-bar-row {
    grid-template-columns: 86px 1fr 56px;
    gap: 8px;
  }
  .gq-pp-verleih {
    grid-template-columns: 1fr;
  }
  .gq-pp-timeline {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .gq-pp-step::after {
    display: none !important;
  }
  .gq-pp-actions .gq-btn {
    width: 100%;
  }
  /* Touch-Ziele auf mind. 44 px (Apple/Android-Empfehlung) */
  .gq-pp-seg-btn,
  .gq-pp-occ {
    min-height: 44px;
  }
  .gq-pp-range {
    height: 8px;
  }
  .gq-pp-range::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
  }
  .gq-pp-range::-moz-range-thumb {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gq-pp-hero-accent {
    animation: none;
  }
  .gq-pp-bar {
    transition: none;
  }
  .gq-pp-bar::after {
    animation: none;
  }
  body.gq-fx [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  /* Großflächige Dauer-Animationen abschalten (WCAG 2.3.3) – gilt
     seitenübergreifend für Hero-Maskottchen und die Blasen-Deko. */
  .gq-float {
    animation: none;
  }
  .gq-bubble-zone {
    display: none;
  }
}

/* Visually-hidden: Inhalt nur für Screenreader (z. B. Status-Ansagen). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════════════════
   SERVICE-SEITE  (gq-svc-*)
══════════════════════════════════════════════════ */

/* Verleih-Feature-Karten (auf hell) */
.gq-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .gq-svc-grid {
    grid-template-columns: 1fr;
  }
}
.gq-svc-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 26px;
  box-shadow: var(--sh1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s,
    border-color 0.25s;
}
.gq-svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
}
.gq-svc-card--red::before {
  background: linear-gradient(90deg, var(--red), #e0344f);
}
.gq-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3);
  border-color: var(--blue-lt);
}
.gq-svc-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(160deg, var(--blue-dk), var(--blue));
  box-shadow: 0 8px 20px rgba(28, 107, 184, 0.28);
}
.gq-svc-card--red .gq-svc-icon {
  background: linear-gradient(160deg, var(--red-dk), var(--red));
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.28);
}
.gq-svc-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
.gq-svc-dsc {
  font-size: 14.5px;
  color: var(--text-md);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.gq-svc-link {
  align-self: flex-start;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 6px;
}
.gq-svc-card--red .gq-svc-link {
  color: var(--red);
}
.gq-svc-card:hover .gq-svc-link {
  gap: 10px;
}
.gq-svc-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #3a2c00;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 40px;
}

/* 3-Schritte Mini-Flow */
.gq-svc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 640px) {
  .gq-svc-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.gq-svc-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gq-svc-step-n {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-xlt);
  color: var(--blue);
  border: 1.5px solid var(--blue-lt);
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.gq-svc-step-ttl {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}
.gq-svc-step-dsc {
  font-size: 13.5px;
  color: var(--text-md);
  line-height: 1.55;
}

/* Markt-Services auf Blau – Glaskarten */
.gq-svc-blue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .gq-svc-blue-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .gq-svc-blue-grid {
    grid-template-columns: 1fr;
  }
}
.gq-svc-glass {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
  padding: 24px 22px;
  transition: background 0.2s, transform 0.2s;
}
.gq-svc-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.gq-svc-glass-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(245, 200, 66, 0.16);
  border: 1px solid rgba(245, 200, 66, 0.32);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.gq-svc-glass-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}
.gq-svc-glass-dsc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

/* Bezahl-Streifen */
.gq-svc-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}
.gq-svc-pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 9px 18px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
}
.gq-svc-pay-chip svg {
  opacity: 0.85;
}

/* ── Rechtstext-Seiten (Impressum / Datenschutz) ── */
.gq-legal {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font-b);
  color: var(--text-md);
  font-size: 15px;
  line-height: 1.75;
}
.gq-legal h2 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 25px);
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 44px 0 16px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--border);
}
.gq-legal > h2:first-child {
  margin-top: 0;
}
.gq-legal h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  margin: 28px 0 8px;
}
.gq-legal p {
  margin: 0 0 14px;
}
.gq-legal a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.gq-legal a:hover {
  color: var(--blue-dk);
}
.gq-legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.gq-legal li {
  margin-bottom: 5px;
}
.gq-legal strong {
  color: var(--text);
  font-weight: 700;
}
/* Adress-/Info-Karte (z. B. verantwortliche Stellen im Impressum) */
.gq-legal-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 0 0 18px;
  line-height: 1.65;
}
.gq-legal-card h3 {
  margin-top: 0;
}
.gq-legal-card-region {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 6px;
}
/* Formaler Hervorhebungs-Block (z. B. Widerspruch Art. 21 DSGVO) */
.gq-legal-callout {
  background: var(--blue-xlt);
  border: 1px solid var(--blue-lt);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-md);
}
.gq-legal-stand {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-sm);
  font-size: 13px;
}

/* ── Service: Trust-Leiste (Kennzahlen) ── */
.gq-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
@media (max-width: 700px) {
  .gq-trust {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
.gq-trust-item {
  text-align: center;
  padding: 18px 12px;
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r);
}
.gq-trust-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.gq-trust-num .star {
  color: var(--gold);
}
.gq-trust-lbl {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-sm);
  margin-top: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Service: Kundenstimmen ── */
.gq-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .gq-testi-grid {
    grid-template-columns: 1fr;
  }
}
.gq-testi {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 26px 24px;
  box-shadow: var(--sh1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gq-testi-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.gq-testi-quote {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-md);
  flex: 1;
}
.gq-testi-quote::before {
  content: "\201E"; /* „ */
}
.gq-testi-quote::after {
  content: "\201C"; /* " */
}
.gq-testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gq-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-dk), var(--blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}
.gq-testi-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}
.gq-testi-loc {
  font-size: 12.5px;
  color: var(--text-sm);
}

/* ── Service: FAQ-Akkordeon (native <details>) ── */
.gq-faq {
  max-width: 760px;
}
.gq-faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  margin-bottom: 10px;
  box-shadow: var(--sh1);
  overflow: hidden;
}
.gq-faq-item[open] {
  border-color: var(--blue-lt);
}
.gq-faq-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}
.gq-faq-q::-webkit-details-marker {
  display: none;
}
.gq-faq-q::after {
  content: "";
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.gq-faq-item[open] .gq-faq-q::after {
  transform: rotate(-135deg);
}
.gq-faq-q:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
.gq-faq-a {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-md);
}

/* ══════════════════════════════════════════════════
   FEHLERSEITEN (gq-err-*)
══════════════════════════════════════════════════ */
.gq-err {
  min-height: 64vh;
  display: flex;
  align-items: center;
}
.gq-err-in {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.gq-err-kroni {
  width: 150px;
  margin: 0 auto 4px;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5));
}
.gq-err-code {
  font-family: "Barlow Condensed", var(--font-h), sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 16vw, 150px);
  line-height: 0.9;
  color: #fff;
  letter-spacing: 0.02em;
}
.gq-err-code .accent {
  color: var(--red-lt);
}
.gq-err-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: #fff;
  margin: 4px 0 10px;
}
.gq-err-p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 26px;
}
.gq-err-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   EXKLUSIVMARKEN (gq-brand-*)
══════════════════════════════════════════════════ */
.gq-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .gq-brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .gq-brand-grid {
    grid-template-columns: 1fr;
  }
}
.gq-brand-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--sh1);
  text-decoration: none;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s,
    border-color 0.25s;
}
.gq-brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3);
  border-color: var(--blue-lt);
}
/* Logo-Bereich der Marken-Karte (echte Marken-Logos, /brands/*). */
.gq-brand-logo {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.gq-brand-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.gq-brand-mono {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", var(--font-h), sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #fff;
}
.gq-brand-mono--blue {
  background: linear-gradient(160deg, var(--blue-dk), var(--blue));
}
.gq-brand-mono--red {
  background: linear-gradient(160deg, var(--red-dk), var(--red));
}
.gq-brand-mono--gold {
  background: linear-gradient(160deg, var(--gold-dk), var(--gold));
  color: #3a2c00;
}
.gq-brand-mono--slate {
  background: linear-gradient(160deg, var(--slate-dk), var(--slate));
}
.gq-brand-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.gq-brand-tag {
  font-size: 13.5px;
  color: var(--text-md);
  line-height: 1.55;
  flex: 1;
}
.gq-brand-link {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--blue);
  display: inline-flex;
  gap: 6px;
  transition: gap 0.2s;
}
.gq-brand-card:hover .gq-brand-link {
  gap: 10px;
}

/* GFGH-Partner (zwei breite Karten auf Blau) */
.gq-gfgh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) {
  .gq-gfgh-grid {
    grid-template-columns: 1fr;
  }
}
.gq-gfgh-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
  padding: 26px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.gq-gfgh-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.gq-gfgh-eyebrow {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
/* Weiße Logo-Platte für die GFGH-Logos (Querformat, weißer Hintergrund). */
.gq-gfgh-logo {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 16px 20px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
}
.gq-gfgh-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.gq-gfgh-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
}
.gq-gfgh-link {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  gap: 6px;
  margin-top: 4px;
  transition: gap 0.2s, color 0.2s;
}
.gq-gfgh-card:hover .gq-gfgh-link {
  gap: 10px;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════
   MARKT-DETAILSEITE  (/maerkte/[id]  – gq-mktd-*)
══════════════════════════════════════════════════ */
.gq-mktd-hero {
  background:
    radial-gradient(
      120% 90% at 100% 0%,
      rgba(28, 107, 184, 0.4),
      transparent 60%
    ),
    linear-gradient(90deg, #0a2e56 0%, var(--blue-dk) 50%, #1558a0 100%);
  color: #fff;
  padding: 26px 0 40px;
  position: relative;
}
.gq-mktd-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.gq-mktd-crumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.gq-mktd-crumbs a:hover {
  color: #fff;
}
.gq-mktd-crumbs-cur {
  color: #fff;
}
.gq-mktd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.gq-mktd-hero-badge svg {
  color: var(--red-lt);
}
.gq-mktd-h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(26px, 5.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 12px;
  text-wrap: balance;
}
.gq-mktd-sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
}

.gq-mktd-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 860px) {
  .gq-mktd-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.gq-mktd-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gq-mktd-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh1);
  padding: 22px 24px;
}
.gq-mktd-card-ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-xlt);
  border: 1.5px solid var(--blue-lt);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gq-mktd-card-body {
  min-width: 0;
}
.gq-mktd-card-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.gq-mktd-card-txt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-md);
}
.gq-mktd-card-meta {
  font-size: 13px;
  color: var(--text-sm);
  margin-top: 6px;
}
.gq-mktd-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.gq-mktd-link:hover {
  text-decoration: underline;
}
.gq-mktd-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gq-mktd-hours li {
  font-size: 14.5px;
  color: var(--text-md);
  font-weight: 600;
}
.gq-mktd-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.gq-mktd-feat {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--blue-dk);
  background: var(--blue-xlt);
  border: 1px solid var(--blue-lt);
  border-radius: 40px;
  padding: 5px 12px;
}

.gq-mktd-mapwrap {
  position: sticky;
  top: 90px;
}
@media (max-width: 860px) {
  .gq-mktd-mapwrap {
    position: static;
    order: -1;
  }
}
.gq-mkt-minimap {
  width: 100%;
  height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh1);
  background: var(--blue-xlt);
}
@media (max-width: 860px) {
  .gq-mkt-minimap {
    height: 300px;
  }
}
.gq-mkt-minimap--empty {
  display: flex;
}

.gq-mktd-offers {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #0c3665 0%, #1c6bb8 100%);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--sh1);
}
.gq-mktd-offers-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 19px;
  color: #fff;
  margin-bottom: 4px;
}
.gq-mktd-offers-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.gq-mktd-offers .gq-btn {
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .gq-mktd-offers {
    padding: 20px;
  }
  .gq-mktd-offers .gq-btn {
    width: 100%;
  }
}
.gq-mktd-back {
  margin-top: 28px;
  text-align: center;
}
.gq-mktd-back a {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--blue);
  text-decoration: none;
}
.gq-mktd-back a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════════════
   PAYBACK-Seite – eigener Marken-Look (Blau + Gelb).
   Nur hier: kein Holz-Creme, sondern zartes PAYBACK-Blau mit dezentem
   Punktraster und weichen Blau/Gelb-Glows. Der Rest der Seite behält die
   Creme-/Holz-Textur (globale .bg-white / .bg-cream bleiben unberührt).
   ══════════════════════════════════════════════════════════════════════ */

/* Helle Flächen (inkl. Wellen-Streifen): Holz raus, klares PAYBACK-Blau rein.
   Bewusst kräftig genug, damit der Wellen-Streifen nicht „weiß" gegen das
   Dunkelblau wirkt. */
body.page-payback .bg-white {
  background-color: #c6dcf2;
  /* gleiches Punktraster wie die Sektionen → Wellen-Streifen wirkt nicht „weiß" */
  background-image: radial-gradient(
    rgba(0, 48, 135, 0.08) 1.4px,
    transparent 1.4px
  );
  background-size: 23px 23px;
  background-repeat: repeat;
}
/* Sektionen erben Grundton + gleichmäßiges Punktraster von .bg-white oben –
   bewusst KEINE Ecken-Glows (die erzeugten einen Links-Rechts-Helligkeitsverlauf,
   v. a. an den Wellen sichtbar). So ist die Fläche überall gleichmäßig. */

/* Blaue Sektion: dezente, SYMMETRISCHE Tiefe (zentriert, kein L-R-Verlauf). */
body.page-payback section.bg-blue {
  background-image: radial-gradient(
    120% 90% at 50% 0%,
    rgba(255, 215, 0, 0.07),
    transparent 60%
  );
}
/* Hero-Pill in PAYBACK-Gelb getönt (Marken-Pop). */
body.page-payback .gq-apghero-pill {
  background: rgba(255, 215, 0, 0.16);
  border-color: rgba(255, 215, 0, 0.5);
  color: #fff;
}
/* Hero-Tag-Pills: roter Punkt → PAYBACK-Gelb. */
body.page-payback .gq-hero-pill::before {
  background: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.25);
}
/* Gelber Akzent-Unterstrich unter den Sektions-Titeln. */
body.page-payback .sec-title-dark {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
body.page-payback .sec-title-dark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 4px;
  border-radius: 2px;
  background: #ffd700;
  transform: translateX(-50%);
}

/* ══════════════════════════════════════════════════
   EIGENMARKEN-LOGO-BAND (Startseite)  (gq-marquee / gq-brandstrip-*)
══════════════════════════════════════════════════ */
.gq-brandstrip-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.gq-marquee {
  overflow: hidden;
  /* Sanftes Ein-/Ausblenden an den Rändern */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.gq-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  padding: 4px 0;
  animation: gqMarquee 36s linear infinite;
}
.gq-marquee:hover .gq-marquee-track {
  animation-play-state: paused;
}
@keyframes gqMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Weiße Chips: Logos liegen auf reinem Weiß (NICHT auf der Holzmaserung),
   damit sie klar lesbar sind – siehe Design-Grundregel in CLAUDE.md. */
.gq-marquee-logo {
  flex: 0 0 auto;
  height: 96px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh1);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.gq-marquee-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh2);
  border-color: var(--blue-lt);
}
.gq-marquee-logo:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.gq-marquee-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  /* dezente Graustufe → volle Farbe beim Hover; deutlich lesbarer als vorher */
  filter: grayscale(0.85);
  opacity: 0.82;
  transition: filter 0.3s, opacity 0.3s;
}
.gq-marquee-logo:hover img {
  filter: none;
  opacity: 1;
}
@media (max-width: 560px) {
  .gq-marquee-track {
    gap: 14px;
  }
  .gq-marquee-logo {
    height: 80px;
    width: 170px;
    padding: 12px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gq-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .gq-marquee-track {
    animation: none;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 28px 48px;
  }
  /* Duplikat-Logos im statischen Zustand ausblenden (nur die ersten 6 zeigen). */
  .gq-marquee-track > :nth-child(n+7) {
    display: none;
  }
  .gq-marquee-logo img {
    filter: none;
    opacity: 1;
  }
}

/* ── Admin: sticky Toolbar über langen Listen (Suche/Filter/Aktionen) ── */
.gq-adm-toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 0;
  margin-bottom: 14px;
  background: #f1f5f9;
  border-bottom: 1.5px solid var(--border);
}
.gq-adm-toolbar-count {
  margin-left: auto;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-sm);
}

/* ── Admin: kompakte Datentabelle ── */
.gq-adm-table-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh1);
  overflow: hidden;
}
@media (max-width: 768px) {
  .gq-adm-table-wrap {
    overflow-x: auto;
  }
}
.gq-adm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.gq-adm-table th {
  text-align: left;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-sm);
  background: #f8fafc;
  padding: 10px 14px;
  border-bottom: 1.5px solid var(--border);
  white-space: nowrap;
}
.gq-adm-table td {
  padding: 9px 14px;
  border-top: 1px solid var(--border);
  color: var(--text-md);
  vertical-align: middle;
}
.gq-adm-table tbody tr:first-child td {
  border-top: none;
}
.gq-adm-table tbody tr:hover {
  background: #f8fafc;
}
.gq-adm-table-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}
.gq-adm-table-actions-cell {
  text-align: right;
  white-space: nowrap;
}
.gq-adm-table-actions {
  display: inline-flex;
  gap: 6px;
}

/* ── Admin: geteilter Leerzustand ── */
.gq-adm-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 1.5px dashed var(--border);
  border-radius: var(--r);
  color: var(--text-sm);
}
.gq-adm-empty-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-md);
}
.gq-adm-empty-sub {
  font-size: 13.5px;
}

/* ── Admin: Dashboard-Überblick (verlinkte Kennzahlen) ── */
.gq-adm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .gq-adm-stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .gq-adm-stats {
    grid-template-columns: 1fr;
  }
}
.gq-adm-stat {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  box-shadow: var(--sh1);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.gq-adm-stat:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--sh2);
}
.gq-adm-stat-ic {
  color: var(--blue);
  margin-bottom: 8px;
}
.gq-adm-stat-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 3px;
}
.gq-adm-stat-label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-sm);
}
.gq-adm-stat--alert {
  border-color: #fcd9b6;
  background: #fffbf5;
}
.gq-adm-stat--alert .gq-adm-stat-ic,
.gq-adm-stat--alert .gq-adm-stat-label {
  color: var(--amber);
}

/* ── Neuigkeiten: klickbare Karten + Detailseite ── */
.gq-news-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.gq-news-link:hover {
  transform: translateY(-3px);
}
.gq-news-link:hover .gq-news-card {
  box-shadow: 0 14px 30px rgba(12, 54, 101, 0.16);
  border-color: var(--blue-lt);
}
/* „Zurück"-Link über dem Beitrag */
.gq-news-back {
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
}
.gq-news-back:hover {
  text-decoration: underline;
}
/* Großes Beitragsbild auf der Detailseite (weiße Karte, responsiv) */
.gq-news-detail-img {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 28px;
  text-align: center;
}
.gq-news-detail-img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--r-sm);
}

/* Chips (Kategorie/Tag) */
.gq-news-chip {
  color: #fff;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 40px;
  white-space: nowrap;
}
.gq-news-chip-sm {
  font-size: 10px;
  padding: 2px 10px;
  align-self: flex-start;
}

/* Angepinnter Beitrag (breite Karte) */
.gq-news-pinned {
  background: linear-gradient(135deg, #0c3665 0%, #1c6bb8 100%);
  border-radius: var(--r-lg);
  padding: clamp(22px, 5vw, 36px) clamp(20px, 5vw, 44px);
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gq-news-pinned-img {
  width: clamp(280px, 42%, 560px);
  height: auto;
  border-radius: var(--r);
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.gq-news-pinned-h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.18;
}
.gq-news-pinned-teaser {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 520px;
}
.gq-news-pinned-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-h);
  font-weight: 600;
}
.gq-news-pinned-more {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  color: var(--gold);
}

/* Karten-Raster */
.gq-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
.gq-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh1);
  transition: box-shadow 0.22s, border-color 0.22s;
}
.gq-news-card-img {
  background: var(--blue-xlt);
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gq-news-card-img img {
  height: 148px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}
.gq-news-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gq-news-card-h3 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  color: var(--text);
  line-height: 1.3;
  margin: 10px 0 8px;
}
.gq-news-card-teaser {
  font-size: 13px;
  color: var(--text-md);
  line-height: 1.6;
  margin: 0 0 14px;
}
.gq-news-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.gq-news-card-date {
  font-size: 12px;
  color: var(--text-sm);
  font-family: var(--font-h);
  font-weight: 600;
}
.gq-news-card-more {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--blue);
}

/* ── Popup / Modal ── */
.gq-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 18, 30, 0.62);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 5vh, 64px) 16px;
  overflow-y: auto;
  animation: gq-modal-fade 0.16s ease;
}
@keyframes gq-modal-fade {
  from {
    opacity: 0;
  }
}
.gq-modal {
  position: relative;
  width: 100%;
  max-width: 760px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: gq-modal-pop 0.18s ease;
}
@keyframes gq-modal-pop {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
}
.gq-modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.15s, transform 0.15s;
}
.gq-modal-x:hover {
  background: #fff;
  transform: rotate(90deg);
}
.gq-modal-scroll {
  max-height: 88vh;
  overflow-y: auto;
}
.gq-modal-img {
  background: var(--blue-xlt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.gq-modal-img img {
  display: block;
  max-width: 100%;
  max-height: 60vh;
  height: auto;
  border-radius: var(--r-sm);
}
.gq-modal-body {
  padding: 24px clamp(20px, 4vw, 34px) 30px;
  font-family: var(--font-b);
  color: var(--text-md);
  font-size: 15px;
  line-height: 1.75;
}
.gq-modal-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.gq-modal-date {
  font-size: 12px;
  color: var(--text-sm);
  font-family: var(--font-h);
  font-weight: 600;
}
.gq-modal-h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 14px;
}
.gq-modal-body p {
  margin: 0 0 14px;
}
@media (max-width: 560px) {
  .gq-news-pinned-img {
    width: 100%;
  }
}

/* ── Admin: Bildauswahl (Upload / Bibliothek statt Pfad eintippen) ── */
.gq-imgpick {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gq-imgpick-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gq-imgpick-preview {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gq-imgpick-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gq-imgpick-empty {
  font-size: 11px;
  color: var(--text-sm);
  text-align: center;
  padding: 0 6px;
}
.gq-imgpick-controls {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gq-imgpick-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gq-imgpick-lib {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: #f8fafc;
  max-height: 240px;
  overflow-y: auto;
}
.gq-imgpick-lib-empty {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--text-sm);
  padding: 8px;
}
.gq-imgpick-lib-item {
  aspect-ratio: 1;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.gq-imgpick-lib-item:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.gq-imgpick-lib-item.is-sel {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(28, 107, 184, 0.3);
}
.gq-imgpick-lib-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Admin: Vorschau der Ankündigungs-Leiste ── */
.gq-adm-announce-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: linear-gradient(
    90deg,
    var(--red-dk),
    var(--red) 50%,
    var(--red-dk)
  );
  color: #fff;
  border-radius: var(--r-sm);
  padding: 11px 16px;
  margin-bottom: 16px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13.5px;
}
.gq-adm-announce-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.gq-adm-announce-preview-text {
  flex: 1;
  min-width: 140px;
}
.gq-adm-announce-preview-cta {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 3px 12px;
  font-size: 12.5px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   COOKIE-/CONSENT-BANNER  (gq-consent / mkt-map-consent)
══════════════════════════════════════════════════ */
.gq-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.18);
  padding: 18px 0;
  animation: menuRise 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.gq-consent-in {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.gq-consent-text {
  flex: 1;
  min-width: 280px;
}
.gq-consent-ttl {
  display: block;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}
.gq-consent-text p {
  font-size: 13.5px;
  color: var(--text-md);
  line-height: 1.6;
  max-width: 780px;
}
.gq-consent-text a {
  color: var(--blue);
  font-weight: 700;
}
.gq-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .gq-consent-in {
    padding: 0 18px;
  }
  .gq-consent-actions {
    width: 100%;
  }
  .gq-consent-actions .gq-btn {
    flex: 1;
  }
}

/* Karten-Platzhalter (vor Consent) – große Karte */
.mkt-map-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-xlt);
  border: 1.5px dashed var(--blue-lt);
}
.mkt-map-consent-in {
  text-align: center;
  max-width: 360px;
  padding: 28px;
}
.mkt-map-consent-in svg {
  color: var(--blue);
  margin-bottom: 10px;
}
.mkt-map-consent-in p {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.6;
  margin-bottom: 16px;
}
.mkt-map-consent-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

/* Karten-Platzhalter – Mini-Karte (Markt-Detailseite) */
.gq-mkt-minimap-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  background: var(--blue-xlt);
  border: 1.5px dashed var(--blue-lt);
}
.gq-mkt-minimap-consent p {
  font-size: 13px;
  color: var(--text-md);
  line-height: 1.5;
  margin: 0;
}

/* Footer-Link "Cookie-Einstellungen" (Button als Link gestylt) */
.gq-foot-cookie {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-b);
  font-size: 14px;
  transition: color 0.18s;
}
.gq-foot-cookie:hover {
  color: #fff;
}

/* ── Admin: Rechtstexte-Editor (HTML + Live-Vorschau) ── */
.gq-legal-edit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 1000px) {
  .gq-legal-edit {
    grid-template-columns: 1fr;
  }
}
.gq-adm-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.55;
  tab-size: 2;
}
.gq-legal-preview {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  max-height: 480px;
  overflow: auto;
}
/* Vorschau entspricht dem öffentlichen Stand, nur kompakter. */
.gq-legal-preview .gq-legal {
  max-width: none;
  font-size: 14px;
}
.gq-legal-preview .gq-legal h2 {
  font-size: 19px;
  margin: 22px 0 10px;
}
.gq-legal-preview .gq-legal h3 {
  font-size: 15px;
}

/* ── Admin: Marken-Editor ── */
.gq-brandedit-logo {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gq-brandedit-logo-preview {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-sm);
  font-size: 11px;
  text-align: center;
  padding: 6px;
}
.gq-brandedit-logo-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.gq-brandedit-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 12px;
}
.gq-brandedit-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
