/*!
 * THK Verlag — Verlags-Block-Stylesheet (v0.9.0)
 *
 * CSS für die vier verlagsspezifischen CMS-Blöcke und für den
 * Vorschau-Banner der Site\Seite-View.
 *
 *   .thk-block--buecher    — Buch-Grid (Cover-Karte, Titel, Autor, Preis)
 *   .thk-block--autoren    — Autoren-Galerie (Portrait, Name, Vita-Snippet)
 *   .thk-block--usp        — Vertrauensbalken mit 3-4 Pillars (Icon + Titel + Kurztext)
 *   .thk-block--newsletter — Anmelde-Box (Settings-Defaults + per-Block-Overrides)
 *
 * Zusätzlich:
 *   .thk-block / .thk-block-kopf / .thk-block-titel / .thk-block-untertitel
 *   .thk-block-leer      — "Keine X gefunden"-Status
 *   .thk-vorschau-banner — Hinweis-Banner bei Entwurfs-/Archiv-Seiten
 *
 * @copyright (C) THK-Verlag UG / Jens Richter Agentur
 * @license   Proprietary
 */

/* ── Vorschau-Banner ──────────────────────────────────────────────────── */

.thk-vorschau-banner {
  background: #fef3c7;
  color: #92400e;
  border-bottom: 1px solid #fde68a;
  padding: .65rem 1.25rem;
  font-size: .9rem;
  text-align: center;
}
.thk-vorschau-banner strong { font-weight: 700; }
.thk-vorschau-banner a {
  color: #92400e;
  text-decoration: underline;
  margin-left: .5rem;
}

/* ── Basis-Block ──────────────────────────────────────────────────────── */

.thk-block { margin: 3rem 0; }
.thk-block-kopf { text-align: center; margin-bottom: 2rem; }
.thk-block-titel {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--thk-tinte);
  margin: 0 0 .5rem;
}
.thk-block-untertitel {
  margin: 0;
  color: var(--thk-text-mute);
  font-size: 1.05rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.thk-block-leer {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--thk-text-mute);
  font-style: italic;
}

.thk-seite-kopf { text-align: center; margin: 1.5rem 0 2rem; }
.thk-seite-titel { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.4rem; margin: 0 0 .35rem; color: var(--thk-tinte); }
.thk-seite-untertitel { color: var(--thk-text-mute); font-size: 1.1rem; margin: 0; }
.thk-seite-leer { text-align: center; padding: 3rem 1rem; color: var(--thk-text-mute); }

/* ── BUECHER-GRID ──────────────────────────────────────────────────────── */

