/* Start custom CSS for text-editor, class: .elementor-element-17ab8d79 *//***********************
  Grundfarben & Defaults
***********************/
:root{
  --c-bg: #ffffff;          /* Weiß */
  --c-text: #1a1a1a;        /* Haupt-Text (schwarz/dunkel) */
  --c-text-strong: #000000;
  --c-teal: #0f6a7a;        /* Türkis (Hauptfarbe) */
  --c-teal-weak: #f0fbfd;   /* sehr helles Türkis für Flächen */
  --c-yellow: #ffd800;      /* Akzent Gelb */
  --c-yellow-weak: #fff9cc; /* sehr helles Gelb für Hover/Highlights */
  --c-border: #e9e9e9;
}

/* Container & Typografie */
.seo-duschkabinen {
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  border-top: 1px solid var(--c-border);
  padding: clamp(20px, 3vw, 36px) 0;
}
.seo-dk__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 20px);
}
.seo-dk__title {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: .2px;
  color: var(--c-text-strong);
}
.seo-dk__lead {
  font-size: 17px;
  color: #2a2a2a;
  margin: 0 0 14px;
}

/* Links (Standard: Türkis mit Unterstreichung im Hover) */
.seo-duschkabinen a {
  color: var(--c-teal);
  text-decoration: none;
}
.seo-duschkabinen a:hover,
.seo-duschkabinen a:focus {
  text-decoration: underline;
}

/***************
  Inhaltsverzeichnis
***************/
.seo-dk__toc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0;
  margin: 6px 0 18px;
  list-style: none;
}
.seo-dk__toc a {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: var(--c-bg);
  color: var(--c-teal);
  font-size: 14px;
  text-decoration: none;
}
.seo-dk__toc a:hover { background: var(--c-teal-weak); }

/***************
  Sektionen & Überschriften
***************/
.seo-dk__section { margin: 22px 0; }
.seo-dk__section h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 0 0 10px;
  color: var(--c-text-strong);
}
.seo-dk__section h4 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--c-text-strong);
}

/***************
  Grid-Karten
***************/
.seo-dk__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .seo-dk__grid { grid-template-columns: repeat(3, 1fr); }
}
.seo-dk__card {
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 14px;
  background: #fafafa;
}

/***************
  Listen
***************/
.seo-dk__list {
  margin: 10px 0;
  padding-left: 18px;
}
.seo-dk__list li { margin: 6px 0; }

/***************
  Tabelle
***************/
.seo-dk__tablewrap {
  overflow-x: auto;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-bg);
}
.seo-dk__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 560px;
}
/* Tabellenkopf: TÜRKIS mit WEISSER Schrift */
.seo-dk__table thead th {
  background: var(--c-teal);   /* Türkis */
  color: #ffffff;              /* Weiß */
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 12px;
}
.seo-dk__table th,
.seo-dk__table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  color: var(--c-text);
  background: #fff;           /* Weiß mit schwarzer/ dunkler Schrift */
}
/* Zebra-Stripe & Hover (helles Türkis / helles Gelb) */
.seo-dk__table tbody tr:nth-child(even) { background: var(--c-teal-weak); }
.seo-dk__table tbody tr:hover {
  background: var(--c-yellow-weak); /* Gelbton, bleibt gut lesbar mit schwarzem Text */
  transition: background .2s ease-in-out;
}

/***************
  Interne Linkliste (Kacheln)
***************/
.seo-dk__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .seo-dk__links { grid-template-columns: repeat(2, 1fr); }
}
.seo-dk__plink {
  display: block;
  padding: 10px 12px;
  background: var(--c-teal-weak);   /* sehr helles Türkis */
  border: 1px solid var(--c-border);
  border-radius: 10px;
  color: var(--c-teal);             /* Türkis-Schrift */
  text-decoration: none;
  font-weight: 600;
}
.seo-dk__plink:hover {
  background: var(--c-yellow-weak); /* gelblicher Hover */
  color: var(--c-text-strong);      /* Schwarz auf Gelb-Hintergrund */
}

/***************
  Buttons & Badges (Farblogik)
***************/
/* Türkis-Button: Türkis + weiße Schrift */
.btn--teal,
.seo-duschkabinen .button--teal {
  display: inline-block;
  padding: 10px 14px;
  background: var(--c-teal);
  color: #ffffff;             /* Weiß auf Türkis */
  border: 1px solid var(--c-teal);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}
.btn--teal:hover,
.seo-duschkabinen .button--teal:hover {
  filter: brightness(1.08);
}

/* Gelber Button: Gelb + schwarze Schrift */
.btn--yellow,
.seo-duschkabinen .button--yellow {
  display: inline-block;
  padding: 10px 14px;
  background: var(--c-yellow);
  color: #000000;             /* Schwarz auf Gelb */
  border: 1px solid #e0c100;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
}
.btn--yellow:hover,
.seo-duschkabinen .button--yellow:hover {
  background: #ffe34d;
}

/* Weißer Button: Weiß + schwarze Schrift + türkiser Rand */
.btn--white,
.seo-duschkabinen .button--white {
  display: inline-block;
  padding: 10px 14px;
  background: #ffffff;        /* Weiß */
  color: #000000;             /* Schwarz */
  border: 1px solid var(--c-teal);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}
.btn--white:hover,
.seo-duschkabinen .button--white:hover {
  background: var(--c-teal-weak);
}

/* Badges/Tags */
.badge--teal   { background: var(--c-teal);   color:#fff;     border-radius:8px; padding:4px 8px; }
.badge--yellow { background: var(--c-yellow); color:#000000;  border-radius:8px; padding:4px 8px; }
.badge--white  { background: #fff;            color:#000;     border:1px solid var(--c-teal); border-radius:8px; padding:4px 8px; }

/***************
  FAQ (Details)
***************/
.seo-dk__faq details {
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  margin: 8px 0;
}
.seo-dk__faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--c-teal); /* Teal-Heading */
}
.seo-dk__faq summary::-webkit-details-marker { display: none; }
.seo-dk__answer { margin-top: 8px; color: var(--c-text); }

/***************
  CTA
***************/
.seo-dk__cta {
  border-top: 1px dashed var(--c-border);
  margin-top: 20px;
  padding-top: 14px;
  color: #2b2b2b;
}
.seo-dk__cta a.button--yellow { margin-left: 6px; }

/***************
  Barrierefreiheit / Fokus
***************/
.seo-dk__card:focus-within,
.seo-dk__plink:focus,
.seo-dk__toc a:focus,
.seo-duschkabinen a:focus,
.button--teal:focus,
.button--yellow:focus,
.button--white:focus {
  outline: 3px solid var(--c-yellow); /* gelber Fokus-Ring */
  outline-offset: 2px;
}/* End custom CSS */