/* ── TCG Blog — Design System ─────────────────────────────── */
/* Say No To Flutes: Bricolage Grotesque + Inter + JetBrains Mono, Ink/Paper/Chartreuse */
/* Token-Quelle: lab/brand/tokens.css. Legacy-Var-Namen als Aliase -> Bestandsregeln greifen weiter. */

:root {
  /* Flutes — kanonische Palette */
  --ink:         #16150F;
  --ink2:        #3b392f;
  --paper-flute: #F1EDE3;
  --surface:     #FBF9F2;
  --panel:       #E7E1D2;
  --pop:         #C8E04B;   /* Chartreuse — SPARSAM (~5% Flaeche) */
  --pop-deep:    #33420F;   /* Accent-Deep — Text auf Pop / lesbarer Akzent */
  --muted:       #8A8578;
  --line:        rgba(22,21,15,0.16);
  --line-soft:   rgba(22,21,15,0.08);

  /* Fonts */
  --disp: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Legacy-Aliase (Bestandsregeln nutzen diese Namen weiter) */
  --gold:        #33420F;   /* Kicker / Links / Labels = lesbares Olive, nicht Chartreuse */
  --gold-light:  #C8E04B;
  --gold-dim:    #C8B98A;
  --sand:        #F1EDE3;
  --sand2:       #E7E1D2;
  --sand3:       #D9D3C4;
  --paper:       #FBF9F2;
  --text:        #1c1b13;
  --text-muted:  #8A8578;
  --border:      rgba(22,21,15,0.16);
  --border-soft: rgba(22,21,15,0.08);
  --shadow:      none;
  --shadow-md:   none;
  --max-w:       740px;
  --max-w-wide:  1080px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: -1; opacity: 0.4;
}

/* Warm gradient */
body::after {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; height: 320px;
  background: linear-gradient(180deg, rgba(201,165,90,0.06) 0%, transparent 100%);
  pointer-events: none; z-index: -1;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 14px 24px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-header__logo {
  text-decoration: none;
}

.site-header__title {
  font-family: var(--disp);
  font-weight: 300;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.site-header__nav {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-group {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-dim);
  margin: 0 14px;
  flex-shrink: 0;
}

.site-header__nav a {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.site-header__nav a:hover {
  color: var(--gold);
}

/* ── Language Switcher ───────────────────────────────────── */
.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.lang-switch a {
  font-size: 18px;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
  line-height: 1;
}

.lang-switch a:hover {
  opacity: 1;
  transform: scale(1.15);
}

.lang-switch a.lang-switch__item--active {
  opacity: 1;
}

/* ── Main ─────────────────────────────────────────────────── */
.site-main {
  position: relative;
  z-index: 1;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ── Breadcrumbs ──────────────────────────────────────────── */
.breadcrumbs {
  margin-bottom: 32px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 4px;
  color: var(--sand3);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs [aria-current] {
  color: var(--text);
}

/* ── Blog Hero ────────────────────────────────────────────── */
.blog-hero {
  text-align: center;
  padding: 60px 0 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.blog-hero h1 {
  font-family: var(--disp);
  font-weight: 300;
  font-size: clamp(36px, 7vw, 64px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
}

.blog-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.blog-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Categories Grid ──────────────────────────────────────── */
.blog-categories,
.blog-recent {
  margin-top: 56px;
}

.blog-categories h2,
.blog-recent h2,
.category-page__header h1 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 24px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.cat-card {
  display: block;
  padding: 28px 24px;
  background: var(--sand);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  transition: box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
}

.cat-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.cat-card h3 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}

.cat-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cat-count {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Article Grid ─────────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.article-card {
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 24px;
}

.article-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
  background: var(--panel);
}

.article__hero {
  margin: 0 0 26px;
}
.tasting-no {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 60px 0 0;
}
.tasting-no:first-of-type { margin-top: 30px; }
.tasting-no span {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--pop);
  padding: 10px 18px 9px;
  border-radius: 4px;
  white-space: nowrap;
}
.tasting-no::after {
  content: "";
  flex: 1;
  height: 3px;
  background: var(--pop);
  border-radius: 2px;
}
.tasting-card {
  margin: 16px 0 16px;
}
.tasting-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: var(--shadow);
  background: var(--panel);
}
.article__hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: var(--shadow-md);
  background: var(--panel);
}

.article-card a {
  display: block;
  text-decoration: none;
}

.article-card__cat {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.article-card h3 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.article-card a:hover h3 {
  color: var(--gold);
}

.article-card time {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.article-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Category Page ────────────────────────────────────────── */
.category-page__header {
  margin-bottom: 40px;
}

.category-page__desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: var(--max-w);
}

.empty {
  color: var(--text-muted);
  font-style: italic;
}

/* ── Article ──────────────────────────────────────────────── */
.article {
  max-width: var(--max-w);
  margin: 0 auto;
}

.article__header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}

.article__category {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
}

.article__header h1 {
  font-family: var(--disp);
  font-weight: 300;
  font-size: clamp(32px, 6vw, 48px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}

.article__meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Prose (Article Body) ─────────────────────────────────── */
.prose h2 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.prose h3 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
}

.prose p {
  margin-bottom: 20px;
}

.prose ul, .prose ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.prose li {
  margin-bottom: 8px;
}

.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--sand);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--ink2);
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.prose th, .prose td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-soft);
}

.prose th {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: normal;
}

/* ── IG Cards ─────────────────────────────────────────────── */
.ig-card {
  display: inline-flex;
  flex-direction: column;
  width: 280px;
  margin: 16px 12px 16px 0;
  vertical-align: top;
  background: var(--sand);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.ig-card:hover {
  box-shadow: var(--shadow);
}

.ig-card a {
  display: block;
}

.ig-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.ig-card a:empty {
  display: none;
}

.ig-card figcaption {
  padding: 12px 14px;
}

.ig-card figcaption p {
  font-size: 12px;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-card__meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.ig-card__no-link {
  pointer-events: none;
}

/* ── IG Gallery (consecutive cards) ──────────────────────── */
/* IG Gallery — 2-er Blocks oder Solo zentriert (Lucas 2026-05-29).
   Carousels und Singles haben dieselbe Karten-Breite (max 400px). */
.ig-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  align-items: start;
  gap: 20px;
  margin: 32px auto;
  clear: both;
  max-width: 840px;
}

.ig-gallery .ig-card {
  width: 100%;
  margin: 0;
}

/* Solo-Card: zentriert, max 400px Breite */
.ig-gallery--single {
  grid-template-columns: minmax(0, 400px);
}

@media (max-width: 760px) {
  .ig-gallery {
    grid-template-columns: minmax(0, 400px);
    gap: 24px;
  }
  .ig-card { width: 100%; margin-right: 0; }
}

/* ── Tags ─────────────────────────────────────────────────── */
.article__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--sand);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
}