.thk-block--buecher .thk-buecher-grid {
  /* v0.19.6.0 — wie .book-grid/.thk-buecher-grid in site.css:
     Dichte aus Setting `liste_card_dichte` via `--card-min`.
     Mobile-Breakpoints darunter überschreiben weiterhin. */
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(var(--card-min, 220px), 1fr));
  align-items: stretch;
}
.thk-block--buecher .thk-buch-karte {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .15s ease, transform .15s ease;
}
.thk-block--buecher .thk-buch-karte:hover { box-shadow: 0 8px 20px rgba(0,0,0,.08); transform: translateY(-3px); }
.thk-block--buecher .thk-buch-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.thk-block--buecher .thk-buch-cover {
  background: var(--thk-papier-tief);
  aspect-ratio: 2/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thk-block--buecher .thk-buch-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thk-block--buecher .thk-buch-cover--leer {
  background: linear-gradient(135deg, var(--thk-papier-tief) 25%, var(--thk-line) 25%, var(--thk-line) 50%, var(--thk-papier-tief) 50%, var(--thk-papier-tief) 75%, var(--thk-line) 75%);
  background-size: 16px 16px;
  color: var(--thk-text-mute);
  font-size: .85rem;
  font-style: italic;
}
.thk-block--buecher .thk-buch-meta {
  padding: .85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.thk-block--buecher .thk-buch-titel {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--thk-text);
  line-height: 1.25;
}
.thk-block--buecher .thk-buch-autor {
  font-size: .85rem;
  color: var(--thk-text-mute);
  margin: 0;
}
.thk-block--buecher .thk-buch-preis {
  font-size: .95rem;
  font-weight: 600;
  color: var(--thk-bordeaux-tief);
  margin: .25rem 0 0;
}
@media (max-width: 1000px) {
  .thk-block--buecher .thk-buecher-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .thk-block--buecher .thk-buecher-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .thk-block--buecher .thk-buecher-grid { grid-template-columns: 1fr; }
}

/* ── AUTOREN-GALERIE ──────────────────────────────────────────────────── */

.thk-block--autoren .thk-autoren-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(4, 1fr);
}
.thk-block--autoren .thk-autor-karte { text-align: center; }
.thk-block--autoren .thk-autor-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.thk-block--autoren .thk-autor-portrait {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto .75rem;
  overflow: hidden;
  background: var(--thk-papier-tief);
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.thk-block--autoren .thk-autor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thk-block--autoren .thk-autor-portrait--leer {
  background: linear-gradient(135deg, var(--thk-line), var(--thk-line));
}
.thk-block--autoren .thk-autor-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 .25rem;
  color: var(--thk-tinte);
}
.thk-block--autoren .thk-autor-snippet {
  font-size: .88rem;
  color: var(--thk-text-mute);
  margin: 0;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .thk-block--autoren .thk-autoren-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .thk-block--autoren .thk-autoren-grid { grid-template-columns: repeat(2, 1fr); }
  .thk-block--autoren .thk-autor-portrait { width: 110px; height: 110px; }
}

/* ── USP-LEISTE ────────────────────────────────────────────────────────── */

