/* =========================================================
   Site Pages — sync with home11 (GrabPlus Hub)
   Interior pages, coupons, modal, breadcrumbs
   ========================================================= */

.gg-site {
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.h11-nav a.is-active {
  color: var(--lime-deep);
  box-shadow: inset 0 -2px 0 var(--lime);
}

/* Header search (interior pages) */
.h11-header-search {
  position: relative;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  min-width: 200px;
}

@media (min-width: 1100px) {
  .h11-header-search { display: flex; }
}

.h11-header-search i { color: var(--mute); font-size: 0.8rem; }

.h11-header-search input {
  border: 0;
  outline: none;
  width: 140px;
  font-size: 0.85rem;
  background: transparent;
  color: var(--ink);
}

.h11-header-search__drop {
  display: none;
  position: absolute;
  left: 0;
  right: auto;
  min-width: 260px;
  width: max(100%, 280px);
  top: calc(100% + 6px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  max-height: 320px;
  overflow: auto;
  z-index: 70;
}

.h11-header-search__drop.is-open { display: block; }

.h11-header-search__drop a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

.h11-header-search__drop a:hover { background: var(--mist); }
.h11-header-search__drop img {
  width: 40px;
  height: 28px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.15rem;
  flex-shrink: 0;
}

.h11-header-search__empty {
  padding: 0.85rem;
  color: var(--mute);
  font-size: 0.85rem;
}

/* Page shell */
.gg-page {
  padding-bottom: 3rem;
}

/* CTA is flush with footer — no light gap under the dark band */
.gg-page:has(> .gg-cta:last-child) {
  padding-bottom: 0;
}

.gg-cta:last-child {
  margin-bottom: 0;
}

.gg-hero {
  background:
    radial-gradient(900px 400px at 10% -20%, #134536 0%, transparent 55%),
    var(--ink);
  color: var(--white);
  padding: 2.75rem 0 2.5rem;
}

.gg-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  max-width: 18ch;
}

.gg-hero p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
}

.gg-hero--compact h1 {
  max-width: none;
}

.gg-hero--compact p {
  max-width: none;
}

.gg-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.gg-section {
  padding: 2.5rem 0;
}

.gg-section--soft { background: var(--soft); }

.gg-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gg-team { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .gg-team { grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
}

.gg-team__card {
  padding: 1.35rem 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.gg-team__avatar {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.gg-team__card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.gg-team__role {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.gg-team__focus {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--mute);
}

.gg-crumbs {
  padding: 0.85rem 0 0;
}

.gg-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mute);
}

.gg-crumbs a { color: var(--ink); }
.gg-crumbs a:hover { color: var(--lime-deep); }
.gg-crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--mute);
  opacity: 0.6;
}

/* Alphabet filter (stores) */
.gg-alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.gg-alpha a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.55rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.gg-alpha a:hover,
.gg-alpha a.is-active {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

/* Store directory grid */
.gg-letter-block { margin-bottom: 2rem; }

.gg-letter-block__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.gg-letter-block__head span {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
}

.gg-letter-block__head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.gg-store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 600px) {
  .gg-store-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .gg-store-grid { grid-template-columns: repeat(6, 1fr); }
}

.gg-store-grid li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  height: 100%;
}

.gg-store-grid li a:hover {
  transform: translateY(-3px);
  border-color: var(--lime-deep);
  box-shadow: var(--shadow);
}

.gg-store-grid img {
  width: 96px;
  height: 48px;
  object-fit: contain;
  padding: 0.2rem;
  border-radius: 8px;
}

/* =========================================================
   Categories index — directory / index layout
   ========================================================= */

.gg-cats-page {
  padding-bottom: 0;
  background:
    radial-gradient(900px 420px at 100% 8%, rgba(183, 255, 80, 0.12), transparent 55%),
    linear-gradient(180deg, #f3f7f2 0%, var(--mist, #f6f7f4) 38%, #fff 100%);
}

.gg-cats-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(900px 420px at 12% -30%, #1a5c48 0%, transparent 58%),
    radial-gradient(700px 360px at 92% 20%, rgba(183, 255, 80, 0.18), transparent 55%),
    var(--ink);
  padding: 2.25rem 0 2.75rem;
  margin-bottom: 0;
}

.gg-cats-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 255, 80, 0.45), transparent);
}

.gg-cats-hero__inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .gg-cats-hero__inner {
    grid-template-columns: 1.4fr 0.7fr;
    align-items: end;
  }

  .gg-cats-hero__inner .gg-crumbs {
    grid-column: 1 / -1;
  }
}

.gg-cats-hero__copy .gg-kicker {
  color: var(--lime);
  margin-bottom: 0.55rem;
}

.gg-cats-hero__copy h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.gg-cats-hero__copy p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.55;
}

.gg-cats-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gg-cats-hero__meta > div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gg-cats-hero__meta strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1;
  color: var(--lime);
}

