/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/**
 * Lasern Haarentfernung — seiten-layout.css
 * Ein Stylesheet: Homepage-Hero + Long-form Artikel (GeneratePress / WordPress, ohne Framework)
 * Artikel: Wrapper-Klasse "lasern-article" am Group-Block / Container
 */

/* =============================================================================
   Design-Tokens (Hero)
   ============================================================================= */

:root {
  --lasern-hero-from: #0a6b7a;
  --lasern-hero-to: #00a8c4;
  --lasern-hero-text: #ffffff;
  --lasern-hero-muted: rgba(255, 255, 255, 0.88);
  --lasern-hero-btn-bg: #ffffff;
  --lasern-hero-btn-text: #0a5c6b;
  --lasern-hero-btn-border: rgba(255, 255, 255, 0.55);
  --lasern-hero-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* =============================================================================
   Globale Basis (einmal, keine Doppelung mit .lasern-article)
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =============================================================================
   Homepage: Hero
   ============================================================================= */

body.lasern-home,
.lasern-startseite-wp-wrap {
  margin: 0;
  font-family: var(--lasern-hero-font);
  color: #222;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.lasern-hero {
  position: relative;
  min-height: min(56vh, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 3.5vw, 2rem) clamp(1.25rem, 4vw, 2rem);
  text-align: left;
  background: linear-gradient(
    145deg,
    var(--lasern-hero-from) 0%,
    #087d8f 38%,
    var(--lasern-hero-to) 100%
  );
  color: var(--lasern-hero-text);
}

.lasern-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.lasern-hero__layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, min(38vw, 380px));
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.lasern-hero__content {
  max-width: 38rem;
}

.lasern-hero__brand {
  margin: 0 0 0.55rem;
  font-size: clamp(0.8125rem, 1.1vw + 0.65rem, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lasern-hero-muted);
}

.lasern-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.2vw + 0.5rem, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--lasern-hero-text);
  text-wrap: balance;
}

.lasern-hero h1::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.lasern-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  font-size: clamp(1rem, 1.2vw + 0.9rem, 1.2rem);
  line-height: 1.65;
  color: var(--lasern-hero-muted);
  font-weight: 400;
}

.lasern-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  justify-content: flex-start;
  align-items: center;
}

.lasern-hero__disclaimer {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

/* Rechte Spalte: Bild mit weichen „Wolken“-Konturen */
.lasern-hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.lasern-hero__cloud {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0;
  aspect-ratio: 1;
  overflow: visible;
}

/* Organische Blob-Form (weiche „Wolkenlinien“) */
.lasern-hero__cloud-ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 58% 42% 62% 38% / 48% 55% 45% 52%;
  transform: scale(1.08) rotate(-6deg);
}

.lasern-hero__cloud-ring--mid {
  border-radius: 42% 58% 38% 62% / 52% 45% 55% 48%;
  transform: scale(1.18) rotate(8deg);
  border-color: rgba(255, 255, 255, 0.22);
  border-width: 1.5px;
}

.lasern-hero__cloud-ring--outer {
  border-radius: 48% 52% 55% 45% / 42% 48% 52% 58%;
  transform: scale(1.28) rotate(-3deg);
  border-color: rgba(255, 255, 255, 0.14);
  border-width: 1px;
}

.lasern-hero__cloud-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 55% 45% 52% 48% / 50% 52% 48% 50%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .lasern-hero__layout {
    grid-template-columns: 1fr;
    max-width: 36rem;
  }

  .lasern-hero__visual {
    justify-content: center;
    order: -1;
  }

  .lasern-hero__cloud {
    max-width: min(280px, 72vw);
    margin-left: auto;
    margin-right: auto;
  }
}

.lasern-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease,
    border-color 0.15s ease;
}

.lasern-hero__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.lasern-hero__btn--primary {
  background: var(--lasern-hero-btn-bg);
  color: var(--lasern-hero-btn-text);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lasern-hero__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.lasern-hero__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: var(--lasern-hero-btn-border);
}

.lasern-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .lasern-hero__btn {
    transition: none;
  }

  .lasern-hero__btn--primary:hover {
    transform: none;
  }
}

/* =============================================================================
   Startseite unter dem Hero (.lasern-home-main)
   Mehrere Gutenberg-HTML-Blöcke: Folge-Sektionen sind oft KEINE Kinder von
   .lasern-home-main — daher dieselben Custom Properties auf jedem Modul.
   ============================================================================= */

.lasern-home-main,
.lasern-home-trust,
section.lasern-home-section,
.lasern-home-final {
  --home-primary: #00bcd4;
  --home-primary-dark: #0097a7;
  --home-text: #222222;
  --home-muted: #555555;
  --home-bg: #ffffff;
  --home-soft: #f5fafb;
  --home-border: #e0e8eb;
  --home-radius: 14px;
  --home-radius-sm: 10px;
  --home-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --home-shadow-hover: 0 8px 28px rgba(0, 188, 212, 0.15);
  font-family: var(--lasern-hero-font);
  color: var(--home-text);
  line-height: 1.65;
  font-size: 1.0625rem;
}

.lasern-home-container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}

.lasern-home-section {
  padding: clamp(2rem, 4.5vw, 3.25rem) 0;
}

.lasern-home-section--muted {
  background: var(--home-soft);
}

/* Startseiten-Überschriften: eigenständig vom Artikel-Layout (Editorial / Klinik) */
:is(.lasern-home-main, section.lasern-home-section) .lasern-home-heading {
  margin: 0 0 1.2rem;
  padding: 0;
  border: none;
  background: none;
  max-width: 42rem;
  font-size: clamp(1.5rem, 3.1vw, 2.05rem);
  font-weight: 700;
  font-family: var(--lasern-hero-font);
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #0f172a;
}

:is(.lasern-home-main, section.lasern-home-section) .lasern-home-heading::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 4px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
  box-shadow: 0 2px 12px rgba(0, 188, 212, 0.25);
}

.lasern-home-section__intro {
  margin: 0 0 1.5rem;
  max-width: 42rem;
  color: var(--home-muted);
  font-size: 1rem;
}

.lasern-home-section__intro--flush {
  margin-bottom: 0;
}

.lasern-home-section__intro--spaced-top {
  margin-top: 1rem;
}

.lasern-home-section__intro--spaced-top-lg {
  margin-top: 1.5rem;
}