.thk-block--usp {
  background: var(--thk-papier);
  padding: 2.5rem 1.5rem;
  border-radius: 8px;
  margin: 3rem 0;
}
.thk-block--usp .thk-block-kopf { margin-bottom: 1.75rem; }
.thk-block--usp .thk-usp-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
.thk-block--usp .thk-usp-pillar {
  text-align: center;
  padding: 0 1rem;
}
.thk-block--usp .thk-usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: .85rem;
  color: var(--thk-bordeaux-tief);
}
.thk-block--usp .thk-usp-icon svg { width: 100%; height: 100%; }
.thk-block--usp .thk-usp-icon img { width: 100%; height: 100%; object-fit: contain; }
.thk-block--usp .thk-usp-pillar-titel {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 .4rem;
  color: var(--thk-tinte);
}
.thk-block--usp .thk-usp-pillar-text {
  font-size: .92rem;
  color: var(--thk-text-mute);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .thk-block--usp .thk-usp-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── NEWSLETTER-BOX ────────────────────────────────────────────────────── */

.thk-block--newsletter {
  background: var(--thk-tinte);
  color: var(--thk-papier-tief);
  padding: 3rem 1.5rem;
  border-radius: 8px;
  margin: 3rem 0;
  text-align: center;
}
.thk-block--newsletter .thk-newsletter-inner { max-width: 540px; margin: 0 auto; }
.thk-block--newsletter .thk-newsletter-titel {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 .65rem;
  color: #fff;
}
.thk-block--newsletter .thk-newsletter-lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  opacity: .9;
}
.thk-block--newsletter .thk-newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 460px;
  margin: 0 auto;
}
.thk-block--newsletter .thk-newsletter-form input[type="email"] {
  flex: 1;
  padding: .85rem 1rem;
  border: 0;
  border-radius: 4px;
  font-size: 1rem;
  background: #fff;
  color: var(--thk-text);
}
.thk-block--newsletter .thk-newsletter-form input[type="email"]:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.thk-block--newsletter .thk-newsletter-form button {
  padding: .85rem 1.5rem;
  border: 0;
  border-radius: 4px;
  background: var(--thk-bordeaux-tief);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .15s;
}
.thk-block--newsletter .thk-newsletter-form button:hover { background: #7a4a4a; }
@media (max-width: 540px) {
  .thk-block--newsletter .thk-newsletter-form { flex-direction: column; }
  .thk-block--newsletter .thk-newsletter-form button { width: 100%; }
}

/* ── Welle 2.5 (v0.9.5) Newsletter-Erweiterungen ─────────────────── */
.thk-block--newsletter .thk-newsletter-field {
  display: flex;
  gap: .5rem;
  max-width: 460px;
  margin: 0 auto;
}
.thk-block--newsletter .thk-newsletter-field input[type="email"] {
  flex: 1;
  padding: .85rem 1rem;
  border: 0;
  border-radius: 4px;
  font-size: 1rem;
  background: #fff;
  color: var(--thk-text);
}
.thk-block--newsletter .thk-newsletter-field button {
  padding: .85rem 1.5rem;
  border: 0;
  border-radius: 4px;
  background: var(--thk-bordeaux-tief);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.thk-block--newsletter .thk-newsletter-dsgvo {
  margin: 1rem auto 0;
  max-width: 480px;
  font-size: .8125rem;
  line-height: 1.5;
  opacity: .8;
}
.thk-block--newsletter .thk-flash {
  max-width: 480px;
  margin: 0 auto 1rem;
  padding: .75rem 1rem;
  border-radius: 4px;
  font-size: .9375rem;
}
.thk-block--newsletter .thk-flash--success { background: rgba(74, 222, 128, .15); color: #d1fae5; border: 1px solid rgba(74, 222, 128, .35); }
.thk-block--newsletter .thk-flash--error   { background: rgba(248, 113, 113, .15); color: #fee2e2; border: 1px solid rgba(248, 113, 113, .35); }
.thk-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
@media (max-width: 540px) {
  .thk-block--newsletter .thk-newsletter-field { flex-direction: column; }
  .thk-block--newsletter .thk-newsletter-field button { width: 100%; }
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║ v0.14.0.0 — Aus GHOS portierte Block-Typen                           ║
   ║   .thk-block--zielgruppen    — 3-Karten-Grid mit Icon + Akzentfarbe  ║
   ║   .thk-block--angebotsfinder — Nummerierte Editorial-Liste           ║
   ║   .thk-block--anfrage        — Kontakt-Formular mit Honeypot         ║
   ║                                                                      ║
   ║ Plus zusätzliche Layout-Utilities (Container, Kicker, Headline,      ║
   ║ Lead), die die GHOS-Render-Methoden nutzen.                          ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ── Layout-Utilities (geteilt zwischen v0.14er Blöcken) ──────────────── */

.thk-block--zielgruppen,
.thk-block--angebotsfinder,
.thk-block--anfrage {
  margin: 4rem 0;
}

.thk-block .thk-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.thk-block .thk-container--schmal {
  max-width: 38rem;
}

.thk-block .thk-block__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.thk-block .thk-kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--thk-gold);
  margin-bottom: .75rem;
}
.thk-block .thk-kicker--zentriert { display: block; }

.thk-block .thk-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--thk-tinte);
  margin: 0 0 .5rem;
}
.thk-block .thk-h2--zentriert { text-align: center; }

.thk-block .thk-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--thk-text-mute-stark);
  max-width: 42rem;
  margin: .75rem 0 0;
}
.thk-block .thk-lead--zentriert {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── ZIELGRUPPEN ───────────────────────────────────────────────────────── */

.thk-block--zielgruppen .thk-zielgruppen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.thk-zielgruppe-tile {
  --thk-zielgruppe-akzent: var(--thk-gold);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--thk-line);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.thk-zielgruppe-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--thk-bordeaux);
  border-radius: 8px 8px 0 0;
}
a.thk-zielgruppe-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  border-color: var(--thk-bordeaux);
}
.thk-zielgruppe-tile__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thk-bordeaux);
}
.thk-zielgruppe-tile__icon svg {
  width: 100%;
  height: 100%;
}
.thk-zielgruppe-tile__titel {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--thk-tinte);
  margin: 0;
}
.thk-zielgruppe-tile__text {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--thk-text-mute-stark);
  margin: 0;
  flex-grow: 1;
}
.thk-zielgruppe-tile__cta {
  font-weight: 600;
  color: var(--thk-bordeaux);
  font-size: .95rem;
  margin-top: auto;
}
.thk-zielgruppe-tile__cta::after {
  content: " →";
  transition: margin-left .15s ease;
}
a.thk-zielgruppe-tile:hover .thk-zielgruppe-tile__cta::after {
  margin-left: .25rem;
}

