*, *::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;
  --gold: #f5c842;
  --gold-dk: #d4a010;
  --white: #ffffff;
  --cream: #faf5eb;
  --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 ══ */
.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);
}
.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;
}
/* Abholmarkt-Button */
.gq-navlnk-markt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13.5px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: var(--red);
  border-radius: 40px;
  padding: 7px 16px;
  margin-left: 8px;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(200, 16, 46, 0.4);
}
.gq-navlnk-markt:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(200, 16, 46, 0.5);
}
.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-bottom: 1px solid var(--border);
  transition: background 0.14s;
}
.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);
}
.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);
  background-image: linear-gradient(
    160deg,
    #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: 56px 0 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.gq-hero-body {
  flex: 1;
  min-width: 0;
  padding-bottom: 56px;
}
.gq-hero-kicker {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.gq-hero-h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 84px);
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
  text-wrap: balance;
}
.gq-hero-h1 .accent {
  color: var(--red);
}
.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: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-family: var(--font-h);
  font-weight: 600;
}
.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(245,200,66,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(245,200,66,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(245,200,66,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(245,200,66,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(245,200,66,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(245,200,66,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(245,200,66,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(245,200,66,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) ══ */
.gq-prospekt-header {
  background: var(--red);
  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;
}
.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.8);
  background: rgba(0, 0, 0, 0.2);
  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(--red);
  border-top: none;
  padding: 18px 24px 24px;
}

/* ══ 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;
}

.gq-ocard-real-img {
  position: relative;
  overflow: hidden;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px 12px;
  background:
    radial-gradient(
      130% 100% at 50% 12%,
      #ffffff 0%,
      #fbfdff 58%,
      #f2f7fb 100%
    );
}
/* soft "shelf" reflection under the product */
.gq-ocard-real-img::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 14px;
  background: radial-gradient(
    ellipse at center,
    rgba(12, 54, 101, 0.14) 0%,
    transparent 70%
  );
  filter: blur(2px);
}
.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;
  filter: drop-shadow(0 8px 14px rgba(12, 54, 101, 0.12));
  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);
}

/* ══ MODULE CARDS ══ */
.gq-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .gq-modules-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.gq-module-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s;
  border: 1.5px solid var(--border);
}
.gq-module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3);
  border-color: var(--blue-lt);
}
.gq-module-card-top {
  background: linear-gradient(160deg, var(--blue-dk) 0%, var(--blue) 100%);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-top: 28px;
}
.gq-module-card-top img {
  width: 190px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}
.gq-module-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gq-module-card-ttl {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.gq-module-card-dsc {
  font-size: 14.5px;
  color: var(--text-md);
  flex: 1;
  line-height: 1.65;
}

/* ══ 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-body {
  flex: 1;
  position: relative;
  z-index: 1;
}
.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;
}
.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));
}

/* ══ 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);
}

/* ══ PAYBACK ══ */
.gq-payback {
  border-radius: var(--r-lg);
  background: var(--cream);
  border: 1.5px solid #e8dfc8;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ══ 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);
}

/* ══ ANGEBOTE PAGE ══ */
.gq-apghero {
  background: var(--blue-dk);
  background-image: linear-gradient(
    135deg,
    #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;
}
.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;
}
.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;
}
.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-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(26px, 3.2vw, 42px);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  text-wrap: balance;
}
.sec-title-dark {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 42px);
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  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;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.gq-float {
  animation: floatY 5s ease-in-out infinite;
}