.lasern-home-kicker + .lasern-home-section__intro--kicker-sub {
  margin-top: 0.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.lasern-home-link {
  color: var(--home-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.lasern-home-link:hover {
  color: var(--home-primary);
}

/* „Was ist Laser…“ — Bild wie im Hero (organische Blob-Form + Ringe), heller Hintergrund */
.lasern-home-was__grid {
  display: grid;
  gap: clamp(1.35rem, 4vw, 2.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .lasern-home-was__grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, min(38vw, 380px));
    gap: clamp(1.75rem, 4vw, 3rem);
  }
}

.lasern-home-was__content .lasern-home-heading {
  max-width: none;
}

.lasern-home-was__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  .lasern-home-was__visual {
    justify-content: flex-end;
  }
}

.lasern-home-was__cloud {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0;
  aspect-ratio: 1;
  overflow: visible;
}

.lasern-home-was__cloud-ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 2px solid rgba(0, 188, 212, 0.35);
  border-radius: 58% 42% 62% 38% / 48% 55% 45% 52%;
  transform: scale(1.08) rotate(-6deg);
}

.lasern-home-was__cloud-ring--mid {
  border-radius: 42% 58% 38% 62% / 52% 45% 55% 48%;
  transform: scale(1.18) rotate(8deg);
  border-color: rgba(0, 151, 167, 0.22);
  border-width: 1.5px;
}

.lasern-home-was__cloud-ring--outer {
  border-radius: 48% 52% 55% 45% / 42% 48% 52% 58%;
  transform: scale(1.28) rotate(-3deg);
  border-color: rgba(0, 188, 212, 0.12);
  border-width: 1px;
}

.lasern-home-was__cloud-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 55% 45% 52% 48% / 50% 52% 48% 50%;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
}

@media (max-width: 899px) {
  .lasern-home-was__cloud {
    max-width: min(280px, 72vw);
    margin-left: auto;
    margin-right: auto;
  }
}

/* 1 Trust */
.lasern-home-trust {
  background: var(--home-bg);
  border-bottom: 1px solid var(--home-border);
  padding: 1.15rem 0;
}

.lasern-home-trust__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
}

.lasern-home-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--home-text);
}

.lasern-home-trust__item--highlight {
  color: var(--home-primary-dark);
}

.lasern-home-trust__icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--home-primary);
}

.lasern-home-trust__icon--star {
  color: #e6a800;
}

/* Warum wir (Trust-Blöcke) */
.lasern-home-why__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lasern-home-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lasern-home-why__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.lasern-home-why-card {
  margin: 0;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: var(--home-bg);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.lasern-home-why-card:hover {
  border-color: rgba(0, 188, 212, 0.28);
  box-shadow: var(--home-shadow-hover);
}

.lasern-home-why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: rgba(0, 188, 212, 0.1);
  color: var(--home-primary-dark);
}

.lasern-home-why-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

:is(.lasern-home-main, section.lasern-home-section) .lasern-home-why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--home-text);
}

.lasern-home-why-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--home-muted);
}

/* Behandlungsmethoden (3 Spalten) */
.lasern-home-methods__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .lasern-home-methods__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lasern-home-method {
  margin: 0;
  padding: 1.35rem 1.3rem 1.4rem;
  background: var(--home-bg);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
}

:is(.lasern-home-main, section.lasern-home-section) .lasern-home-method h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--home-text);
}

.lasern-home-method p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--home-muted);
}

/* Behandlungsbereiche */
.lasern-home-areas__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lasern-home-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .lasern-home-areas__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.lasern-home-area-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0;
  padding: 1.25rem 1.2rem;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--home-bg);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lasern-home-area-card:hover {
  border-color: rgba(0, 188, 212, 0.35);
  box-shadow: var(--home-shadow-hover);
  transform: translateY(-2px);
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .lasern-home-area-card:hover {
    transform: none;
  }
}

.lasern-home-area-card__label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--home-text);
}

.lasern-home-area-card__hint {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--home-muted);
}

.lasern-home-area-card__cta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--home-primary-dark);
}

.lasern-home-area-card:hover .lasern-home-area-card__cta {
  color: var(--home-primary);
}

/* Ratgeber: Kategorien untereinander */
.lasern-home-blog-cat {
  margin: 0 0 2.5rem;
}

.lasern-home-blog-cat:last-child {
  margin-bottom: 0;
}

.lasern-home-blog-cat__title {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  font-size: clamp(1.1rem, 1vw + 0.95rem, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--home-text);
  font-family: var(--lasern-hero-font);
}

.lasern-home-blog-cat .lasern-home-blog__grid {
  margin-top: 0;
}

/* 2–3 Grid & Karten */
.lasern-home-grid {
  display: grid;
  gap: 1.25rem;
}

.lasern-home-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.lasern-home-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.lasern-home-card {
  background: var(--home-bg);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--home-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lasern-home-card:hover {
  box-shadow: var(--home-shadow-hover);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .lasern-home-card:hover {
    transform: none;
  }
}

.lasern-home-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--home-primary);
}

.lasern-home-card__title {
  font-size: 1.0625rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  padding: 0;
  border: none;
  color: #0f172a;
}

.lasern-home-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--home-muted);
  line-height: 1.55;
}

/* Vorteile-Section: eigenes Layout (nicht Standard-Kartenraster) */
.lasern-home-benefits {
  position: relative;
  overflow: hidden;
}

.lasern-home-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 188, 212, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.65;
}

.lasern-home-benefits .lasern-home-container {
  position: relative;
  z-index: 1;
}

.lasern-home-benefits__intro {
  max-width: 38rem;
}

.lasern-home-benefits__grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lasern-home-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .lasern-home-benefits__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.lasern-home-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.35rem 1.45rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 14px 36px -18px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.lasern-home-feature::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--home-primary) 0%, var(--home-primary-dark) 45%, transparent 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.lasern-home-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 188, 212, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 48px -16px rgba(0, 188, 212, 0.22),
    0 12px 28px -12px rgba(15, 23, 42, 0.12);
}

.lasern-home-feature:hover::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .lasern-home-feature {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .lasern-home-feature:hover {
    transform: none;
  }
}

.lasern-home-feature__index {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(0, 188, 212, 0.09);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}

.lasern-home-feature__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 1.05rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 188, 212, 0.14) 0%, rgba(0, 151, 167, 0.08) 100%);
  color: var(--home-primary-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 14px -4px rgba(0, 188, 212, 0.35);
}

.lasern-home-feature__icon {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
}

.lasern-home-feature__body {
  flex: 1;
  min-width: 0;
}