@media (max-width: 900px) {
  .thk-block--zielgruppen .thk-zielgruppen__grid {
    grid-template-columns: 1fr;
  }
}

/* ── ANGEBOTSFINDER ────────────────────────────────────────────────────── */

.thk-block--angebotsfinder .thk-angebotsfinder__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: start;
}
.thk-angebotsfinder__kopf .thk-h2 { text-align: left; }
.thk-angebotsfinder__kopf .thk-lead { margin-left: 0; }

.thk-angebotsfinder__liste {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--thk-line);
}
.thk-angebotsfinder__item {
  border-bottom: 1px solid var(--thk-line);
}
.thk-angebotsfinder__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem .25rem;
  text-decoration: none;
  color: inherit;
  transition: padding-left .18s ease, color .18s ease;
}
a.thk-angebotsfinder__row:hover {
  padding-left: .75rem;
  color: var(--thk-gold);
}
.thk-angebotsfinder__label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
}
.thk-angebotsfinder__nr {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .85rem;
  color: var(--thk-text-mute);
  letter-spacing: .08em;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .thk-block--angebotsfinder .thk-angebotsfinder__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── ANFRAGE-FORMULAR ──────────────────────────────────────────────────── */

.thk-block--anfrage .thk-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.thk-form__hp {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.thk-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.thk-form__feld {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.thk-form__feld > span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--thk-text);
}
.thk-form__feld input,
.thk-form__feld select,
.thk-form__feld textarea {
  border: 1px solid var(--thk-line);
  border-radius: 4px;
  padding: .65rem .75rem;
  font: inherit;
  font-size: 1rem;
  color: var(--thk-text);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.thk-form__feld input:focus,
.thk-form__feld select:focus,
.thk-form__feld textarea:focus {
  outline: none;
  border-color: var(--thk-gold);
  box-shadow: 0 0 0 3px rgba(184, 92, 0, .15);
}
.thk-form__feld textarea {
  min-height: 8rem;
  resize: vertical;
  font-family: inherit;
}
.thk-form__check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--thk-text-mute-stark);
  line-height: 1.5;
  margin-top: .25rem;
}
.thk-form__check input {
  margin-top: .2rem;
  flex-shrink: 0;
}
.thk-form__check a {
  color: var(--thk-gold);
  text-decoration: underline;
}

.thk-btn--primaer {
  display: inline-block;
  background: var(--thk-gold);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 0;
  border-radius: 4px;
  padding: .85rem 2rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color .15s ease, transform .12s ease;
}
.thk-btn--primaer:hover { background: var(--thk-gold-hell); }
.thk-btn--primaer:active { transform: translateY(1px); }
.thk-btn--primaer:disabled { background: var(--thk-text-mute); cursor: not-allowed; }

.thk-form__feedback {
  font-size: .95rem;
  min-height: 1.5em;
}
.thk-form__feedback.is-ok {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
  padding: .75rem 1rem;
  border-radius: 4px;
}
.thk-form__feedback.is-fehler {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  padding: .75rem 1rem;
  border-radius: 4px;
}

@media (max-width: 540px) {
  .thk-block--anfrage .thk-form__row {
    grid-template-columns: 1fr;
  }
}

/* ── Mini-Script: Anfrage-Form via fetch (Progressive Enhancement) ─────── */
/* Das Verhalten lebt in einem winzigen Inline-Listener — siehe
   public/assets/js/anfrage-form.js. Ohne JS funktioniert die Form
   trotzdem als klassisches POST mit Redirect. */