/* ── Related ──────────────────────────────────────────────── */
.related {
  max-width: var(--max-w);
  margin: 56px auto 0;
}

.related h2 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 20px;
}

.related ul {
  list-style: none;
}

.related li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.related li a {
  font-family: var(--disp);
  font-size: 18px;
  color: var(--ink);
}

.related li a:hover {
  color: var(--gold);
}

.related li span {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── Article Inline Chat ──────────────────────────────────── */
.article-chat {
  max-width: var(--max-w);
  margin: 64px auto 0;
}

.article-chat__inner {
  padding: 32px;
  background: var(--sand);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.article-chat h2 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 8px;
}

.article-chat__intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.article-chat__messages {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 12px;
}

.article-chat__msg {
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
}

.article-chat__msg--user {
  background: var(--gold);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 2px;
}

.article-chat__msg--bot {
  background: var(--paper);
  color: var(--text);
  border: 1px solid var(--border-soft);
  border-bottom-left-radius: 2px;
}

.article-chat__input {
  display: flex;
  gap: 8px;
}

.article-chat__input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  background: var(--paper);
  color: var(--text);
  outline: none;
}

.article-chat__input input:focus {
  border-color: var(--gold);
}

.article-chat__input input:disabled {
  opacity: 0.5;
}

.article-chat__input button {
  padding: 10px 16px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.article-chat__input button:hover {
  background: var(--ink);
}

.article-chat__hint {
  font-size: 11px;
  color: var(--sand3);
  margin-top: 8px;
  text-align: center;
}

.article-chat__msg--typing {
  opacity: 0.5;
  font-style: italic;
}

/* Lead form */
.article-chat__lead {
  padding: 16px 0;
}

.article-chat__lead p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
}

.article-chat__lead-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.article-chat__lead-form input {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  background: var(--paper);
  color: var(--text);
  outline: none;
}

.article-chat__lead-form input:focus {
  border-color: var(--gold);
}

.article-chat__lead-form button {
  padding: 10px 20px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.article-chat__lead-form button:hover {
  background: var(--ink);
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--ink);
  color: #fff;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-soft);
  margin-top: 80px;
  padding: 48px 24px;
}

.site-footer__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  text-align: center;
}

.site-footer__logo {
  font-family: var(--disp);
  font-weight: 300;
  font-size: 20px;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}

.site-footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.site-footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.site-footer__links a:hover {
  color: var(--gold);
}

.site-footer__copy {
  font-size: 12px;
  color: var(--sand3);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .site-header__inner {
    gap: 8px;
  }

  .site-header__nav {
    justify-content: center;
  }

  .nav-group {
    gap: 10px;
  }

  .nav-sep {
    margin: 0 10px;
  }

  .lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    justify-content: center;
  }

  .site-main {
    padding: 24px 16px 60px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .related li {
    flex-direction: column;
    gap: 4px;
  }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  body::before, body::after { display: none; }
  .site-header, .site-footer, .chat-cta, .breadcrumbs { display: none; }
  .site-main { padding: 0; max-width: 100%; }
  .article { max-width: 100%; }
  .prose { font-size: 12pt; }
}