.lasern-home-feature__title {
  margin: 0 0 0.5rem;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: var(--lasern-hero-font);
  line-height: 1.28;
  letter-spacing: -0.022em;
  color: #0f172a;
}

.lasern-home-feature__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--home-muted);
}

/* 4 Vergleich */
.lasern-home-compare {
  overflow-x: auto;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
  background: var(--home-bg);
}

.lasern-home-compare table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.lasern-home-compare th,
.lasern-home-compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--home-border);
}

.lasern-home-compare thead th {
  background: linear-gradient(180deg, #eef8fa 0%, var(--home-soft) 100%);
  font-weight: 650;
  color: var(--home-text);
  border-bottom: 2px solid var(--home-primary);
}

.lasern-home-compare tbody tr:last-child td {
  border-bottom: none;
}

.lasern-home-compare .lasern-home-compare__laser {
  font-weight: 650;
  color: var(--home-primary-dark);
  background: rgba(0, 188, 212, 0.06);
}

/* 5 Kosten-Tabelle */
.lasern-home-price {
  overflow-x: auto;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
  margin-bottom: 1.25rem;
}

.lasern-home-price table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.lasern-home-price th,
.lasern-home-price td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--home-border);
}

.lasern-home-price thead th {
  background: var(--home-soft);
  font-weight: 650;
  text-align: left;
  border-bottom: 2px solid var(--home-primary);
}

.lasern-home-price tbody tr:last-child td {
  border-bottom: none;
}

.lasern-home-kicker {
  margin: 1.35rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lasern-home-section__intro + .lasern-home-kicker {
  margin-top: 0.85rem;
}

.lasern-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 650;
  font-family: inherit;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lasern-home-btn--primary {
  background: linear-gradient(145deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 188, 212, 0.35);
}

.lasern-home-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 188, 212, 0.4);
  color: #fff;
}

.lasern-home-btn--outline {
  background: #fff;
  color: var(--home-primary-dark);
  border-color: var(--home-primary);
}

.lasern-home-btn--outline:hover {
  background: rgba(0, 188, 212, 0.08);
  color: var(--home-primary-dark);
}

/* Neueste Artikel (Startseite) */
.lasern-home-blog__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-primary-dark);
}

.lasern-home-blog__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .lasern-home-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lasern-home-blog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.lasern-home-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100%;
  border-radius: var(--home-radius);
  background: var(--home-bg);
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.lasern-home-blog-card:hover {
  border-color: rgba(0, 188, 212, 0.35);
  box-shadow: var(--home-shadow-hover);
}

.lasern-home-blog-card__link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.lasern-home-blog-card__media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f4f6 0%, var(--home-soft) 100%);
}

.lasern-home-blog-card__media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--home-primary) 0%,
    var(--home-primary-dark) 58%,
    rgba(0, 188, 212, 0.45) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.lasern-home-blog-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.lasern-home-blog-card:hover .lasern-home-blog-card__img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .lasern-home-blog-card:hover .lasern-home-blog-card__img {
    transform: none;
  }
}

.lasern-home-blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.25rem 1.3rem 1.3rem;
}

.lasern-home-blog-card:hover .lasern-home-blog-card__link {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .lasern-home-blog-card:hover .lasern-home-blog-card__link {
    transform: none;
  }
}

.lasern-home-blog-card__link:focus-visible {
  outline: 2px solid var(--home-primary);
  outline-offset: 3px;
}

.lasern-home-blog-card__meta {
  display: block;
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-primary-dark);
  opacity: 0.92;
}

.lasern-home-blog-card__title:is(h3, h4) {
  margin: 0 0 0.65rem;
  padding: 0;
  border: none;
  font-size: clamp(1.05rem, 1.1vw + 0.9rem, 1.2rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.025em;
  color: #0f172a;
  font-family: var(--lasern-hero-font);
}

.lasern-home-blog-card__excerpt {
  margin: 0 0 1.1rem;
  flex: 1 1 auto;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--home-muted);
}

.lasern-home-blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--home-primary-dark);
}

.lasern-home-blog-card__cta::after {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-bottom: 0.1rem;
  opacity: 0.85;
  transition: transform 0.2s ease, margin 0.2s ease;
}

.lasern-home-blog-card:hover .lasern-home-blog-card__cta {
  color: var(--home-primary);
}

.lasern-home-blog-card:hover .lasern-home-blog-card__cta::after {
  transform: rotate(-45deg) translate(2px, -2px);
}

@media (prefers-reduced-motion: reduce) {
  .lasern-home-blog-card:hover .lasern-home-blog-card__cta::after {
    transform: rotate(-45deg);
  }
}

/* 7 Ablauf */
.lasern-home-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: home-step;
}

@media (max-width: 720px) {
  .lasern-home-steps {
    grid-template-columns: 1fr;
  }
}

.lasern-home-step {
  position: relative;
  padding: 1.35rem 1.25rem 1.35rem 3.5rem;
  background: var(--home-bg);
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
  counter-increment: home-step;
}

.lasern-home-step::before {
  content: counter(home-step);
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: var(--home-primary);
  border-radius: 50%;
}

:is(.lasern-home-main, section.lasern-home-section) .lasern-home-step h3 {
  margin: 0 0 0.45rem;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lasern-home-step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--home-muted);
}

/* 7 Testimonials */
.lasern-home-quote {
  font-size: 0.98rem;
  color: var(--home-muted);
  margin: 0 0 0.85rem;
  line-height: 1.6;
}

.lasern-home-quote-meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--home-text);
}

.lasern-home-quote-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--home-primary-dark);
  background: rgba(0, 188, 212, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

/* 9 Final CTA */
.lasern-home-final {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(145deg, #0a6b7a 0%, var(--home-primary-dark) 45%, var(--home-primary) 100%);
  color: #fff;
  text-align: center;
}

.lasern-home-final h2 {
  margin: 0 auto 0.5rem;
  max-width: 28rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  font-family: var(--lasern-hero-font);
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: #fff;
  border: none;
  background: none;
  padding: 0;
}

.lasern-home-final h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}

.lasern-home-final > .lasern-home-container > p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.lasern-home-final > .lasern-home-container > p a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s ease;
}

.lasern-home-final > .lasern-home-container > p a:hover {
  opacity: 0.92;
}

.lasern-home-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  justify-content: center;
}