.gg-cats-hero__meta span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gg-cats-spotlight {
  padding: 2.5rem 0 1rem;
}

.gg-cats-spotlight__head {
  margin-bottom: 1.15rem;
}

.gg-cats-spotlight__head h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin: 0.25rem 0 0;
  letter-spacing: -0.02em;
}

.gg-cats-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .gg-cats-spotlight__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gg-cats-spot {
  position: relative;
  display: block;
  min-height: 210px;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 10px 28px rgba(15, 28, 24, 0.08);
}

.gg-cats-spot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gg-cats-spot__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 18, 0.15) 0%, rgba(10, 22, 18, 0.78) 100%);
  z-index: 1;
}

.gg-cats-spot__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gg-cats-spot__count {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.gg-cats-spot__name {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.gg-cats-spot:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 28, 24, 0.16);
}

.gg-cats-spot:hover img {
  transform: scale(1.06);
}

.gg-cats-index {
  padding: 1.75rem 0 3.5rem;
}

.gg-cats-index__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}

.gg-cats-index__head h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin: 0.25rem 0 0;
  letter-spacing: -0.02em;
}

.gg-cats-index__hint {
  margin: 0;
  color: var(--mute);
  font-weight: 600;
  max-width: 28ch;
}

.gg-cats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
}

.gg-cats-list > li {
  margin: 0;
  padding: 0;
}

.gg-cats-row {
  --i: 0;
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  align-items: center;
  gap: 0.95rem 1rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, padding-left 0.2s ease;
  animation: ggCatsRowIn 0.45s ease both;
  animation-delay: calc(min(var(--i), 12) * 28ms);
}

.gg-cats-row:last-child {
  border-bottom: 0;
}

.gg-cats-row:hover {
  background: rgba(183, 255, 80, 0.14);
  padding-left: 1.2rem;
}

.gg-cats-row.is-hot {
  background: linear-gradient(90deg, rgba(183, 255, 80, 0.12), transparent 55%);
}

.gg-cats-row__media {
  width: 72px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
  flex-shrink: 0;
}

.gg-cats-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gg-cats-row__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gg-cats-row__name {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.gg-cats-row__desc {
  color: var(--mute);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gg-cats-row__count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  min-width: 4.5rem;
}

.gg-cats-row__count em {
  font-style: normal;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ink);
}

.gg-cats-row__count span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
}

.gg-cats-row__go {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.85rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gg-cats-row:hover .gg-cats-row__go {
  background: var(--lime-deep, #7db82e);
  color: var(--ink);
  transform: translateX(3px);
}

@keyframes ggCatsRowIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .gg-cats-row {
    grid-template-columns: 64px 1fr auto;
    gap: 0.75rem;
    padding: 0.8rem 0.85rem;
  }

  .gg-cats-row__media {
    width: 64px;
    height: 52px;
  }

  .gg-cats-row__go {
    display: none;
  }

  .gg-cats-row__count {
    min-width: 0;
  }

  .gg-cats-hero__copy h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gg-cats-row,
  .gg-cats-spot,
  .gg-cats-spot img,
  .gg-cats-row__go {
    animation: none !important;
    transition: none !important;
  }
}

/* Deal / coupon cards (square) */
.gg-deal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gg-deal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .gg-deal-grid { grid-template-columns: repeat(3, 1fr); }
}

.gg-deal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.gg-deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gg-deal-card__media {
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
}

.gg-deal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gg-deal-card__body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.gg-deal-card__logo {
  width: 96px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 0.3rem 0.45rem;
  margin-top: -1.5rem;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px rgba(7, 26, 20, 0.1);
}

.gg-deal-card__store {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mute);
}

.gg-deal-card__disc {
  font-family: var(--display);
  font-weight: 800;
  color: var(--lime-deep);
  font-size: 1.05rem;
}

.gg-deal-card__name {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
}

.gg-deal-card .h11-btn {
  margin-top: 0.85rem;
  width: 100%;
}

/* Blog cards */
.gg-blog-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .gg-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

.gg-blog-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gg-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gg-blog-card__media {
  background: var(--ink);
  min-height: 100%;
}

.gg-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gg-blog-card__body {
  padding: 1rem 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gg-blog-card__meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mute);
  margin-bottom: 0.35rem;
}

.gg-blog-card h2 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Content / prose pages */
.gg-prose {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  max-width: none;
  width: 100%;
}

.gg-prose h1,
.gg-prose h2,
.gg-prose h3 {
  font-family: var(--display);
  letter-spacing: -0.03em;
}

.gg-prose p {
  color: var(--mute);
  line-height: 1.65;
}

.gg-prose a { color: var(--lime-deep); font-weight: 700; }

/* Contact */
.gg-contact-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .gg-contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}