/* ── FAQ Section (FAQPage Schema) ─────────────────────────── */
.article-faq {
  margin: 4rem 0 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(22,21,15, 0.2);
}
.article-faq h2 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 1.85rem;
  margin: 0 0 1.5rem;
  color: var(--gold, #c1a76d);
}
.faq-item {
  border-bottom: 1px solid rgba(22,21,15, 0.15);
  padding: 1rem 0;
}
.faq-item summary {
  font-family: var(--body);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 0.25rem 0;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 0;
  font-size: 1.3rem;
  color: var(--gold, #c1a76d);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0.75rem 0 0.25rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(245, 240, 230, 0.85);
}
.faq-answer p:first-child { margin-top: 0; }
.faq-answer p:last-child { margin-bottom: 0; }



/* ── IG Carousel — IG-Look Header + flanking arrows + thumb row ──────── */

/* Carousel-Card sitzt in einer Grid-Spalte wie Singles — gleicher Look, gleiche Breite */
.ig-gallery .ig-card--carousel {
  max-width: 400px;
  margin: 0;
  background: transparent;
  padding: 0;
  width: 100%;
}
.ig-card--carousel { background: transparent; }
.ig-card--carousel:hover { transform: none; }

.tcg-c {
  --pane-bg: var(--sand);
  --thumb-size: 42px;
  --thumb-gap: 5px;
  --arrow-size: 28px;
  --arrow-gap: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  outline: none;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 12px 12px;
  box-shadow: var(--shadow);
}
@media (max-width: 640px) {
  .tcg-c { --thumb-size: 48px; --arrow-size: 32px; --arrow-gap: 4px; padding: 8px 4px 10px; }
}

/* HEADER — IG-style: avatar, handle, date, external link */
.tcg-c__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 2px 4px 6px;
  border-bottom: 1px solid var(--border-soft);
}
.tcg-c__handle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 0;
}
.tcg-c__avatar {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  padding: 3px;
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.tcg-c__avatar svg { width: 100%; height: 100%; }
.tcg-c__avatar svg rect, .tcg-c__avatar svg circle { stroke: #fff !important; }
.tcg-c__handle-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.tcg-c__user {
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 400;
}
.tcg-c__date {
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.tcg-c__open {
  color: var(--text-muted);
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.tcg-c__open:hover { color: var(--gold); background: rgba(22,21,15, 0.08); }
.tcg-c__open svg { width: 18px; height: 18px; }

/* ROW — arrows flanking the image */
.tcg-c__row {
  display: flex;
  align-items: center;
  gap: var(--arrow-gap);
}
.tcg-c__nav {
  flex: 0 0 var(--arrow-size);
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, border-color 0.18s, color 0.18s;
  padding: 0;
}
.tcg-c__nav svg { width: 16px; height: 16px; }
.tcg-c__nav:hover,
.tcg-c__nav:focus-visible {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
  transform: scale(1.08);
  outline: none;
}
.tcg-c__nav:active { transform: scale(0.94); }

/* MAIN STAGE — beige bg matches page (Letterbox blends in) */
.tcg-c__main {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--pane-bg);
  border-radius: 6px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.tcg-c__main:active { cursor: grabbing; }

.tcg-c__track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.tcg-c__pane {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pane-bg);
}
.tcg-c__pane img,
.tcg-c__pane video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* Counter — top-right overlay like IG's "1/8" indicator */
.tcg-c__counter {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(26, 23, 20, 0.7);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 11px;
  font-family: var(--body);
  letter-spacing: 0.05em;
  z-index: 2;
  pointer-events: none;
  display: inline-flex;
  gap: 2px;
}
.tcg-c__counter-cur { color: #fff; font-weight: 400; }
.tcg-c__counter-sep { opacity: 0.6; }
.tcg-c__counter-total { opacity: 0.85; }

/* THUMBS — compact row */
.tcg-c__thumbs {
  display: flex;
  gap: var(--thumb-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 2px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tcg-c__thumbs::-webkit-scrollbar { display: none; }
@supports (justify-content: safe center) {
  .tcg-c__thumbs { justify-content: safe center; }
}

.tcg-c__thumb {
  flex: 0 0 var(--thumb-size);
  width: var(--thumb-size);
  height: var(--thumb-size);
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 0;
  background: var(--sand2);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, opacity 0.2s, box-shadow 0.2s;
}
.tcg-c__thumb img, .tcg-c__thumb video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tcg-c__thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 4px 12px rgba(22,21,15, 0.2);
}
.tcg-c__thumb:not(.is-active):hover,
.tcg-c__thumb:not(.is-active):focus-visible {
  opacity: 0.92;
  outline: none;
}
.tcg-c__thumb-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 100%);
  transition: opacity 0.2s;
}
.tcg-c__thumb-play svg {
  width: 16px; height: 16px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.7));
}
.tcg-c__thumb.is-active .tcg-c__thumb-play { opacity: 0; }

/* Hint pulse on the 2nd thumb */
@keyframes tcg-c-thumb-hint {
  0%, 100% { transform: translateY(0) scale(1); }
  30%      { transform: translateY(-3px) scale(1.12); box-shadow: 0 6px 14px rgba(22,21,15, 0.35); }
  60%      { transform: translateY(0) scale(1.04); }
}
.tcg-c__thumb--hint {
  animation: tcg-c-thumb-hint 1.5s ease-in-out 1;
  opacity: 1 !important;
}

/* Caption below the carousel — bigger spacing, looks like an IG caption */
.ig-card--carousel figcaption,
.tcg-c__caption {
  padding: 0.5rem 0.35rem 0.25rem;
}
.tcg-c__caption-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: pre-line;
  word-break: break-word;
}
.tcg-c__caption-user {
  font-weight: 600;
  color: var(--ink);
  margin-right: 5px;
  letter-spacing: 0.01em;
}
.tcg-c__readmore {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.18s ease;
}
.tcg-c__readmore:hover { color: var(--gold); }

/* Single-Image-Card im IG-Look — gleiche tcg-c-Struktur, ohne Carousel-Mechanik */
.ig-card--single,
.ig-gallery .ig-card--single {
  max-width: 400px;
  margin: 0;
  background: transparent;
  padding: 0;
  width: 100%;
}
.ig-card--single:hover { transform: none; }