.lasern-home-final .lasern-home-btn--primary {
  background: #fff;
  color: var(--home-primary-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lasern-home-final .lasern-home-btn--primary:hover {
  color: #0a5c6b;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.lasern-home-final .lasern-home-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.lasern-home-final .lasern-home-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lasern-home-final > .lasern-home-container > p.lasern-home-final__disclaimer {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

/* =============================================================================
   Artikel-Layout (.lasern-article)
   ============================================================================= */

.lasern-article {
  --lasern-primary: #00bcd4;
  --lasern-primary-dark: #0097a7;
  --lasern-text: #222222;
  --lasern-text-muted: #555555;
  --lasern-bg: #ffffff;
  --lasern-bg-soft: #f5f8f9;
  --lasern-bg-muted: #eef3f5;
  --lasern-border: #e0e8eb;
  --lasern-radius: 12px;
  --lasern-radius-sm: 8px;
  --lasern-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --lasern-shadow-sm: 0 2px 12px rgba(0, 188, 212, 0.12);
  color: var(--lasern-text);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.lasern-article > * + * {
  margin-top: 1.25rem;
}

/* H1: Seitentitel kommt vom Theme — nicht im Artikel-HTML */
.lasern-article h2 {
  clear: both;
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--lasern-text);
  margin: 2.25rem 0 1rem;
  padding: 0 0 0.5rem 0.85rem;
  border-left: 4px solid var(--lasern-primary);
  background: linear-gradient(90deg, var(--lasern-bg-soft) 0%, transparent 100%);
}

/* FAQ-Überschrift (zentriert, Indigo) — auch in WP .entry-content ohne .lasern-article-Wrapper */
:is(.lasern-article, .entry-content) h2:has(+ .faq-accordion) {
  margin: 2rem 0 1.25rem;
  padding: 0;
  border: none;
  background: none;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 700;
  text-align: center;
  color: #23228a;
  letter-spacing: 0;
  text-transform: none;
}

.lasern-article h3 {
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--lasern-text);
  margin: 1.75rem 0 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--lasern-border);
}

.lasern-article p {
  margin: 0 0 1rem;
  color: var(--lasern-text);
}

.lasern-article__address {
  margin: 0 0 1rem;
  font-style: normal;
  color: var(--lasern-text);
}

.lasern-article__address strong,
.lasern-article__address > span {
  display: block;
}

.lasern-article__address > span {
  margin: 0;
}

.lasern-article p:last-child {
  margin-bottom: 0;
}

/* Artikel: SEO-freundliche Abbildungen (figure + figcaption) */
.lasern-article .lasern-article-figure {
  max-width: min(100%, 40rem);
  margin: 1.75rem auto 2rem;
  padding: 0;
  border: 1px solid var(--lasern-border);
  border-radius: var(--lasern-radius);
  overflow: hidden;
  background: var(--lasern-bg-soft);
  box-shadow: var(--lasern-shadow);
}

.lasern-article .lasern-article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.lasern-article .lasern-article-figure figcaption {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--lasern-text-muted);
  border-top: 1px solid var(--lasern-border);
  background: var(--lasern-bg);
}

/* Artikel: Bilder im Fließtext (links/rechts), ohne Extra-Kasten */
.lasern-article .lasern-article-float-photo {
  margin: 0.2rem 0 0.75rem;
  padding: 0;
  max-width: min(100%, 15.5rem);
}

.lasern-article .lasern-article-float-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--lasern-radius-sm);
  box-shadow: var(--lasern-shadow-sm);
}

.lasern-article .lasern-article-float-photo figcaption {
  margin: 0.35rem 0 0;
  padding: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--lasern-text-muted);
}

@media (min-width: 768px) {
  .lasern-article .lasern-article-float-photo--left {
    float: left;
    margin-right: 1rem;
  }

  .lasern-article .lasern-article-float-photo--right {
    float: right;
    margin-left: 1rem;
  }
}

@media (max-width: 767px) {
  .lasern-article .lasern-article-float-photo {
    float: none;
    max-width: 17rem;
    margin-left: auto;
    margin-right: auto;
  }

  .lasern-article .lasern-article-float-photo figcaption {
    max-width: 17rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/*
 * Float-Umfluss: Listen und Block-Elemente sollen nicht „neben“ oder unter dem
 * schwebenden Bild in einer schmalen Spalte starten (Bullet-Overlap vermeiden).
 */
.lasern-article ul:not(.lasern-steps),
.lasern-article ol.lasern-steps,
.lasern-article .content-box,
.lasern-article .content-info-box,
.lasern-article .content-highlight-box,
.lasern-article .content-warning-box,
.lasern-article .table-wrap,
.lasern-article .lasern-article-figure,
.lasern-article .lasern-article-mini-cta,
.lasern-article .faq-accordion,
.lasern-article .cta-box {
  clear: both;
}

/* Minimaler Hinweis-Link (z. B. zur Startseite), kein voller Info-Kasten */
.lasern-article .lasern-article-mini-cta {
  margin: 1.15rem 0 1.6rem;
  padding: 0.65rem 0.9rem 0.7rem;
  border-radius: var(--lasern-radius-sm);
  border-left: 3px solid var(--lasern-primary);
  background: var(--lasern-bg-soft);
}

.lasern-article .lasern-article-mini-cta p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--lasern-text-muted);
}

.lasern-article .lasern-article-mini-cta a {
  font-weight: 650;
  color: var(--lasern-primary-dark);
  text-decoration: none;
}

.lasern-article .lasern-article-mini-cta a:hover {
  color: var(--lasern-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lasern-article a {
  color: var(--lasern-primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.lasern-article a:hover {
  color: var(--lasern-primary);
}

.lasern-article strong {
  font-weight: 650;
  color: var(--lasern-text);
}

/* Listen mit Icon-Bullets */
.lasern-article ul:not(.lasern-steps) {
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
}

.lasern-article ul:not(.lasern-steps) li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.65rem;
  color: var(--lasern-text);
}

.lasern-article ul:not(.lasern-steps) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lasern-primary);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

/* Nummerierte Schritte */
.lasern-article ol.lasern-steps {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  counter-reset: lasern-step;
}

.lasern-article ol.lasern-steps li {
  position: relative;
  counter-increment: lasern-step;
  padding: 1rem 1rem 1rem 3.25rem;
  margin-bottom: 0.75rem;
  background: var(--lasern-bg-soft);
  border-radius: var(--lasern-radius-sm);
  border: 1px solid var(--lasern-border);
}

.lasern-article ol.lasern-steps li::before {
  content: counter(lasern-step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: var(--lasern-primary);
  border-radius: 50%;
}

/* Content-Boxen */
.lasern-article .content-box,
.lasern-article .content-info-box {
  margin: 1.5rem 0;
  padding: 1.15rem 1.25rem 1.15rem 1.35rem;
  border-radius: var(--lasern-radius-sm);
  border: 1px solid var(--lasern-border);
  background: var(--lasern-bg-soft);
  border-left: 4px solid var(--lasern-primary);
}

.lasern-article .content-box p:last-child,
.lasern-article .content-info-box p:last-child {
  margin-bottom: 0;
}

.lasern-article .content-highlight-box {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--lasern-radius);
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.08) 0%, var(--lasern-bg-muted) 100%);
  border: 1px solid rgba(0, 188, 212, 0.25);
  box-shadow: var(--lasern-shadow-sm);
}