.gg-contact-card,
.gg-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.gg-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gg-contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.gg-contact-list i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--mist);
  color: var(--lime-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gg-contact-list strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.gg-contact-list span,
.gg-contact-list address {
  font-style: normal;
  color: var(--mute);
  font-size: 0.92rem;
}

.gg-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
}

.gg-form .form-row {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 600px) {
  .gg-form .form-row { grid-template-columns: 1fr 1fr; }
}

.gg-form input,
.gg-form textarea {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  outline: none;
  background: var(--mist);
}

.gg-form input:focus,
.gg-form textarea:focus {
  border-color: var(--lime-deep);
  background: var(--white);
}

.gg-form textarea { min-height: 140px; resize: vertical; }

/* Stats strip (about) */
.gg-stats {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .gg-stats { grid-template-columns: repeat(3, 1fr); }
}

.gg-stats article {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  color: var(--white);
}

.gg-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--lime);
  margin-bottom: 0.25rem;
}

.gg-stats span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* FAQ */
.gg-faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-bottom: 0.65rem;
}

.gg-faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  font-family: var(--display);
}

.gg-faq summary::-webkit-details-marker { display: none; }

.gg-faq p {
  margin: 0.65rem 0 0;
  color: var(--mute);
}

/* ========== Legacy coupon row sync (store pages) ========== */
.gg-site .list-body {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin-bottom: 1.05rem;
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.gg-site .coupon-list-item,
.gg-site .list-content {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gg-site .list-body:hover .list-content {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.gg-site .list-content {
  margin-bottom: 0 !important;
  overflow: hidden;
  display: block !important;
  position: relative;
}

.gg-site .top-list {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.gg-site .list-exclusive {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 16px 0 12px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.gg-site .coupon-badge,
.gg-site .list-left {
  background: var(--ink) !important;
}

.gg-site .list-left {
  flex: 0 0 150px;
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  border-right: 0 !important;
  padding: 1.55rem 1rem !important;
  margin: 0 !important;
  min-height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 1.25 !important;
}

.gg-site .coupon-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.gg-site .coupon-discount {
  color: var(--lime) !important;
  font-family: var(--display) !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  line-height: 1.25 !important;
  text-align: center;
}

.gg-site .badge__message {
  color: rgba(255,255,255,0.7) !important;
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.3 !important;
}

.gg-site .list-center {
  flex: 1 1 auto;
  min-width: 0;
  padding: 1.55rem 1.25rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.gg-site .center-title {
  font-family: var(--display) !important;
  color: var(--ink) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  margin: 0.45rem 0 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gg-site .Verify { color: var(--lime-deep) !important; }

.gg-site .list-right {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0 !important;
  padding: 1.35rem 1.35rem 1.35rem 0.35rem;
  box-sizing: border-box;
}

.gg-site .tran-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 168px;
  max-width: 100%;
  height: auto !important;
  margin: 0 !important;
  padding: 0.9rem 1.45rem !important;
  background: var(--lime) !important;
  color: var(--ink) !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  line-height: 1.2 !important;
  border: 0 !important;
  box-shadow: 0 8px 20px rgba(183, 255, 80, 0.25);
  cursor: pointer;
  overflow: visible !important;
  white-space: nowrap;
  transition: transform 0.2s, background 0.2s;
}

.gg-site .tran-btn:hover {
  background: #c8ff6e !important;
  color: var(--ink) !important;
  transform: translateY(-1px);
}

.gg-site .tran-btn-sign,
.gg-site .tran-btn-img,
.gg-site .tran-btn-img::before,
.gg-site .tran-btn-name {
  display: none !important;
}

@media (max-width: 720px) {
  .gg-site .top-list {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-areas:
      "left center"
      "btn btn";
    align-items: stretch;
    row-gap: 0.15rem;
  }

  .gg-site .list-left {
    grid-area: left;
    flex: none !important;
    width: 100% !important;
    min-height: 100% !important;
    padding: 1.1rem 0.55rem !important;
  }

  .gg-site .list-center {
    grid-area: center;
    flex: none !important;
    width: auto !important;
    padding: 1.1rem 0.9rem 0.55rem !important;
  }

  .gg-site .list-right {
    grid-area: btn;
    flex: none !important;
    width: 100% !important;
    padding: 0.55rem 1rem 1.35rem !important;
    justify-content: stretch;
  }

  .gg-site .tran-btn {
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
  }

  .gg-site .coupon-discount {
    font-size: 1.05rem !important;
  }

  .gg-site .center-title {
    font-size: 0.98rem !important;
    line-height: 1.35 !important;
  }

  .gg-site .list-content--top .top-list {
    padding-top: 1.85rem;
  }

  .gg-site .list-top-badge {
    font-size: 0.62rem;
    padding: 0.32rem 0.7rem;
  }

  .gg-site .list-terms {
    padding: 0.95rem 1rem 1rem !important;
    margin-top: 0 !important;
  }
}

.gg-site .single-store-header {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 2.5rem 0 !important;
}

.gg-site .single-store-header h1.store-name {
  font-family: var(--display) !important;
  color: var(--white) !important;
  letter-spacing: -0.03em;
}

.gg-site .single-store-header .content-toggle,
.gg-site .single-store-header .content-toggle p {
  color: rgba(255,255,255,0.72) !important;
}

.gg-site .single-store-header .show-more-store,
.gg-site .single-store-header .show-less-store {
  color: var(--lime) !important;
}

.gg-site .header-store-thumb a,
.gg-site .header-store-thumb {
  background: var(--white) !important;
  border-radius: 16px !important;
}

.gg-site .twocolumns {
  background: var(--mist) !important;
}

.gg-site .holder {
  background: transparent !important;
}

.gg-site .nav-pills .nav-link {
  background: var(--white) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  margin-right: 0.4rem;
}

.gg-site .nav-pills .nav-link.active {
  background: var(--ink) !important;
  color: var(--lime) !important;
  border-color: var(--ink) !important;
}

.gg-site .btn-primary,
.gg-site .md-round.btn-primary {
  background: var(--lime) !important;
  color: var(--ink) !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
  text-transform: none !important;
}

.gg-site .btn-primary:hover {
  background: #c8ff6e !important;
  color: var(--ink) !important;
}

.gg-site .section-heading_content h1,
.gg-site #main h1,
.gg-site .heading,
.gg-site .abt-txt .heading {
  font-family: var(--display) !important;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.gg-site #main {
  background: var(--mist) !important;
  font-family: var(--sans);
}

.gg-site .breadcrumbs,
.gg-site .breadcrumb {
  background: transparent !important;
  font-family: var(--sans);
}

.gg-site .breadcrumb a { color: var(--ink); font-weight: 700; }
.gg-site .breadcrumb-item.active { color: var(--mute); }

.gg-site .feature-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.gg-site .feature-box .img-holder {
  border-radius: 0;
  overflow: hidden;
}

.gg-site .abc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.gg-site .abc-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--lime) !important;
  font-weight: 800;
  padding: 0 0.5rem;
}

.gg-site .store-logo {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .gg-site .store-logo { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .gg-site .store-logo { grid-template-columns: repeat(6, 1fr); }
}

.gg-site .store-logo li {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.gg-site .img-wrapper-store-logo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  transition: border-color 0.2s, transform 0.2s;
}

.gg-site .img-wrapper-store-logo:hover {
  border-color: var(--lime-deep);
  transform: translateY(-2px);
}

.gg-site .coupon-box {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: none !important;
}

.gg-site .blog-single-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 0.75rem !important;
}

.gg-site .category-badge a {
  background: var(--ink) !important;
  color: var(--lime) !important;
  border-radius: 999px !important;
  padding: 0.25rem 0.6rem !important;
  font-weight: 800 !important;
}

.gg-site .blog-title {
  font-family: var(--display) !important;
}

.gg-site .contact-form .form-control,
.gg-site .contact-form input,
.gg-site .contact-form textarea {
  border-radius: 12px !important;
  border: 1.5px solid var(--line-strong) !important;
  background: var(--mist) !important;
}

.gg-site .counter-sec {
  background: var(--ink) !important;
}

.gg-site .counter-sec .counter {
  color: var(--lime) !important;
  font-family: var(--display) !important;
}

/* Modal sync */
.gg-site .modal-content {
  border: 0 !important;
  border-radius: 22px !important;
  overflow: hidden;
  font-family: var(--sans);
}

.gg-site .coupon-card {
  padding: 0 1.5rem 1.75rem !important;
  text-align: center;
}

.gg-site .coupon-store-thumb img {
  width: 160px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line-strong);
}

.gg-site #name_src {
  font-family: var(--display) !important;
  font-size: 1.25rem !important;
  margin: 0.85rem 0 !important;
}

.gg-site .coupon-wrapper {
  display: flex !important;
  gap: 0.45rem;
  border: 2px dashed var(--line-strong) !important;
  border-radius: 12px !important;
  overflow: hidden;
  background: var(--mist);
}

.gg-site .coupon-input {
  flex: 1;
  border: 0 !important;
  background: transparent !important;
  text-align: center;
  font-family: var(--display) !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  padding: 0.85rem !important;
}

.gg-site .coupon-button {
  background: var(--ink) !important;
  color: var(--lime) !important;
  border: 0 !important;
  font-weight: 800 !important;
  padding: 0 1rem !important;
  white-space: nowrap;
}

.gg-site #go-to.btn-primary {
  display: inline-flex !important;
  width: auto !important;
  min-width: 220px;
  margin-top: 1rem !important;
  justify-content: center;
}

/* CTA band reusable */
.gg-cta {
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(183, 255, 80,0.18), transparent 60%),
    var(--ink);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
  margin-top: 1rem;
}