.tcg-c--solo .tcg-c__main {
  /* Bild füllt 4:5 Stage komplett, beige Letterbox bei abweichenden Aspects */
  cursor: pointer;
  text-decoration: none;
}
.tcg-c--solo .tcg-c__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.tcg-c__main--link {
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   BRAND v2 · SAY NO TO FLUTES — Blog-Override
   Editorial-punk, hoher Kontrast: flach (keine Schatten), Hairline-
   Ink-Borders, scharfe Radien, Mono-Kicker, Chartreuse nur als Pop.
   Cascade-last: ueberschreibt Bestandsregeln ohne sie umzubauen.
   ════════════════════════════════════════════════════════════════ */

/* Warmen Gold-Verlauf neutralisieren (war gold-getoent) */
body::after {
  background: linear-gradient(180deg, rgba(22,21,15,0.035) 0%, transparent 100%) !important;
}
body { font-feature-settings: 'cv05','ss01'; }

/* ── Flach: alle weichen Schatten weg ── */
.cat-card, .ig-card, .tcg-c, .article-chat__inner, .article-card {
  box-shadow: none !important;
}

/* ── Display-Headings: Bricolage schwer, eng, kein Thin ── */
.blog-hero h1,
.article__header h1,
.blog-categories h2, .blog-recent h2,
.category-page__header h1,
.prose h2, .prose h3,
.related h2, .article-chat h2, .article-faq h2 {
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}
.blog-hero h1, .article__header h1 { font-weight: 800 !important; letter-spacing: -0.03em; }
.blog-hero h1 em, .article__header h1 em {
  font-style: normal;
  color: var(--ink);
  background: var(--pop);
  padding: 0 0.12em;
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ── Mono-Kicker statt zarter Gold-Labels ── */
.article-card__cat, .article__category, .cat-count {
  font-family: var(--mono) !important;
  font-weight: 500;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  color: var(--pop-deep) !important;
}

/* ── Kategorie-Karten: Hairline, scharf, Chartreuse-Top-Rule + Index ── */
.cat-grid { counter-reset: catnum; }
.cat-card {
  position: relative;
  counter-increment: catnum;
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: 3px !important;
  padding-top: 40px !important;
  transition: border-color 0.2s, background 0.2s !important;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--pop);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s ease;
}
.cat-card::after {
  content: counter(catnum, decimal-leading-zero);
  position: absolute; top: 14px; right: 16px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.cat-card:hover {
  border-color: var(--line);
  background: var(--paper-flute) !important;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover::after { color: var(--pop-deep); }
.cat-card h3 { font-weight: 700 !important; letter-spacing: -0.01em; }

/* ── Artikel-Karten: Hairline-Trenner, Mono-Index, Chartreuse-Hover ── */
.article-grid { counter-reset: artnum; }
.article-card {
  counter-increment: artnum;
  border-bottom: 1px solid var(--line) !important;
  position: relative;
  padding-left: 34px;
}
.article-card::before {
  content: counter(artnum, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.article-card h3 { font-weight: 700 !important; letter-spacing: -0.01em; }
.article-card a:hover h3 { color: var(--pop-deep) !important; }

/* ── Links: lesbares Olive, Ink auf Hover ── */
a { color: var(--pop-deep); }
a:hover { color: var(--ink); }

/* ── Header: Wortmarke + Hairline ── */
.site-header { background: rgba(251,249,242,0.9) !important; border-bottom: 1px solid var(--line) !important; }
.site-header__title {
  font-family: var(--disp) !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase;
  color: var(--ink) !important;
  display: inline-flex; align-items: baseline; gap: 0.28em;
}
.site-header__title .gy {
  background: var(--pop); color: var(--ink);
  padding: 0 0.2em; border-radius: 2px;
}
.site-header__nav a {
  font-family: var(--mono) !important;
  font-size: 10.5px !important;
  letter-spacing: 0.1em !important;
}
.site-header__nav a:hover { color: var(--pop-deep) !important; }
.nav-sep { background: var(--line) !important; }

/* ── Breadcrumbs mono ── */
.breadcrumbs ol { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; }
.breadcrumbs a:hover { color: var(--pop-deep); }

/* ── Tags: Mono-Chips, scharf ── */
.tag {
  font-family: var(--mono) !important;
  background: transparent !important;
  border: 1px solid var(--line) !important;
  border-radius: 2px !important;
  color: var(--muted) !important;
  letter-spacing: 0.08em;
}

/* ── Prose: Chartreuse-Akzent ── */
.prose blockquote {
  border-left: 3px solid var(--pop) !important;
  background: var(--paper-flute) !important;
  border-radius: 0 2px 2px 0 !important;
  font-style: normal;
}
.prose a { text-decoration: underline; text-decoration-color: var(--pop); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--ink); }

/* ── Related: scharf ── */
.related li { border-bottom: 1px solid var(--line) !important; }
.related li a { font-weight: 600 !important; }
.related li a:hover { color: var(--pop-deep) !important; }

/* ── Buttons: Ink-Fill, scharf ── */
.btn {
  font-family: var(--mono) !important;
  background: var(--ink) !important;
  border-radius: 2px !important;
  letter-spacing: 0.1em;
}
.btn:hover { background: var(--pop-deep) !important; }

/* ── FAQ: Text-Bug fix (war fast-weiss auf hell) + Chartreuse ── */
.article-faq { border-top: 1px solid var(--line) !important; }
.article-faq h2 { color: var(--ink) !important; }
.faq-item { border-bottom: 1px solid var(--line) !important; }
.faq-item summary::after { color: var(--pop-deep) !important; }
.faq-answer { color: var(--text) !important; }

/* ── IG-Karten / Carousel: Hairline + Chartreuse-Nav ── */
.ig-card, .tcg-c { border: 1px solid var(--line) !important; border-radius: 3px !important; }
.tcg-c__nav { color: var(--pop-deep) !important; border-color: var(--line) !important; border-radius: 2px !important; }
.tcg-c__nav:hover, .tcg-c__nav:focus-visible { background: var(--ink) !important; color: var(--pop) !important; border-color: var(--ink) !important; }
.tcg-c__open:hover { color: var(--pop-deep) !important; background: rgba(22,21,15,0.05) !important; }
.tcg-c__thumb.is-active { border-color: var(--pop) !important; box-shadow: none !important; }
.tcg-c__user { font-weight: 600 !important; }

/* ════════════════════════════════════════════════════════════════
   STOERER #1 — Article-Chat als Ink-Panel (auf jedem Artikel)
   ════════════════════════════════════════════════════════════════ */
.article-chat__inner {
  background: var(--ink) !important;
  border: 1px solid var(--ink) !important;
  border-radius: 4px !important;
  padding: 36px 32px !important;
  position: relative;
  overflow: hidden;
}
.article-chat__inner::before {
  content: 'SAY NO TO FLUTES · NO.0661';
  position: absolute; top: 0; left: 0; right: 0;
  padding: 8px 32px;
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.22em; color: var(--pop);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.article-chat h2 { color: var(--surface) !important; margin-top: 22px !important; }
.article-chat__intro { color: rgba(241,237,227,0.6) !important; }
.article-chat__msg--bot {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: rgba(241,237,227,0.92) !important;
}
.article-chat__msg--user {
  background: var(--pop) !important;
  color: var(--ink) !important;
}
.article-chat__input input,
.article-chat__lead-form input {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  color: var(--surface) !important;
  border-radius: 2px !important;
}
.article-chat__input input::placeholder,
.article-chat__lead-form input::placeholder { color: rgba(241,237,227,0.4); }
.article-chat__input input:focus,
.article-chat__lead-form input:focus { border-color: var(--pop) !important; }
.article-chat__input button,
.article-chat__lead-form button {
  background: var(--pop) !important;
  color: var(--ink) !important;
  border-radius: 2px !important;
  font-family: var(--mono) !important;
  font-weight: 600;
}
.article-chat__input button:hover,
.article-chat__lead-form button:hover { background: var(--surface) !important; }
.article-chat__lead p { color: rgba(241,237,227,0.92) !important; }
.article-chat__hint { color: rgba(241,237,227,0.4) !important; }

/* ════════════════════════════════════════════════════════════════
   STOERER #2 — Stance-Strip (Blog-Index, zwischen Hero + Kategorien)
   ════════════════════════════════════════════════════════════════ */
.stance-strip {
  margin: 8px auto 48px;
  max-width: var(--max-w-wide);
  background: var(--ink);
  border-radius: 4px;
  padding: 20px 28px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 14px 28px;
  text-align: center;
}
.stance-strip span {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(241,237,227,0.7);
}
.stance-strip .pop { color: var(--pop); }
.stance-strip .dot { color: rgba(255,255,255,0.25); }

/* ════════════════════════════════════════════════════════════════
   STOERER #3 — Globales Newsletter-Signup-Band (vor Footer)
   ════════════════════════════════════════════════════════════════ */
.nl-band {
  position: relative; z-index: 1;
  background: var(--ink);
  margin-top: 80px;
  padding: 56px 24px;
  overflow: hidden;
}
.nl-band__inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.nl-band__kicker {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--pop); margin-bottom: 14px;
}
.nl-band__title {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(26px, 4.5vw, 38px); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--surface);
  margin-bottom: 12px;
}
.nl-band__title .gy { background: var(--pop); color: var(--ink); padding: 0 0.14em; border-radius: 2px; }
.nl-band__sub {
  font-size: 14px; color: rgba(241,237,227,0.6);
  max-width: 440px; margin: 0 auto 24px; line-height: 1.55;
}
.nl-band__form { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; max-width: 460px; margin: 0 auto; }
.nl-band__form input {
  flex: 1; min-width: 200px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  color: var(--surface); font-family: var(--body); font-size: 14px;
  outline: none;
}
.nl-band__form input::placeholder { color: rgba(241,237,227,0.42); }
.nl-band__form input:focus { border-color: var(--pop); }
.nl-band__form button {
  padding: 13px 26px;
  background: var(--pop); color: var(--ink);
  border: none; border-radius: 2px;
  font-family: var(--mono); font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.nl-band__form button:hover { background: var(--surface); }
.nl-band__done { color: var(--pop); font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; }
.nl-band__note { margin-top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(241,237,227,0.32); }

/* ════════════════════════════════════════════════════════════════
   Footer — Ink (wie Newsletter-Footer), TULIP NOT FLUTE
   ════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink) !important;
  border-top: none !important;
  margin-top: 0 !important;
}
.site-footer__logo {
  font-family: var(--disp) !important; font-weight: 800 !important;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--surface) !important; font-size: 18px !important;
}
.site-footer__brand p { color: rgba(241,237,227,0.55) !important; }
.site-footer__links a {
  font-family: var(--mono) !important; font-size: 11px !important;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(241,237,227,0.7) !important;
}
.site-footer__links a:hover { color: var(--pop) !important; }
.site-footer__copy { color: rgba(241,237,227,0.32) !important; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; }
.site-footer__stance {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--pop); margin-bottom: 18px;
}

/* ════════════════════════════════════════════════════════════════
   BRAND v2 — Komponenten (Stempel, Statement, Tasting-Card, Pills)
   ════════════════════════════════════════════════════════════════ */

/* ── Stance-Stempel (rotierendes Siegel) ── */
.tcg-seal { width: 100px; height: 100px; position: relative; flex: none; }
.tcg-seal__ring { width: 100%; height: 100%; display: block; animation: tcg-seal-spin 26s linear infinite; }
.tcg-seal__mid { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
@keyframes tcg-seal-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .tcg-seal__ring { animation: none; } }

/* Siegel im Newsletter-Band (oben rechts, site-weit) */
.nl-band__seal { position: absolute; top: 20px; right: 24px; width: 80px; height: 80px; opacity: 0.95; }
@media (max-width: 720px) { .nl-band__seal { display: none; } }

/* ════════════════════════════════════════════════════════════════
   STOERER #4 — Hero-Statement (Ink, Blog-Index): „Ich nicht."
   ════════════════════════════════════════════════════════════════ */
.blog-statement {
  position: relative;
  max-width: var(--max-w-wide);
  margin: 8px auto 56px;
  background: var(--ink);
  border-radius: 4px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  overflow: hidden;
}
.blog-statement__ey {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--pop); margin-bottom: 16px;
}
.blog-statement h2 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(28px, 5vw, 50px); line-height: 0.98;
  letter-spacing: -0.03em; color: var(--surface);
  margin: 0 0 16px; max-width: 16ch;
}
.blog-statement h2 em {
  font-style: normal; background: var(--pop); color: var(--ink);
  padding: 0 0.1em; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.blog-statement__sub {
  font-size: 14px; color: rgba(241,237,227,0.62);
  max-width: 46ch; line-height: 1.6; margin: 0 0 26px;
}
.blog-statement__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.blog-statement__visual { display: flex; align-items: center; gap: 26px; }
.tulip-vs { display: flex; align-items: flex-end; gap: 22px; }
.tulip-vs__lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(241,237,227,0.4); text-align: center; margin-top: 8px; }
.tulip-vs figure { margin: 0; display: flex; flex-direction: column; align-items: center; }
@media (max-width: 820px) {
  .blog-statement { grid-template-columns: 1fr; padding: 40px 24px; gap: 30px; }
  .blog-statement__visual { justify-content: flex-start; }
}

/* ── Brand-Buttons (Solid + Ghost) ── */
.tcg-btn {
  font-family: var(--mono); font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 2px;
  border: 1.5px solid var(--pop); background: var(--pop); color: var(--ink);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.tcg-btn:hover { background: var(--surface); color: var(--ink); border-color: var(--surface); }
.tcg-btn--ghost { background: transparent; color: var(--surface); border-color: rgba(241,237,227,0.4); }
.tcg-btn--ghost:hover { background: rgba(241,237,227,0.06); color: var(--surface); border-color: var(--pop); }

/* ════════════════════════════════════════════════════════════════
   Tasting-Card — flaschen-Kategorie als Ink-Karten (Verkostungs-Format)
   ════════════════════════════════════════════════════════════════ */
.tcard {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--ink) !important;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.18s;
}
.tcard a {
  display: flex; flex-direction: column; height: 100%;
  padding: 0; text-decoration: none; color: inherit;
}
.tcard__pad { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 20px; }
.tcard__img { width: 100%; margin: 0; aspect-ratio: 1200 / 630; object-fit: cover; display: block; background: var(--panel); }
.tcard__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.tcard__k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: rgba(241,237,227,0.5); }
.tcard__badge {
  font-family: var(--mono); font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em;
  background: var(--pop); color: var(--ink); padding: 3px 7px; border-radius: 2px; flex: none;
}
.tcard h3 {
  font-family: var(--disp); font-weight: 800; font-size: 21px;
  letter-spacing: -0.02em; line-height: 1.06; color: var(--surface);
  margin: 0 0 8px; transition: color 0.18s;
}
.tcard p { font-family: var(--body); font-size: 13px; line-height: 1.55; color: rgba(241,237,227,0.6); margin: 0 0 16px; }
.tcard__pills { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.tcard:hover { border-color: var(--pop) !important; }
.tcard:hover h3 { color: var(--pop); }

/* ── Pills (Mono-Outline + Fill) ── */
.pill {
  display: inline-block; font-family: var(--mono); font-weight: 500;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid rgba(241,237,227,0.28);
  border-radius: 100px; color: rgba(241,237,227,0.78); white-space: nowrap;
}
.pill--fill { background: var(--pop); color: var(--ink); border-color: var(--pop); }

/* ════════════════════════════════════════════════════════════
   PER-KATEGORIE CARDS — jede Kategorie eine eigene Optik,
   damit sich die Kategorie-Seiten klar voneinander abheben.
   flaschen = Tasting-Card (.tcard, Ink) ist das Vorbild.
   ════════════════════════════════════════════════════════════ */

/* Gemeinsame Basis (Light-Cards, hairline, scharfe Kante) */
.mcard, .ycard, .gcard, .rcard, .kcard, .acard, .ucard, .ncard {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  transition: border-color 0.18s, transform 0.18s;
}
.mcard a, .ycard a, .gcard a, .rcard a, .kcard a, .acard a, .ucard a, .ncard a {
  display: flex; flex-direction: column; height: 100%;
  padding: 22px 22px 20px; text-decoration: none; color: inherit;
}
.mcard h3, .ycard h3, .gcard h3, .rcard h3, .kcard h3, .acard h3, .ucard h3, .ncard h3 {
  font-family: var(--disp); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.08; color: var(--ink); margin: 0 0 7px;
  font-size: 20px; transition: color 0.18s;
}
.mcard p, .ycard p, .gcard p, .rcard p, .kcard p, .acard p, .ucard p, .ncard p {
  font-family: var(--body); font-size: 13px; line-height: 1.55;
  color: var(--ink2); margin: 0;
}
.mcard__k, .ycard__k, .gcard__k, .rcard__k, .acard__k, .ucard__k, .ncard__line {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 10px; display: inline-flex; align-items: center; gap: 7px;
}
.mcard:hover, .ycard:hover, .gcard:hover, .rcard:hover,
.kcard:hover, .acard:hover, .ucard:hover, .ncard:hover {
  border-color: var(--ink); transform: translateY(-2px);
}
.mcard:hover h3, .ycard:hover h3, .gcard:hover h3, .rcard:hover h3,
.kcard:hover h3, .acard:hover h3, .ucard:hover h3, .ncard:hover h3 {
  color: var(--pop-deep);
}

/* ── haeuser: Maison-Dossier (Chartreuse-Spine links) ── */
.mcard { border-left: 3px solid var(--pop); }
.mcard__meta {
  margin-top: 14px; padding-top: 12px; font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.04em; color: var(--muted);
  border-top: 1px solid var(--border-soft);
}

/* ── jahrgaenge: Millesime-Hero (Riesen-Jahr) ── */
.ycard__year {
  font-family: var(--disp); font-weight: 800; font-size: 54px;
  line-height: 0.92; letter-spacing: -0.03em; color: var(--ink);
  margin: 2px 0 12px; transition: color 0.18s;
}
.ycard:hover .ycard__year { color: var(--pop-deep); }
.ycard p { margin-top: auto; }

/* ── rebsorten: Cepage (botanisches Initial im Chartreuse-Kreis) ── */
.gcard a { flex-direction: row; align-items: flex-start; gap: 16px; }
.gcard__dot {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--pop); color: var(--ink);
  font-family: var(--mono); font-weight: 700; font-size: 15px; letter-spacing: 0.03em;
  display: flex; align-items: center; justify-content: center;
}
.gcard__body { display: flex; flex-direction: column; }

/* ── regionen: Terroir-Karte (gestrichelte Hairline + Eck-Tick) ── */
.rcard { border-style: dashed; }
.rcard__tick {
  position: absolute; top: -1px; right: -1px; width: 14px; height: 14px;
  border-top: 2px solid var(--pop); border-right: 2px solid var(--pop);
}

/* ── wissen: Lexikon (nummerierte Lektion + Pfeil) ── */
.kcard a { flex-direction: row; align-items: flex-start; gap: 14px; }
.kcard__no {
  flex: none; font-family: var(--mono); font-weight: 700; font-size: 13px;
  color: var(--pop-deep); border: 1px solid var(--pop);
  padding: 6px 8px; border-radius: 3px; line-height: 1;
}
.kcard__body { flex: 1; display: flex; flex-direction: column; }
.kcard__arrow {
  flex: none; align-self: center; font-size: 18px; color: var(--muted);
  transition: color 0.18s, transform 0.18s;
}
.kcard:hover .kcard__arrow { color: var(--pop-deep); transform: translateX(3px); }

/* ── aromen: Aroma-Card (sensorisch, Panel-Ton + Punkt-Akzent) ── */
.acard { background: var(--panel); }
.acard__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pop); display: inline-block;
}