.lasern-article .content-highlight-box .highlight-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lasern-primary-dark);
  margin: 0 0 0.5rem;
}

.lasern-article .content-warning-box {
  margin: 1.5rem 0;
  padding: 1.15rem 1.25rem 1.15rem 1.35rem;
  border-radius: var(--lasern-radius-sm);
  background: #fff8f5;
  border: 1px solid #f0d9ce;
  border-left: 4px solid #e67e22;
}

.lasern-article .content-warning-box p {
  color: #3d2f28;
}

/* Tabellen */
.lasern-article .table-wrap {
  margin: 1.75rem 0;
  overflow-x: auto;
  border-radius: var(--lasern-radius);
  box-shadow: var(--lasern-shadow);
  border: 1px solid var(--lasern-border);
  background: var(--lasern-bg);
}

.lasern-article .table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.lasern-article .table-wrap thead th {
  text-align: left;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, var(--lasern-bg-muted) 0%, var(--lasern-bg-soft) 100%);
  color: var(--lasern-text);
  font-weight: 650;
  border-bottom: 2px solid var(--lasern-primary);
}

.lasern-article .table-wrap tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--lasern-border);
  color: var(--lasern-text);
}

.lasern-article .table-wrap tbody tr:nth-child(even) {
  background: var(--lasern-bg-soft);
}

.lasern-article .table-wrap tbody tr:last-child td {
  border-bottom: none;
}

.lasern-article .table-wrap tbody tr.lasern-price-cat td {
  background: var(--lasern-bg-soft);
  font-weight: 650;
  color: var(--lasern-text);
  border-bottom: 1px solid var(--lasern-border);
}

.lasern-article .table-wrap tbody tr.lasern-price-cat td[colspan] {
  padding-top: 0.9rem;
  padding-bottom: 0.45rem;
}

/* FAQ: Accordion-Look (Artikel + Startseite .lasern-home-main) */
:is(.lasern-article, .lasern-home-main, .entry-content) .faq-accordion {
  --faq-indigo: #23228a;
  --faq-gold: #edbe00;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0;
  border: none;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-item {
  margin: 0 0 10px;
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: none;
  box-shadow: none;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-item:last-child {
  margin-bottom: 0;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-question {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0.95rem 1.1rem;
  margin: 0;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: #333;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-question:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-item.is-open .faq-question {
  background-color: var(--faq-indigo);
  color: #ffffff;
  box-shadow: 0 2px 5px rgba(35, 34, 138, 0.25);
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-question:focus {
  outline: none;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-question:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(35, 34, 138, 0.25);
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-question .faq-question-label,
:is(.lasern-article, .lasern-home-main, .entry-content) .faq-question > span:first-of-type:not(.faq-icon) {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-icon {
  order: -1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 10px;
  margin-left: 0;
  font-size: 0;
  line-height: 0;
  border: 2px solid var(--faq-gold);
  border-radius: 50%;
  background: transparent;
  position: relative;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-icon::after {
  content: "?";
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  color: var(--faq-gold);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.75rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-item.is-open .faq-question::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

@keyframes lasern-faq-slide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-answer-inner {
  overflow: hidden;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-answer-inner > * {
  margin: 0;
  padding: 1rem 1.15rem 1.1rem 1.25rem;
  color: #333;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  background-color: #f8f9fa;
  border: none;
  border-left: 4px solid var(--faq-indigo);
  border-radius: 0;
  box-shadow: none;
  max-width: none;
}

:is(.lasern-article, .lasern-home-main, .entry-content) .faq-item.is-open .faq-answer-inner > * {
  animation: lasern-faq-slide 0.3s ease-out;
}

/* CTA */
.lasern-article .cta-box {
  margin: 2.5rem 0 1rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--lasern-radius);
  background: linear-gradient(145deg, var(--lasern-primary) 0%, var(--lasern-primary-dark) 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.35);
}

.lasern-article .cta-box h2,
.lasern-article .cta-box h3 {
  color: #fff;
  border: none;
  background: none;
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 1.35rem;
}

.lasern-article .cta-box p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.25rem;
  font-size: 1rem;
}

.lasern-article .cta-box .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 650;
  color: var(--lasern-primary-dark);
  background: #fff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.lasern-article .cta-box .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--lasern-primary-dark);
}

/* Optionale Sektion */
.lasern-article .section-soft {
  margin: 2rem -1.25rem;
  padding: 1.75rem 1.25rem;
  background: var(--lasern-bg-soft);
  border-radius: var(--lasern-radius);
  border: 1px solid var(--lasern-border);
}

/* =============================================================================
   Responsive (Artikel)
   ============================================================================= */

@media (max-width: 600px) {
  .lasern-article {
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lasern-article h2 {
    padding-left: 0.65rem;
    margin-top: 1.75rem;
  }

  .lasern-article .cta-box {
    padding: 1.35rem 1.15rem;
  }

  .lasern-article .cta-box .cta-btn {
    width: 100%;
  }
}

/* =============================================================================
   Site-Footer (Premium, dunkel — Lasern)
   ============================================================================= */

.lasern-footer {
  --footer-bg: #0f172a;
  --footer-bg-deep: #0b1220;
  --footer-text: #e2e8f0;
  --footer-muted: #94a3b8;
  --footer-accent: #00bcd4;
  --footer-accent-soft: rgba(0, 188, 212, 0.35);
  --footer-border: rgba(148, 163, 184, 0.12);
  font-family: var(--lasern-hero-font);
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 0;
}

.lasern-footer__main {
  padding: clamp(2.75rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--footer-border);
  background: linear-gradient(180deg, var(--footer-bg-deep) 0%, var(--footer-bg) 28%);
}

.lasern-footer__inner {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}

.lasern-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 1024px) {
  .lasern-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lasern-footer__col--brand {
    grid-column: 1 / -1;
    max-width: 36rem;
  }
}

@media (max-width: 600px) {
  .lasern-footer__grid {
    grid-template-columns: 1fr;
  }

  .lasern-footer__col--brand {
    grid-column: auto;
  }
}

.lasern-footer__logo {
  display: inline-block;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.2rem;
  background: linear-gradient(135deg, #fff 0%, var(--footer-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.2s ease;
}

@supports not (background-clip: text) {
  .lasern-footer__logo {
    color: #fff;
    -webkit-text-fill-color: unset;
    background: none;
  }
}

.lasern-footer__logo:hover {
  opacity: 0.88;
}

.lasern-footer__logo::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--footer-accent), transparent);
}

.lasern-footer__domain {
  display: block;
  margin: -0.15rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--footer-muted);
}

.lasern-footer__about {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--footer-muted);
  max-width: 22rem;
}

.lasern-footer__about strong {
  color: var(--footer-text);
  font-weight: 600;
}

.lasern-footer__heading {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-accent);
}

.lasern-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lasern-footer__links li {
  margin: 0 0 0.55rem;
}

.lasern-footer__link {
  display: inline-block;
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.45;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lasern-footer__link:hover {
  color: var(--footer-accent);
  border-bottom-color: var(--footer-accent-soft);
}

@media (prefers-reduced-motion: no-preference) {
  .lasern-footer__link:hover {
    transform: translateX(3px);
  }
}

.lasern-footer__link--inline {
  color: var(--footer-muted);
  word-break: break-word;
}

.lasern-footer__link--inline:hover {
  color: var(--footer-accent);
}

.lasern-footer__contact {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.lasern-footer__contact li {
  margin-bottom: 0.85rem;
}

.lasern-footer__contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-muted);
  margin-bottom: 0.2rem;
}

.lasern-footer__contact-text {
  font-size: 0.9375rem;
  color: var(--footer-text);
}

.lasern-footer__trust {
  margin: 0;
  padding: 1rem 1rem 1rem 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--footer-muted);
  border-left: 3px solid var(--footer-accent);
  background: rgba(0, 188, 212, 0.06);
  border-radius: 0 8px 8px 0;
}