.gg-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 0.5rem;
}

.gg-cta p {
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,0.7);
}

.gg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Hide old cookie if any leftover */
.gg-site .cookie-alert { display: none !important; }

/* Side bar soft sync */
.gg-site .sidebar,
.gg-site aside#sidebar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

/* =========================================================
   Store show — heavy GrabPlus hub layout
   ========================================================= */

.gg-crumbs--light ol { color: rgba(255,255,255,0.55); }
.gg-crumbs--light a { color: rgba(255,255,255,0.9); }
.gg-crumbs--light a:hover { color: var(--lime); }
.gg-crumbs--light li:not(:last-child)::after { color: rgba(255,255,255,0.35); }

.gg-store-hero {
  background:
    radial-gradient(1000px 480px at 8% -20%, #134536 0%, transparent 55%),
    radial-gradient(700px 360px at 95% 10%, #1a5c48 0%, transparent 50%),
    var(--ink);
  color: var(--white);
  padding: 2rem 0 2.75rem;
}

.gg-store-hero__grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.25rem;
  align-items: start;
}

@media (min-width: 960px) {
  .gg-store-hero__grid {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 2.5rem;
  }
}

.gg-store-hero__main {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .gg-store-hero__main {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

.gg-store-hero__logo {
  width: 180px;
  height: 96px;
  border-radius: 18px;
  background: var(--white);
  display: grid;
  place-items: center;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  overflow: hidden;
}

.gg-store-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gg-store-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.55rem;
  max-width: 16ch;
}

.gg-store-hero__sub {
  margin: 0 0 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 36rem;
  font-size: 1.02rem;
}

.gg-store-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 360px;
  margin-bottom: 1.15rem;
}

.gg-store-stats div {
  padding: 0.75rem 0.65rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.gg-store-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--lime);
}