/* ════════════════════════════════════════════════════════════════════════
   v0.16.0.0 — CARDS / INFOKARTEN
   ════════════════════════════════════════════════════════════════════════

   Generisches Karten-Grid. Jede Karte trägt ihre eigene CI-Hintergrund-
   farbe. Bei dunklem Hintergrund greift automatisch helle Schrift. Cards
   sind ruhig, mit weichem Schatten — keine SaaS-Plastikoptik. */

.ghos-block--cards .ghos-cards__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ghos-block--cards .ghos-cards--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ghos-block--cards .ghos-cards--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ghos-block--cards .ghos-cards--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .ghos-block--cards .ghos-cards__grid,
  .ghos-block--cards .ghos-cards--cols-3,
  .ghos-block--cards .ghos-cards--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .ghos-block--cards .ghos-cards__grid,
  .ghos-block--cards .ghos-cards--cols-2,
  .ghos-block--cards .ghos-cards--cols-3,
  .ghos-block--cards .ghos-cards--cols-4 { grid-template-columns: 1fr; }
}

.ghos-cards__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--thk-papier);
  border-radius: var(--radius, 8px);
  border: 1px solid var(--thk-line-soft, rgba(216, 205, 184, 0.5));
  box-shadow: var(--shadow-soft, 0 4px 18px -8px rgba(20, 40, 69, 0.15));
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
a.ghos-cards__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cover, 0 18px 40px -20px rgba(20, 40, 69, 0.45));
  text-decoration: none;
}

/* CI-Hintergründe pro Karte. */
.ghos-cards__item--bg-papier       { background: var(--thk-papier); }
.ghos-cards__item--bg-papier-tief  { background: var(--thk-papier-tief); }
.ghos-cards__item--bg-papier-warm  { background: var(--thk-papier-warm); }
.ghos-cards__item--bg-tinte        { background: var(--thk-tinte); border-color: var(--thk-tinte-dunkel); }
.ghos-cards__item--bg-tinte-dunkel { background: var(--thk-tinte-dunkel); border-color: var(--thk-tinte-dunkel); }
.ghos-cards__item--bg-bordeaux     { background: var(--thk-bordeaux); border-color: var(--thk-bordeaux-tief); }
.ghos-cards__item--bg-bordeaux-tief{ background: var(--thk-bordeaux-tief); border-color: var(--thk-bordeaux-tief); }
.ghos-cards__item--bg-gold         { background: var(--thk-gold); border-color: var(--thk-gold-hell); }
/* v0.16.0.1 — explizite Transparenz pro Karte. Übersteuert das
   hartkodierte `background: var(--thk-papier)` aus `.ghos-cards__item`.
   Border und Schatten werden ebenfalls neutralisiert, damit eine
   transparente Karte nicht als „schwebende Outline-Box" auftaucht. */
.ghos-cards__item--bg-transparent  { background: transparent; border-color: transparent; box-shadow: none; }

/* Text-Invertierung auf dunklen Karten. */
.ghos-cards__item--text-invertiert,
.ghos-cards__item--text-invertiert .ghos-cards__titel,
.ghos-cards__item--text-invertiert .ghos-cards__text {
  color: var(--thk-papier);
}
.ghos-cards__item--text-invertiert .ghos-cards__cta {
  color: var(--thk-gold-hell);
}
.ghos-cards__item--text-invertiert .ghos-cards__cta:hover {
  color: var(--thk-papier);
}

/* Akzent-Balken am linken Rand. */
.ghos-cards__item--akzent-tinte    { border-left: 3px solid var(--thk-tinte); padding-left: calc(1.75rem - 2px); }
.ghos-cards__item--akzent-bordeaux { border-left: 3px solid var(--thk-bordeaux); padding-left: calc(1.75rem - 2px); }
.ghos-cards__item--akzent-gold     { border-left: 3px solid var(--thk-gold); padding-left: calc(1.75rem - 2px); }

/* Icon. */
.ghos-cards__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: var(--thk-bordeaux);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ghos-cards__icon svg { width: 100%; height: 100%; }
.ghos-cards__item--text-invertiert .ghos-cards__icon { color: var(--thk-gold-hell); }