/* ── tools: Utility-Tile (Chartreuse-CTA) ── */
.ucard__cta {
  margin-top: 16px; align-self: flex-start;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--ink);
  border-bottom: 2px solid var(--pop); padding-bottom: 2px;
  transition: color 0.18s;
}
.ucard:hover .ucard__cta { color: var(--pop-deep); }

/* ── news: Dispatch (Editorial-Dateline + Trennlinie) ── */
.ncard__line {
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid var(--ink); width: 100%;
}

@media (max-width: 640px) {
  .ycard__year { font-size: 46px; }
  .gcard a, .kcard a { gap: 12px; }
}

/* Mobile-Feinschliff */
@media (max-width: 640px) {
  .article-chat__inner { padding: 30px 18px !important; }
  .article-chat__inner::before { padding: 8px 18px; }
  .stance-strip { padding: 18px 16px; gap: 10px 16px; }
  .stance-strip span { font-size: 10.5px; letter-spacing: 0.14em; }
  .nl-band { padding: 44px 18px; }
  .cat-card { padding-top: 40px !important; }
  .blog-statement { margin-bottom: 40px; }
  .tulip-vs { gap: 16px; }
}

/* Editorial-Update — Zeitlich begrenzte Korrektur-Notiz (verschwindet nach Ablauf) */
.editorial-update {
  margin: 24px 0;
  padding: 14px 18px 14px 22px;
  background: var(--surface, var(--paper));
  border-left: 3px solid var(--accent, #C8E04B);
  border-radius: 4px;
  position: relative;
  font-size: 0.92rem;
}
.editorial-update::before {
  content: 'Editorial-Update';
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted, var(--text-muted));
  margin-bottom: 6px;
}
.editorial-update p { margin: 0 0 6px; }
.editorial-update p:last-child { margin-bottom: 0; }
.editorial-update strong { color: var(--ink); }