.gg-store-stats span {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.gg-store-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.gg-store-spotlight {
  background: linear-gradient(180deg, #12362c 0%, #0a241c 100%);
  border: 1px solid rgba(183, 255, 80,0.22);
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}

.gg-store-spotlight__badge {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gg-store-spotlight__disc {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--lime);
  margin-bottom: 0.35rem;
}

.gg-store-spotlight h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gg-store-spotlight__meta {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 600;
}

.gg-store-trust {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.gg-store-trust__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem 0;
}

@media (min-width: 800px) {
  .gg-store-trust__row { grid-template-columns: repeat(4, 1fr); }
}

.gg-store-trust__row > div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.gg-store-trust__row i { color: var(--lime-deep); }

.gg-store-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 980px) {
  .gg-store-layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.75fr);
    align-items: start;
  }
}

.gg-store-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}

.gg-store-section__head h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0;
  letter-spacing: -0.03em;
}

.gg-store-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.gg-store-tab {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gg-store-tab em {
  font-style: normal;
  margin-left: 0.25rem;
  color: var(--mute);
}

.gg-store-tab.is-active,
.gg-store-tab:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.gg-store-tab.is-active em,
.gg-store-tab:hover em { color: var(--lime); }

.gg-store-pane[hidden] { display: none !important; }
.gg-store-pane.is-active { display: block; }

.gg-site .list-content {
  position: relative;
}

.gg-site .list-top-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  background: var(--ink);
  color: var(--lime);
  padding: 0.4rem 0.85rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(7, 26, 20, 0.18);
  pointer-events: none;
  white-space: nowrap;
}

.gg-site .list-content--top {
  border-color: rgba(183, 255, 80, 0.45) !important;
  box-shadow: 0 10px 28px rgba(7, 26, 20, 0.08);
}

.gg-site .list-content--top .top-list {
  padding-top: 1.9rem;
}

.gg-site .list-terms {
  border-top: 1px solid var(--line);
  padding: 0.7rem 1.25rem 0.85rem;
  background: #f7f8f6;
  text-align: left;
}

.gg-site .list-terms summary {
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.gg-site .list-terms summary::-webkit-details-marker { display: none; }

.gg-site .list-terms summary::after {
  content: "+";
  color: var(--lime-deep);
  font-weight: 800;
  flex-shrink: 0;
}

.gg-site .list-terms[open] summary::after { content: "–"; }

.gg-site .list-terms__body {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--mute);
  max-height: 160px;
  overflow: auto;
}

.gg-site .list-terms__body p {
  margin: 0 0 0.45rem;
}

.gg-site .list-terms__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .gg-site .list-terms {
    padding: 0.95rem 1rem 1rem !important;
  }
}

.gg-site .list-center .top-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.gg-site .list-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(7, 26, 20, 0.06);
  color: var(--ink-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gg-site .list-type-badge--deal {
  background: rgba(183, 255, 80, 0.22);
}

.gg-store-empty {
  padding: 1.5rem;
  background: var(--white);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--mute);
  font-weight: 600;
}