.lasern-footer__bar {
  border-top: 1px solid var(--footer-border);
  background: rgba(0, 0, 0, 0.2);
  padding: 1.1rem 0;
}

.lasern-footer__bar-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.lasern-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--footer-muted);
}

.lasern-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.lasern-footer__legal-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lasern-footer__legal-link:hover {
  color: var(--footer-accent);
}

.lasern-footer__legal-sep {
  color: var(--footer-border);
  user-select: none;
}

@media (max-width: 480px) {
  .lasern-footer__bar-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================================================
   Contact Form 7 — kompakt / wenig Abstand, Lasern-Palette
   ============================================================================= */

.wpcf7 {
  --lasern-cf7-accent: #00bcd4;
  --lasern-cf7-accent-dark: #0097a7;
  --lasern-cf7-text: #0f172a;
  --lasern-cf7-muted: #64748b;
  --lasern-cf7-border: #e2e8f0;
  --lasern-cf7-border-focus: rgba(0, 188, 212, 0.45);
  --lasern-cf7-bg: #ffffff;
  --lasern-cf7-radius: 10px;
  --lasern-cf7-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  --lasern-cf7-error: #b91c1c;
  --lasern-cf7-error-bg: #fef2f2;
  --lasern-cf7-success: #0f766e;
  --lasern-cf7-success-bg: #f0fdfa;
  max-width: 36rem;
  font-family: var(--lasern-hero-font);
  color: var(--lasern-cf7-text);
}

.wpcf7 form {
  margin: 0;
}

.wpcf7 form > p {
  margin: 0 0 0.65rem;
}

.wpcf7 form > p:last-of-type {
  margin-bottom: 0;
}

.wpcf7 label,
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7 label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lasern-cf7-text);
  line-height: 1.3;
}

.wpcf7 label .wpcf7-form-control-wrap {
  margin-top: 0.22rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--lasern-cf7-text);
  background: var(--lasern-cf7-bg);
  border: 1px solid var(--lasern-cf7-border);
  border-radius: var(--lasern-cf7-radius);
  box-shadow: var(--lasern-cf7-shadow);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  padding-right: 1.85rem;
}

.wpcf7 textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--lasern-cf7-muted);
  opacity: 1;
}

.wpcf7 input:hover,
.wpcf7 select:hover,
.wpcf7 textarea:hover {
  border-color: #cbd5e1;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--lasern-cf7-accent);
  box-shadow:
    var(--lasern-cf7-shadow),
    0 0 0 2px var(--lasern-cf7-border-focus);
}

.wpcf7 input.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
  border-color: rgba(185, 28, 28, 0.45);
  background-color: var(--lasern-cf7-error-bg);
}

.wpcf7 input.wpcf7-not-valid:focus,
.wpcf7 select.wpcf7-not-valid:focus,
.wpcf7 textarea.wpcf7-not-valid:focus {
  box-shadow:
    var(--lasern-cf7-shadow),
    0 0 0 2px rgba(185, 28, 28, 0.2);
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lasern-cf7-error);
  line-height: 1.35;
}

.wpcf7 .wpcf7-list-item {
  margin: 0.2rem 0 0;
}

.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0;
  cursor: pointer;
}

.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: 1rem;
  height: 1rem;
  margin: 0.12rem 0 0;
  flex-shrink: 0;
  accent-color: var(--lasern-cf7-accent-dark);
  cursor: pointer;
}