/* ── Regionen-Landingpage Baumstruktur ──────────────────── */
/* .reg-tree wird vom Build in .article-grid eingebettet — sie soll die volle Grid-Breite nehmen,
   nicht eine 300px-Spalte (default-Verhalten von .article-grid für „normale" Artikel). */
.reg-tree {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}
.reg-sec-title {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 22px;
}
.reg-sec-title--sub { font-size: 20px; margin: 32px 0 14px; font-weight: 600; }
.reg-sec-count {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
}

/* Hero: Champagne-Übersicht — full content width, prominent */
.reg-hero {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.reg-hero:hover { box-shadow: var(--shadow); border-color: var(--border); }
.reg-hero__map {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--sand);
  border-bottom: 1px solid var(--border-soft);
}
.reg-hero__body {
  padding: 28px 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
}
.reg-hero__kicker {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink);
  background: var(--accent); padding: 4px 10px; border-radius: 3px;
  align-self: flex-start;
}
.reg-hero h2 {
  font-family: var(--disp); font-weight: 700; font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.022em; color: var(--ink); margin: 6px 0 8px; line-height: 1.05;
}
.reg-hero p { font-size: 15px; color: var(--text-muted); line-height: 1.5; margin: 0 0 12px; }
.reg-hero__cta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--gold); text-transform: uppercase;
}
@media (max-width: 760px) {
  .reg-hero__map { aspect-ratio: 4 / 3; }
  .reg-hero__body { padding: 22px 22px 26px; }
}