.gg-store-ending { margin-top: 2.5rem; }

.gg-store-ending__grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .gg-store-ending__grid { grid-template-columns: repeat(3, 1fr); }
}

.gg-store-ending__card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.gg-store-ending__card > span {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--lime);
}

.gg-store-ending__card strong {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--lime);
}

.gg-store-ending__card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.gg-store-ending__card .h11-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Monthly codes overview chart */
.gg-month-codes {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem 1.35rem 1.1rem;
  box-shadow: 0 10px 28px rgba(15, 28, 24, 0.06);
}

.gg-month-codes__head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.15rem;
  color: #1f6b5c;
  letter-spacing: -0.01em;
}

.gg-month-codes__head p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.gg-month-codes__legend {
  list-style: none;
  margin: 0.9rem 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mute);
}

.gg-month-codes__legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.gg-month-codes__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.gg-month-codes__dot--low { background: #6b7c93; }
.gg-month-codes__dot--mid { background: #2aa8a0; }
.gg-month-codes__dot--peak { background: #b7ff50; }
.gg-month-codes__dot--avg {
  background: transparent;
  border: 2px solid #94a3b8;
}

.gg-month-codes__plot {
  --avg-n: 0;
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: 220px auto;
  gap: 0 0.45rem;
  background: #1a2332;
  border-radius: 14px;
  padding: 1rem 0.85rem 0.55rem 0.45rem;
  overflow: hidden;
}

.gg-month-codes__y {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0.15rem 0 2.1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  z-index: 2;
}

.gg-month-codes__grid {
  grid-row: 1;
  grid-column: 2;
  background-image: repeating-linear-gradient(
    to top,
    transparent,
    transparent calc(20% - 1px),
    rgba(255, 255, 255, 0.06) calc(20% - 1px),
    rgba(255, 255, 255, 0.06) 20%
  );
  border-radius: 8px;
  margin-bottom: 2.1rem;
  z-index: 0;
}

.gg-month-codes__bars {
  --label-space: 2.1rem;
  grid-row: 1;
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.28rem;
  height: 100%;
  z-index: 2;
  position: relative;
}

.gg-month-codes__avg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--label-space) + (100% - var(--label-space)) * var(--avg-n) / 100);
  border-top: 2px dashed rgba(255, 255, 255, 0.55);
  z-index: 1;
  pointer-events: none;
}

.gg-month-codes__col {
  display: grid;
  grid-template-rows: 1fr var(--label-space);
  height: 100%;
  min-width: 0;
}

.gg-month-codes__track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  height: 100%;
}

