/** Shopify CDN: Minification failed

Line 10:77 Unexpected "/"

**/
/* ============================================================================
   talk·point — Reparatur-Ratgeber Querverlinkung (geteilte Section)
   Portiert aus v1 (sections/tp-repair-guides.liquid {% stylesheet %}), komplett
   auf tp-Tokens umgestellt. Adaptive Content-Section: kein eigener Flächen-BG →
   --color-page vom Body scheint durch; alle Farben über --color-*/--surface/
   --accent-ink (liegen auf html[data-tptheme]) → Dark/Light-Toggle schlägt live
   durch. Karten = solide --surface, Akzent (Blau in Light, Grün in Dark) adaptiv.
   ============================================================================ */

.tp-rep-guides {
  padding: var(--sp-16) var(--sp-5);
  background: transparent;
}

.tp-rep-guides__wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.tp-rep-guides__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.tp-rep-guides__kick {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: var(--sp-3);
}

.tp-rep-guides__title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: var(--fw-extra);
  letter-spacing: -.02em;
  color: var(--color-text);
  margin: 0;
}

.tp-rep-guides__sub {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-muted);
  margin: 14px auto 0;
  max-width: 60ch;
}

.tp-rep-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tp-rep-guides__card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.tp-rep-guides__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--divider);
}

.tp-rep-guides__tag {
  align-self: flex-start;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--surface-2);
  border-radius: var(--r-sm);
  padding: 3px 9px;
  margin-bottom: var(--sp-3);
}

.tp-rep-guides__card h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extra);
  letter-spacing: -.01em;
  color: var(--color-text);
  margin: 0 0 7px;
}

.tp-rep-guides__card p {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0 0 var(--sp-4);
  flex: 1;
}

.tp-rep-guides__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--accent-ink);
}

.tp-rep-guides__card:hover .tp-rep-guides__more {
  gap: 11px;
}

@media (max-width: 900px) {
  .tp-rep-guides__grid {
    grid-template-columns: 1fr;
  }
}