/* Subregion-Grid: 2 Spalten, jede ca. halb so groß wie der Hero */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
/* Communes-Grid: 4 Spalten */
.reg-grid--communes { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 980px) {
  .reg-grid--communes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .reg-grid { grid-template-columns: 1fr; }
  .reg-grid--communes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px) {
  .reg-grid--communes { grid-template-columns: 1fr; }
}

.reg-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.reg-card:hover { border-color: var(--border); transform: translateY(-2px); box-shadow: var(--shadow); }
.reg-card__map {
  aspect-ratio: 3 / 2;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--sand);
  border-bottom: 1px solid var(--border-soft);
}
.reg-card__map--small { aspect-ratio: 1 / 1; }
.reg-card__body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.reg-card__kicker {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.reg-card h3 {
  font-family: var(--disp); font-weight: 700; font-size: 19px;
  letter-spacing: -0.014em; color: var(--ink); margin: 2px 0 4px;
}
.reg-card h4 {
  font-family: var(--disp); font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em; color: var(--ink); margin: 0;
}
.reg-card p {
  font-size: 12.5px; color: var(--text-muted); line-height: 1.45; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.reg-communes { margin-top: 14px; }
.reg-commune-wrap { padding-top: 8px; }

/* ── Pagefind-Suche: FAB oben links + Modal ────────────────────────── */
.tcg-search-fab {
  position: fixed;
  top: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--paper-flute);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(22,21,15,.08);
  transition: background .15s, color .15s, transform .15s, box-shadow .15s;
}
.tcg-search-fab:hover {
  background: var(--pop);
  color: var(--ink);
  border-color: var(--ink);
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(22,21,15,.14);
}
.tcg-search-fab svg { width: 19px; height: 19px; }
@media (max-width: 720px) {
  .tcg-search-fab { top: 10px; left: 10px; width: 40px; height: 40px; }
  .tcg-search-fab svg { width: 17px; height: 17px; }
}
/* Such-Panel als Vollbild-Modal — Input optisch mittig */
.site-header__search {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--paper-flute);
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
  /* Dezente Chartreuse-Akzent-Linie oben */
  border-top: 3px solid var(--pop);
}
.site-header__search[hidden] { display: none; }
.site-header__search #search {
  max-width: 760px;
  margin: 0 auto;
  /* Top-Padding bringt Input visuell auf ~30% Höhe — fühlt sich „mittig" an */
  padding: 22vh 24px 120px;
}
@media (max-width: 720px) {
  .site-header__search #search { padding: 14vh 16px 100px; }
}
/* Close-Button oben rechts */
.tcg-search-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--paper-flute);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background .15s, color .15s;
}
.tcg-search-close:hover {
  background: var(--ink);
  color: var(--paper-flute);
}
.tcg-search-close svg { width: 18px; height: 18px; }
body.tcg-search-open { overflow: hidden; }