.wpcf7 input[type="submit"],
.wpcf7 input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 1.2rem;
  margin-top: 0.1rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(
    145deg,
    var(--lasern-cf7-accent) 0%,
    var(--lasern-cf7-accent-dark) 100%
  );
  border: none;
  border-radius: var(--lasern-cf7-radius);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 14px -4px rgba(0, 151, 167, 0.55);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="button"]:hover {
  filter: brightness(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 8px 22px -6px rgba(0, 188, 212, 0.45);
}

.wpcf7 input[type="submit"]:active,
.wpcf7 input[type="button"]:active {
  transform: translateY(1px);
}

.wpcf7 input[type="submit"]:focus-visible,
.wpcf7 input[type="button"]:focus-visible {
  outline: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 14px -4px rgba(0, 151, 167, 0.55),
    0 0 0 2px var(--lasern-cf7-border-focus);
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7 input[type="submit"]:active,
  .wpcf7 input[type="button"]:active {
    transform: none;
  }
}

.wpcf7 form.submitting input[type="submit"],
.wpcf7 form.submitting input[type="button"] {
  opacity: 0.72;
  pointer-events: none;
  cursor: wait;
}

.wpcf7 .wpcf7-spinner {
  margin: 0 0 0 0.35rem;
  vertical-align: middle;
}

.wpcf7 .wpcf7-response-output {
  margin: 0.65rem 0 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  border: 1px solid var(--lasern-cf7-border);
  border-radius: var(--lasern-cf7-radius);
  background: #f8fafc;
  color: var(--lasern-cf7-text);
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 .wpcf7-response-output:where(.wpcf7-mail-sent-ok) {
  border-color: rgba(15, 118, 110, 0.35);
  background: var(--lasern-cf7-success-bg);
  color: var(--lasern-cf7-success);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 .wpcf7-response-output:where(.wpcf7-validation-errors, .wpcf7-acceptance-missing) {
  border-color: rgba(185, 28, 28, 0.35);
  background: var(--lasern-cf7-error-bg);
  color: var(--lasern-cf7-error);
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 .wpcf7-response-output:where(.wpcf7-mail-sent-ng, .wpcf7-aborted) {
  border-color: rgba(185, 28, 28, 0.35);
  background: var(--lasern-cf7-error-bg);
  color: var(--lasern-cf7-error);
}

/* =============================================================================
   GeneratePress: Menüpunkt „Termin Buchen“
   Im Menü dem Link die CSS-Klasse „termin-buchen-btn“ geben (Menüpunkt, nicht nur der Link).
   Listenpunkt-Marker (::marker) ausblenden — sonst erscheint ein Bullet/Listensymbol.
   ============================================================================= */

.main-navigation .termin-buchen-btn,
#generate-slideout-menu .termin-buchen-btn,
.slideout-navigation .termin-buchen-btn {
  list-style: none;
  list-style-type: none;
}

.main-navigation .termin-buchen-btn::marker,
#generate-slideout-menu .termin-buchen-btn::marker,
.slideout-navigation .termin-buchen-btn::marker {
  content: none;
  display: none;
}

/* Ruhiger CTA: flache Farbe, feste leichte Schatten — Hover nur minimal dunklere Fläche */
.main-navigation .termin-buchen-btn > a,
#generate-slideout-menu .termin-buchen-btn > a,
.slideout-navigation .termin-buchen-btn > a {
  --ltb-btn: #00bcd4;
  --ltb-btn-hover: #0097a7;
  --ltb-btn-active: #008896;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 0.5rem;
  padding: 0.5rem 1.125rem;
  min-height: 2.375rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap;
  background-color: var(--ltb-btn);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.main-navigation .termin-buchen-btn > a:hover,
#generate-slideout-menu .termin-buchen-btn > a:hover,
.slideout-navigation .termin-buchen-btn > a:hover {
  color: #fff !important;
  background-color: var(--ltb-btn-hover);
  border-color: rgba(0, 0, 0, 0.12);
}

.main-navigation .termin-buchen-btn > a:focus-visible,
#generate-slideout-menu .termin-buchen-btn > a:focus-visible,
.slideout-navigation .termin-buchen-btn > a:focus-visible {
  color: #fff !important;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.main-navigation .termin-buchen-btn > a:active,
#generate-slideout-menu .termin-buchen-btn > a:active,
.slideout-navigation .termin-buchen-btn > a:active {
  color: #fff !important;
  background-color: var(--ltb-btn-active);
  border-color: rgba(0, 0, 0, 0.14);
}

.main-navigation .termin-buchen-btn.current-menu-item > a,
.main-navigation .termin-buchen-btn.current-menu-ancestor > a,
#generate-slideout-menu .termin-buchen-btn.current-menu-item > a,
.slideout-navigation .termin-buchen-btn.current-menu-item > a {
  background-color: var(--ltb-btn-hover);
  border-color: rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .main-navigation .termin-buchen-btn > a,
  #generate-slideout-menu .termin-buchen-btn > a,
  .slideout-navigation .termin-buchen-btn > a {
    margin: 0.5rem 0 0;
    width: 100%;
    max-width: 260px;
  }
}

/* Optional: freistehender Link mit Klasse termin-buchen-link (Widget / HTML-Block) */
a.termin-buchen-link {
  --ltb-btn: #00bcd4;
  --ltb-btn-hover: #0097a7;
  --ltb-btn-active: #008896;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.125rem;
  min-height: 2.375rem;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap;
  background-color: var(--ltb-btn);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

a.termin-buchen-link:hover {
  color: #fff !important;
  background-color: var(--ltb-btn-hover);
  border-color: rgba(0, 0, 0, 0.12);
}

a.termin-buchen-link:focus-visible {
  color: #fff !important;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

a.termin-buchen-link:active {
  color: #fff !important;
  background-color: var(--ltb-btn-active);
  border-color: rgba(0, 0, 0, 0.14);
}

/* =============================================================================
   Kategorie-Archiv (.lasern-cat-*) — category.php + GeneratePress
   Erstes Beitrag: horizontal „Feature“; weitere: 3-Spalten-Raster; sachlich/minimal
   ============================================================================= */

.lasern-cat-archive {
  --lc-text: #1a1a1a;
  --lc-muted: #5c5c5c;
  --lc-bg: #ffffff;
  --lc-border: #e5e5e5;
  --lc-accent: #1a1a1a;
  --lc-radius: 10px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--lc-text);
}

.lasern-cat-head {
  margin: 0 0 1.75rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--lc-border);
}

.lasern-cat-head__title {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lc-text);
}

/* Erster Beitrag — horizontal (Bild | Text) */
.lasern-cat-feature {
  margin: 0 0 2rem;
  padding: 0;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius);
  background: var(--lc-bg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.lasern-cat-feature:hover {
  border-color: #ccc;
}

.lasern-cat-feature__link {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
  min-height: 0;
}

@media (min-width: 768px) {
  .lasern-cat-feature__link {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 17rem;
  }
}

.lasern-cat-feature__media {
  position: relative;
  min-height: 12rem;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  overflow: hidden;
}

.lasern-cat-feature__media figure,
.lasern-cat-feature__media .wp-post-image {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}

.lasern-cat-feature__media figure img {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .lasern-cat-feature__media {
    min-height: min(22rem, 50vh);
  }
}

.lasern-cat-feature__img {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

@media (min-width: 768px) {
  .lasern-cat-feature__img {
    min-height: 100%;
  }
}

.lasern-cat-feature:hover .lasern-cat-feature__img {
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .lasern-cat-feature:hover .lasern-cat-feature__img {
    transform: none;
  }
}

.lasern-cat-feature__placeholder {
  width: 100%;
  min-height: 12rem;
  background: #eee;
}

.lasern-cat-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 1.35rem 1.5rem;
  gap: 0;
}

@media (min-width: 768px) {
  .lasern-cat-feature__body {
    padding: 1.75rem 2rem;
  }
}

.lasern-cat-feature__meta {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-muted);
}

.lasern-cat-feature__title {
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--lc-text);
}

.lasern-cat-feature__excerpt {
  margin: 0 0 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--lc-muted);
}

.lasern-cat-feature__cta {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lc-accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

.lasern-cat-feature:hover .lasern-cat-feature__cta {
  text-decoration-thickness: 2px;
}

.lasern-cat-feature__link:focus-visible {
  outline: 2px solid var(--lc-text);
  outline-offset: 2px;
}

/* Weitere Beiträge — 3 Spalten ab Desktop */
.lasern-cat-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .lasern-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lasern-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.lasern-cat-card {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  min-width: 0;
  height: 100%;
  border-radius: var(--lc-radius);
  background: var(--lc-bg);
  border: 1px solid var(--lc-border);
  transition: border-color 0.2s ease;
}

.lasern-cat-card:hover {
  border-color: #ccc;
}

.lasern-cat-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
  overflow: hidden;
}

.lasern-cat-card__link:focus-visible {
  outline: 2px solid var(--lc-text);
  outline-offset: 2px;
}

.lasern-cat-card__media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

.lasern-cat-card__media figure,
.lasern-cat-card__media .wp-block-image,
.lasern-cat-card__media .wp-post-image {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}

.lasern-cat-card__media figure img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lasern-cat-card__img {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.lasern-cat-card:hover .lasern-cat-card__img {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .lasern-cat-card:hover .lasern-cat-card__img {
    transform: none;
  }
}

.lasern-cat-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 9rem;
  background: #eee;
}

.lasern-cat-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 1rem 1rem 1.15rem;
}

.lasern-cat-card__meta {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-muted);
}

.lasern-cat-card__title {
  margin: 0 0 0.5rem;
  padding: 0;
  border: none;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--lc-text);
}