.gg-month-codes__bar {
  width: 70%;
  max-width: 28px;
  min-height: 0;
  border-radius: 6px 6px 3px 3px;
  background: #6b7c93;
  position: relative;
  transition: height 0.35s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.gg-month-codes__bar.is-empty { background: transparent; }
.gg-month-codes__bar.is-low { background: #6b7c93; }
.gg-month-codes__bar.is-mid { background: #3d8f9e; }
.gg-month-codes__bar.is-high { background: #2aa8a0; }
.gg-month-codes__bar.is-peak {
  background: linear-gradient(180deg, #d4ff8a 0%, #b7ff50 55%, #8fd92e 100%);
  box-shadow: 0 0 14px rgba(183, 255, 80, 0.35);
}

.gg-month-codes__bar em {
  position: absolute;
  top: -1.15rem;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.gg-month-codes__bar.is-peak em { color: #0f1c18; }

.gg-month-codes__col:hover .gg-month-codes__bar em { opacity: 1; }

.gg-month-codes__col > span {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transform: rotate(-38deg);
  transform-origin: top center;
  padding-top: 0.35rem;
}

.gg-month-codes__foot {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.gg-month-codes__foot span { color: var(--mute); }

@media (max-width: 720px) {
  .gg-month-codes { padding: 1rem 0.85rem; }
  .gg-month-codes__plot {
    padding-right: 0.55rem;
    grid-template-rows: 200px auto;
  }
  .gg-month-codes__bars { gap: 0.15rem; }
  .gg-month-codes__bar { width: 85%; max-width: 22px; }
  .gg-month-codes__col > span { font-size: 0.55rem; }
}

.gg-store-board { margin-top: 2.5rem; }

.gg-store-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.gg-store-table {
  width: 100%;
  border-collapse: collapse;
}

.gg-store-table th,
.gg-store-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.gg-store-table thead th {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  border: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.gg-store-table tbody tr:hover { background: #f7faf8; }

.gg-store-table b {
  font-family: var(--display);
  color: var(--lime-deep);
}

.gg-store-table a {
  color: var(--ink);
  font-weight: 700;
}

.gg-store-table a:hover { color: var(--lime-deep); }

@media (max-width: 700px) {
  .gg-store-board {
    margin-top: 2rem;
  }

  .gg-store-table-wrap {
    border-radius: 14px;
  }

  .gg-store-table thead { display: none; }

  .gg-store-table tbody tr {
    display: block;
    padding: 1.05rem 1.1rem 1.15rem;
    border-top: 1px solid var(--line);
  }

  .gg-store-table tbody tr:first-child {
    border-top: 0;
  }

  .gg-store-table td {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr);
    column-gap: 0.85rem;
    row-gap: 0.2rem;
    align-items: start;
    border: 0;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    text-align: left;
  }

  .gg-store-table td::before {
    content: attr(data-label);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--mute);
    text-transform: uppercase;
    line-height: 1.35;
    padding-top: 0.15rem;
  }

  .gg-store-table td[data-label="Beschreibung"] {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .gg-store-table td[data-label="Beschreibung"]::before {
    padding-top: 0;
  }

  .gg-store-table td[data-label="Beschreibung"] a {
    display: block;
    line-height: 1.4;
    word-break: break-word;
  }

  .gg-store-table td[data-label="Rabatt"] b,
  .gg-store-table td[data-label="Gültig"] {
    text-align: right;
    justify-self: end;
  }

  .gg-store-table b {
    font-size: 1.05rem;
    line-height: 1.2;
  }
}

.gg-store-about,
.gg-store-faq { margin-top: 2.5rem; }

.gg-prose--store {
  max-width: none;
}

.gg-store-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 980px) {
  .gg-store-side {
    position: sticky;
    top: 96px;
  }
}

.gg-store-side__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.gg-store-side__card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin: 0 0 0.45rem;
}

.gg-store-side__card > p {
  margin: 0 0 0.9rem;
  color: var(--mute);
  font-size: 0.9rem;
}

.gg-store-side__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gg-store-side__title h3 {
  margin: 0;
}

.gg-store-side__title > i {
  color: var(--forest);
  font-size: 1.05rem;
}

.gg-store-review {
  background: linear-gradient(145deg, #fff 0%, #f8fce9 100%);
}

.gg-store-review__score {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.gg-store-review__stars {
  display: flex;
  gap: 0.22rem;
  color: #f3ad16;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.gg-store-review__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.gg-store-review__badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.5rem;
  border: 1px solid #dce9bd;
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
}

.gg-store-review > p {
  margin-bottom: 0;
}

.gg-store-side__copy {
  color: var(--mute);
  font-size: 0.88rem;
  line-height: 1.65;
}

.gg-store-side__copy > :last-child {
  margin-bottom: 0;
}

.gg-store-side__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
}

.gg-store-tips ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gg-store-tips li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.5rem;
  color: var(--mute);
  font-size: 0.84rem;
  line-height: 1.45;
}

.gg-store-tips li i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  font-size: 0.62rem;
}

.gg-store-side__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.gg-store-side__tags a {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--mist);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}

.gg-store-side__tags a:hover {
  border-color: var(--lime-deep);
  background: #f3fce0;
}

.gg-store-side__stores {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gg-store-side__stores a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.45rem;
  border-radius: 12px;
  transition: background 0.2s;
}

.gg-store-side__stores a:hover { background: var(--mist); }

.gg-store-side__stores img {
  width: 72px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 0.2rem 0.35rem;
  border: 1px solid var(--line);
}

.gg-store-side__stores strong {
  display: block;
  font-size: 0.88rem;
}

.gg-store-side__stores small {
  color: var(--mute);
  font-weight: 600;
}

.gg-store-similar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .gg-store-similar { grid-template-columns: repeat(5, 1fr); }
}

.gg-store-similar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1rem 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.gg-store-similar__item:hover {
  transform: translateY(-3px);
  border-color: var(--lime-deep);
  box-shadow: var(--shadow);
}

.gg-store-similar__item img {
  width: 96px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--line);
}

.gg-store-similar__item strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.gg-store-similar__item span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mute);
}

/* =========================================================
   Magazin (blogs) — editorial layout, distinct from hub pages
   ========================================================= */

.mz-page {
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(183, 255, 80, 0.12), transparent 55%),
    linear-gradient(180deg, #f7faf8 0%, var(--mist) 40%, var(--mist) 100%);
  padding-bottom: 0;
}

.mz-hero {
  padding: 2.75rem 0 1.5rem;
}

.mz-hero__inner {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

@media (min-width: 900px) {
  .mz-hero__inner {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

.mz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.mz-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(183, 255, 80, 0.25);
}

.mz-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 14ch;
  color: var(--ink);
}

.mz-hero__copy p {
  margin: 0;
  max-width: 36rem;
  color: var(--mute);
  font-size: 1.05rem;
}

.mz-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mz-hero__stats div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 0.85rem;
}

.mz-hero__stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.mz-hero__stats span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mz-section {
  padding: 0.5rem 0 3rem;
}

.mz-feature {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (min-width: 980px) {
  .mz-feature {
    grid-template-columns: 1.55fr 0.85fr;
    align-items: stretch;
  }
}

.mz-feature__main {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(7, 26, 20, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mz-feature__main:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .mz-feature__main {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 360px;
  }
}

.mz-feature__media {
  position: relative;
  background: var(--ink);
  min-height: 220px;
}

.mz-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mz-feature__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mz-feature__body {
  padding: 1.4rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mz-feature__body h2 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.mz-feature__body p {
  margin: 0 0 1.1rem;
  color: var(--mute);
  line-height: 1.55;
}

.mz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.mz-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 26, 20, 0.06);
  color: var(--ink-2);
  font-size: 0.72rem;
  font-weight: 750;
}

.mz-meta--light span {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.mz-read {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  color: var(--lime-deep);
}

.mz-feature__side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 22px;
  padding: 1.15rem;
}

.mz-side-label {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
}

.mz-side-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.55rem;
  border-radius: 14px;
  transition: background 0.2s;
}

.mz-side-item:hover { background: rgba(255, 255, 255, 0.06); }

.mz-side-item__thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.mz-side-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mz-side-item small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
}