/* Pagefind UI — Brand-Override */
.pagefind-ui {
  --pagefind-ui-primary: var(--ink);
  --pagefind-ui-text: var(--ink);
  --pagefind-ui-background: var(--paper-flute);
  --pagefind-ui-border: var(--line);
  --pagefind-ui-tag: var(--pop);
  --pagefind-ui-border-width: 1px;
  --pagefind-ui-border-radius: 4px;
  --pagefind-ui-font: var(--body);
  --pagefind-ui-image-border-radius: 4px;
  --pagefind-ui-image-box-ratio: 3 / 2;
}

/* Such-Input — groß, Chartreuse-Focus-Glow */
.pagefind-ui__search-input {
  background: var(--surface) !important;
  border: 1.5px solid var(--ink) !important;
  border-radius: 6px !important;
  font-family: var(--disp) !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  color: var(--ink) !important;
  padding: 18px 110px 18px 22px !important;
  box-shadow: none !important;
  transition: border-color .15s, box-shadow .15s !important;
}
.pagefind-ui__search-input:focus {
  outline: none !important;
  border-color: var(--ink) !important;
  box-shadow: 0 0 0 3px var(--pop) !important;
}
.pagefind-ui__search-input::placeholder {
  color: var(--muted) !important;
  font-style: normal;
  font-weight: 400 !important;
}

/* Clear-Button (rechts im Input, jetzt „Suchen") — Chartreuse-Pill */
.pagefind-ui__search-clear {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--pop-deep) !important;
  background: var(--pop) !important;
  border-radius: 999px !important;
  padding: 6px 14px !important;
  margin-right: 8px !important;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s !important;
}
.pagefind-ui__search-clear:hover {
  background: var(--ink) !important;
  color: var(--paper-flute) !important;
  transform: scale(1.03);
}

/* Status-Zeile „N Ergebnisse für X" — mit Chartreuse-Punkt */
.pagefind-ui__message {
  font-family: var(--mono) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ink2) !important;
  margin: 32px 0 18px !important;
  padding: 0 0 12px 16px !important;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.pagefind-ui__message::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pop);
}

/* Ergebnis-Liste */
.pagefind-ui__results {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 !important;
  list-style: none !important;
}
.pagefind-ui__result {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-left: 3px solid transparent;
  border-radius: 4px;
  padding: 16px 18px !important;
  transition: border-color .15s, transform .15s;
}
.pagefind-ui__result:hover {
  border-color: var(--line);
  border-left-color: var(--pop);
  transform: translateX(2px);
}
.pagefind-ui__result + .pagefind-ui__result {
  margin-top: 0 !important;
}

/* Ergebnis-Titel */
.pagefind-ui__result-title {
  font-family: var(--disp) !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 6px !important;
  line-height: 1.25;
}
.pagefind-ui__result-link {
  color: var(--ink) !important;
  text-decoration: none !important;
  background: none !important;
}
.pagefind-ui__result-link:hover {
  color: var(--pop-deep) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--pop) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
}

/* Ergebnis-Excerpt */
.pagefind-ui__result-excerpt {
  font-family: var(--body) !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  color: var(--ink2) !important;
  margin: 0 !important;
}

/* Mark-Highlights innerhalb der Excerpts — Chartreuse, nicht Browser-Gelb */
.pagefind-ui__result-excerpt mark,
.pagefind-ui__result mark {
  background: var(--pop) !important;
  color: var(--pop-deep) !important;
  padding: 1px 3px;
  border-radius: 2px;
  font-weight: 600;
}

/* „Mehr Ergebnisse laden"-Button */
.pagefind-ui__button {
  font-family: var(--mono) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  background: transparent !important;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  padding: 10px 24px !important;
  margin-top: 18px !important;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.pagefind-ui__button:hover {
  background: var(--ink) !important;
  color: var(--paper-flute) !important;
}

/* „Filter / Sort" Tags (falls je sichtbar) */
.pagefind-ui__filter-name,
.pagefind-ui__filter-value {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--ink2) !important;
}

/* „Keine Treffer"-State */
.pagefind-ui__result-nested {
  border-left: 2px solid var(--pop) !important;
  padding-left: 12px !important;
  margin-top: 8px !important;
}

/* Maison → Cuvées Linkliste (interne Verlinkung, auto in build.js) */
.maison-cuvees{margin-top:2.5rem;border-top:1px solid var(--line,rgba(22,21,15,.14));padding-top:1.25rem}
.maison-cuvees h2{font-size:1.1rem;margin:0 0 .6rem}
.maison-cuvees ul{list-style:none;padding:0;margin:0;columns:2;column-gap:1.5rem}
.maison-cuvees li{break-inside:avoid;margin:.15rem 0}
@media(max-width:640px){.maison-cuvees ul{columns:1}}
.related-growers,.wissen-related{margin-top:2.5rem;border-top:1px solid var(--line,rgba(22,21,15,.14));padding-top:1.25rem}
.related-growers h2,.wissen-related h2{font-size:1.1rem;margin:0 0 .6rem}
.related-growers ul,.wissen-related ul{list-style:none;padding:0;margin:0;columns:2;column-gap:1.5rem}
.related-growers li,.wissen-related li{break-inside:avoid;margin:.15rem 0}
@media(max-width:640px){.related-growers ul,.wissen-related ul{columns:1}}
.region-growers{margin-top:2.5rem;border-top:1px solid var(--line,rgba(22,21,15,.14));padding-top:1.25rem}
.region-growers h2{font-size:1.1rem;margin:0 0 .6rem}
.region-growers ul{list-style:none;padding:0;margin:0;columns:3;column-gap:1.5rem}
.region-growers li{break-inside:avoid;margin:.15rem 0}
@media(max-width:900px){.region-growers ul{columns:2}}
@media(max-width:640px){.region-growers ul{columns:1}}
.topic-cuvees{margin-top:2.5rem;border-top:1px solid var(--line,rgba(22,21,15,.14));padding-top:1.25rem}
.topic-cuvees h2{font-size:1.1rem;margin:0 0 .6rem}
.topic-cuvees ul{list-style:none;padding:0;margin:0;columns:2;column-gap:1.5rem}
.topic-cuvees li{break-inside:avoid;margin:.15rem 0}
@media(max-width:640px){.topic-cuvees ul{columns:1}}