/* ══ 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-cta {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 8px 0;
  background: #1c6bb8;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  box-sizing: border-box;
}

/* ══════════════════════════════════════════════════
   FEATURED TILES  (gq-feat-*)
══════════════════════════════════════════════════ */
.gq-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gq-feat-tile {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  display: block;
}
.gq-feat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}
.gq-feat-tile:hover img {
  transform: scale(1.04);
}
.gq-feat-tile-empty {
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}
@media (max-width: 600px) {
  .gq-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════════
   GROUP TABS on /angebote  (gq-group-tab*)
══════════════════════════════════════════════════ */
.gq-group-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.gq-group-tab {
  padding: 8px 22px;
  border-radius: 40px;
  border: 2px solid var(--border);
  background: #fff;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-md);
  transition: background .15s, border-color .15s, color .15s;
}
.gq-group-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.gq-group-tab.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.gq-group-tab-hint {
  font-size: 11px;
  font-weight: 500;
}
.gq-group-tab-note {
  font-size: 12px;
  color: var(--text-sm);
  margin-left: 8px;
}

/* ══════════════════════════════════════════════════
   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%;
}
.gq-home-link-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gq-home-link-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.13);
  border-left: 4px solid var(--red);
  border-radius: var(--r);
  padding: 22px 28px;
  text-decoration: none;
  transition: background .2s;
}
.gq-home-link-card:hover {
  background: rgba(255,255,255,.13);
}
.gq-home-link-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 40px;
  color: rgba(255,255,255,.15);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}
.gq-home-link-icon {
  font-size: 30px;
  flex-shrink: 0;
}
.gq-home-link-body {
  flex: 1;
  min-width: 0;
}
.gq-home-link-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  margin-bottom: 3px;
}
.gq-home-link-desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.gq-home-link-cta {
  flex-shrink: 0;
}
.gq-jobs-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gq-mmenu-hero,
.gq-mmenu-actions,
.gq-mmenu-shop {
  display: none;
}

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

@media (max-width: 1180px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .gq-hinner {
    gap: 14px;
  }
  .gq-navlnk {
    padding-left: 10px;
    padding-right: 10px;
  }
  .gq-navlnk-markt {
    padding-left: 13px;
    padding-right: 13px;
  }
}

@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);
  }
  .gq-mmenu {
    position: fixed;
    top: 86px;
    left: 18px;
    right: 18px;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - 104px);
    margin: 0;
    padding: 14px;
    overflow-y: auto;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
      linear-gradient(180deg, #071827 0%, #082946 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow:
      0 22px 70px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    animation: menuRise 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gq-mmenu::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(120deg, transparent 0 62%, rgba(245, 200, 66, 0.10) 62% 64%, transparent 64%),
      linear-gradient(120deg, transparent 0 74%, rgba(200, 16, 46, 0.12) 74% 76%, transparent 76%);
  }
  .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;
    margin-top: 12px;
  }
  .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: 7px;
    margin-top: 12px;
  }
  .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-mmenu-shop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 900;
    border: 1px dashed rgba(255, 255, 255, 0.32);
  }
  .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: 18px;
  }
  .gq-home-link-num {
    font-size: 28px;
    min-width: 38px;
  }
  .gq-home-link-icon {
    font-size: 24px;
  }
  .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 {
    top: 74px;
    left: 12px;
    right: 12px;
    padding: 12px;
    border-radius: 18px;
  }
  .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,
  .gq-group-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .gq-chips::-webkit-scrollbar,
  .gq-group-tabs::-webkit-scrollbar {
    display: none;
  }
  .gq-chip,
  .gq-group-tab {
    flex: 0 0 auto;
  }
  .gq-group-tab-note {
    flex: 0 0 100%;
    margin-left: 0;
  }
  .gq-module-card-body,
  .gq-wcard {
    padding: 22px;
  }
  .gq-module-card-top {
    min-height: 170px;
  }
  .gq-module-card,
  .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%;
  }
}

@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: .07em;
  }
  .gq-prospekt-header {
    border-radius: 12px 12px 0 0;
  }
  .gq-prospekt-body {
    border-radius: 0 0 12px 12px;
    padding: 12px;
  }
  .gq-ogrid-real {
    grid-template-columns: 1fr;
  }
  .gq-ocard-real-img {
    height: 190px;
  }
  .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 12px;
  }
  .gq-home-link-body {
    grid-column: 1 / -1;
  }
  .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-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,.08);
}
.gq-adm-sidebar-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  letter-spacing: .01em;
}
.gq-adm-sidebar-tag {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .12em;
  color: #0c1e33;
  background: var(--gold);
  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,.65);
  text-decoration: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13.5px;
  border-left: 3px solid transparent;
  transition: background .15s, color .15s, border-color .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,.06);
  color: #fff;
}
.gq-adm-nav-item--active {
  background: rgba(28,107,184,.25) !important;
  color: #fff !important;
  border-left-color: var(--blue) !important;
}
.gq-adm-nav-item--logout {
  color: rgba(255,100,100,.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,.08);
  padding: 8px 0 12px;
}

/* Main area */
.gq-adm-main {
  flex: 1;
  min-width: 0;
  padding: 32px 36px 60px;
}
@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: .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;
}
.gq-adm-group-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 40px;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .04em;
}

/* 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);
}

/* Shared admin buttons */
.gq-adm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  border: none;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13.5px;
  cursor: pointer;
  transition: background .15s, opacity .15s;
  white-space: nowrap;
}
.gq-adm-btn:disabled {
  opacity: .5;
  cursor: default;
}
.gq-adm-btn-primary {
  background: var(--red);
  color: #fff;
}
.gq-adm-btn-primary:hover:not(:disabled) {
  background: var(--red-dk);
}
.gq-adm-btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.gq-adm-btn-ghost:hover:not(:disabled) {
  background: #f1f5f9;
}

/* Admin form elements */
.gq-adm-label {
  display: block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-sm);
  margin-bottom: 6px;
}
.gq-adm-input {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.gq-adm-input:focus {
  border-color: var(--blue);
}

/* 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 {
  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);
}

/* ── Admin: sticky save bar ── */
.gq-adm-savebar {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0 4px;
  background: linear-gradient(180deg, rgba(241,245,249,0) 0%, #f1f5f9 40%);
}
.gq-adm-savemsg {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
}

/* ── 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;
  transition: background 0.16s, border-color 0.16s, transform 0.16s, opacity 0.16s;
}
.gq-adm-btn:disabled { opacity: 0.6; cursor: default; }
.gq-adm-btn-primary {
  background: var(--red);
  color: #fff;
}
.gq-adm-btn-primary: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 { 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: #2d7d46; }
.gq-adm-badge--draft { background: #b45309; }

/* ── Admin: status group badge ── */
.gq-adm-group-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  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;
}