.mz-side-item strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.3;
}

.mz-list-head {
  margin: 2.25rem 0 1rem;
}

.mz-list-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.mz-list {
  display: grid;
  gap: 0.85rem;
}

.mz-list__item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.mz-list__item:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 201, 31, 0.55);
  box-shadow: 0 14px 30px rgba(7, 26, 20, 0.07);
}

.mz-list__media {
  width: 110px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
}

.mz-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mz-list__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.mz-list__body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mz-list__arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(183, 255, 80, 0.25);
  color: var(--ink);
}

.mz-empty {
  margin-top: 1.5rem;
  color: var(--mute);
}

.mz-cta {
  background: var(--ink);
  color: var(--white);
  padding: 2rem 0;
}

.mz-cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.mz-cta h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.mz-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

/* Article show */
.mz-cover {
  position: relative;
  background:
    radial-gradient(900px 420px at 8% -10%, #134536 0%, transparent 55%),
    radial-gradient(700px 360px at 95% 20%, #1a5c48 0%, transparent 50%),
    var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 2rem 0 2.75rem;
}

.mz-cover__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .mz-cover__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 2.5rem;
    min-height: 360px;
  }
}

.mz-cover__text {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  min-width: 0;
}

.mz-cover__text .gg-crumbs {
  padding: 0 0 0.85rem;
}

.mz-cover__text .gg-crumbs ol {
  gap: 0.4rem 0.5rem;
  line-height: 1.45;
}

.mz-cover__text .gg-crumbs li {
  max-width: 100%;
  word-break: break-word;
}

.mz-cover__text .gg-crumbs li:last-child {
  flex: 1 1 100%;
  white-space: normal;
}

.mz-cover__text .mz-meta {
  margin: 0 0 1.1rem;
  gap: 0.5rem;
}

.mz-cover__text .gg-crumbs,
.mz-cover__text .mz-meta,
.mz-cover__text h1,
.mz-cover__text .mz-cover__lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.mz-cover h1 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.mz-cover__lead {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
}

.mz-cover__figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-height: 420px;
  padding: 0.65rem;
}

.mz-cover__figure img {
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: calc(var(--radius) - 6px);
}

.mz-article-layout {
  display: grid;
  gap: 1.5rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1000px) {
  .mz-article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }
}

.mz-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 20px 50px rgba(7, 26, 20, 0.08);
}

.mz-article__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-2);
}

.mz-article__body > p:first-of-type::first-letter {
  float: left;
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 0.85;
  padding: 0.15rem 0.45rem 0 0;
  color: var(--lime-deep);
  font-weight: 800;
}

.mz-article__body h2,
.mz-article__body h3 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  margin: 1.6rem 0 0.7rem;
}

.mz-article__body p { margin: 0 0 1rem; }
.mz-article__body img {
  max-width: 100%;
  border-radius: 14px;
  margin: 1rem 0;
}
.mz-article__body a {
  color: var(--lime-deep);
  font-weight: 700;
}

.mz-article__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.mz-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  color: var(--ink);
}

.mz-rail {
  display: grid;
  gap: 1rem;
}

.mz-rail__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
}

.mz-rail__card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.05rem;
}

.mz-rail__card > p {
  margin: 0 0 0.9rem;
  color: var(--mute);
  font-size: 0.9rem;
}

.mz-rail__list {
  display: grid;
  gap: 0.7rem;
}

.mz-rail__list a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.7rem;
  align-items: center;
}

.mz-rail__list img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--mist);
}

.mz-rail__list span {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 720px) {
  .mz-list__item {
    grid-template-columns: 88px 1fr;
  }
  .mz-list__arrow { display: none; }
  .mz-list__media {
    width: 88px;
    height: 72px;
  }
}