/* Bild — wenn gesetzt, ersetzt das Icon. */
.ghos-cards__bild {
  width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1.25rem;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: var(--radius, 8px);
  border-top-right-radius: var(--radius, 8px);
}

.ghos-cards__body { flex: 1; display: flex; flex-direction: column; }
.ghos-cards__titel {
  margin: 0 0 .5rem;
  font-family: var(--thk-serif);
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--thk-tinte);
}
.ghos-cards__text {
  margin: 0;
  font-size: .96rem;
  line-height: 1.55;
  color: var(--thk-text);
  flex: 1;
}
.ghos-cards__cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  color: var(--thk-bordeaux);
  align-self: flex-start;
}
.ghos-cards__cta:hover { color: var(--thk-bordeaux-tief); text-decoration: underline; }

/* Falls eine cards__item Gold-Hintergrund hat: Titel auf Tinte für
   Lesbarkeit (Gold + Tinte sind das CI-Paar). */
.ghos-cards__item--bg-gold .ghos-cards__titel,
.ghos-cards__item--bg-gold .ghos-cards__text { color: var(--thk-tinte-dunkel); }
.ghos-cards__item--bg-gold .ghos-cards__icon { color: var(--thk-tinte); }
.ghos-cards__item--bg-gold .ghos-cards__cta  { color: var(--thk-tinte); }

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║ v0.20.11.0 — Kontakt-Block (.thk-block--kontakt)                     ║
   ║   Zweispalter: Kontaktdaten-Karte links + Formular-Karte rechts.    ║
   ║   Optik am thanks-grid der Checkout-Danke-Seite orientiert.         ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

.thk-block--kontakt {
  margin: 3.5rem 0 4.5rem;
}
.thk-block--kontakt .thk-container {
  max-width: 70rem;
}
.thk-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2rem;
  align-items: start;
}

/* ── Linke Spalte: Kontaktdaten-Karte ─────────────────────────────────── */
.thk-kontakt-info {
  padding: 2.25rem;
  background: var(--thk-papier-warm);
  border: 1px solid var(--thk-line-soft, var(--thk-line));
  border-radius: 10px;
  position: relative;
}
.thk-kontakt-info::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--thk-bordeaux);
  border-radius: 10px 0 0 10px;
}
.thk-kontakt-info__kicker {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--thk-bordeaux);
  margin: 0 0 1.25rem;
}
.thk-kontakt-info__body { color: var(--thk-text); line-height: 1.65; }
.thk-kontakt-info__body p { margin: 0 0 1rem; }
.thk-kontakt-info__body p:last-child { margin-bottom: 0; }
.thk-kontakt-info__body strong {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--thk-tinte);
  margin-bottom: .15rem;
}
.thk-kontakt-info__body a {
  color: var(--thk-bordeaux);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.thk-kontakt-info__body a:hover { color: var(--thk-bordeaux-tief); }

/* ── Rechte Spalte: Formular-Karte ────────────────────────────────────── */
.thk-kontakt-form-card {
  padding: 2.25rem;
  background: #fff;
  border: 1px solid var(--thk-line);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}
.thk-kontakt-form-card__titel {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--thk-tinte);
  margin: 0 0 .35rem;
}
.thk-kontakt-form-card__lead {
  font-size: .975rem;
  line-height: 1.6;
  color: var(--thk-text-mute-stark, var(--thk-text-mute));
  margin: 0;
}

/* Formular-Flex auch im Kontakt-Block aktivieren (die Feld-Stile weiter
   oben sind blockneutral, nur der Form-Container war an --anfrage gebunden) */
.thk-block--kontakt .thk-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ── Responsive: unter 860px stapeln, Info-Karte zuerst ───────────────── */
@media (max-width: 860px) {
  .thk-kontakt-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .thk-kontakt-info, .thk-kontakt-form-card { padding: 1.75rem; }
}
@media (max-width: 560px) {
  .thk-block--kontakt .thk-form__row { grid-template-columns: 1fr; }
}
