/* ===================== */
/* Listen im Blockeditor (hosting-content) */
/* ===================== */

/* Basis-Einrückung für UL/OL */
.hosting-content :where(ul, ol) {
  margin: 1rem 0 1.25rem 1.5rem;  /* oben/unten Abstand, links Einzug */
  padding-left: 1.25rem;          /* zusätzlicher Einzug für Marker/Zahlen */
}

/* Listenelemente: lesbarer Zeilenabstand */
.hosting-content li {
  margin-bottom: 0.45rem;
  line-height: 1.6;
}

/* Verschachtelte Listen noch etwas weiter einrücken */
.hosting-content li :where(ul, ol) {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  margin-left: 1rem;
}

/* ===================== */
/* CTA Button */
/* ===================== */
.webseiten-cta {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.cta-button {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}