.lasern-cat-card__excerpt {
  margin: 0 0 0.85rem;
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--lc-muted);
}

.lasern-cat-card__cta {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lc-accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

.lasern-cat-card:hover .lasern-cat-card__cta {
  text-decoration-thickness: 2px;
}

/* Kategoriebeschreibung — nur Typo, kein Farbbox */
.lasern-cat-desc {
  margin: 2.25rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--lc-border);
}

.lasern-cat-desc__content {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--lc-muted);
}

.lasern-cat-desc__content p {
  margin: 0 0 0.75rem;
}

.lasern-cat-desc__content p:last-child {
  margin-bottom: 0;
}

.lasern-cat-empty {
  margin: 1.5rem 0;
  padding: 1rem 0;
  text-align: center;
  border-radius: var(--lc-radius);
  border: 1px dashed var(--lc-border);
  color: var(--lc-muted);
  font-size: 0.9375rem;
}

.lasern-cat-pagination-wrap {
  margin: 2rem 0 0;
  display: flex;
  justify-content: center;
}

.lasern-cat-pagination-wrap .navigation.pagination,
.lasern-cat-pagination-wrap nav.navigation {
  width: 100%;
  max-width: 100%;
}

.lasern-cat-pagination-wrap .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.5rem;
}

.lasern-cat-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--lc-text);
  background: var(--lc-bg);
  border: 1px solid var(--lc-border);
  border-radius: 6px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.lasern-cat-pagination-wrap .page-numbers:hover,
.lasern-cat-pagination-wrap .page-numbers:focus-visible {
  border-color: #999;
  color: var(--lc-text);
}

.lasern-cat-pagination-wrap .page-numbers.current {
  background: var(--lc-text);
  border-color: var(--lc-text);
  color: #fff;
}

.lasern-cat-pagination-wrap .page-numbers.dots {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 0.25rem;
  color: var(--lc-muted);
}

/* GeneratePress: Blog-Spalten / .site-main-Flex / .post-Breiten — sonst Raster auf ~0 Breite */
body.archive.category #primary.content-area,
body.archive.category #main.site-main {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.archive.category #main.site-main {
  display: block !important;
  flex-wrap: unset !important;
}

body.archive.category #main.site-main .lasern-cat-archive {
  flex: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  grid-column: 1 / -1;
}

/* GP: .inside-article olsa da volle Breite (kein schmaler Innen-Container) */
body.archive.category #main.site-main .inside-article {
  max-width: 100% !important;
  width: 100% !important;
  min-width: 0 !important;
}

body.archive.category .lasern-cat-grid {
  display: grid !important;
  width: 100% !important;
  min-width: 0 !important;
  grid-template-columns: 1fr !important;
}

@media (min-width: 640px) {
  body.archive.category .lasern-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  body.archive.category .lasern-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

body.archive.category .site-main .lasern-cat-grid > article.post,
body.archive.category .site-main .lasern-cat-grid > article.lasern-cat-card {
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.archive.category .lasern-cat-card .lasern-cat-card__media,
body.archive.category .lasern-cat-card .lasern-cat-card__link {
  margin: 0 !important;
  padding: 0 !important;
}

body.archive.category .lasern-cat-card .lasern-cat-card__media img,
body.archive.category .lasern-cat-card .lasern-cat-card__img,
body.archive.category .lasern-cat-card .lasern-cat-card__media .wp-post-image {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.archive.category .site-main article.lasern-cat-feature.post {
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
  margin: 0 !important;
  margin-bottom: 2rem !important;
  padding: 0 !important;
}

body.archive.category .lasern-cat-feature .lasern-cat-feature__media,
body.archive.category .lasern-cat-feature .lasern-cat-feature__link {
  margin: 0 !important;
  padding: 0 !important;
}

body.archive.category .lasern-cat-feature .lasern-cat-feature__img,
body.archive.category .lasern-cat-feature .lasern-cat-feature__media img {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

body.archive.category .lasern-cat-card__title,
body.archive.category .lasern-cat-card__excerpt,
body.archive.category .lasern-cat-card__meta,
body.archive.category .lasern-cat-card__cta,
body.archive.category .lasern-cat-feature__title,
body.archive.category .lasern-cat-feature__excerpt,
body.archive.category .lasern-cat-feature__meta,
body.archive.category .lasern-cat-feature__cta {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}