/* ============================================================
   Block: Onepager Kondition
   ============================================================ */

.block-onepager-kondition {
  font-family: "Jost", sans-serif;
  color: #15325a;
  background: #fff;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 0;
}

.block-onepager-kondition-wrapper {
  display: flex;
  align-items: stretch;
  gap: 80px;
  width: 100%;
}
/* ── Linke Spalte ─────────────────────────────────────────── */

.onk-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hauptüberschrift */
.onk-heading {
  font-size: 3rem;
  font-weight: 300;
  color: #15325a;
  margin: 0 0 2rem;
  line-height: 1;
}

/* Thementitel – Basis */
.onk-thema {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0;
  color: #15325a;
}

/* Erster Thementitel: gleiche Farbe wie Titel 2, Akzent kommt vom roten Divider darunter */
.onk-thema--akzent {
  color: #15325a;
}

/* Trennstrich zwischen den beiden Thementiteln */
.onk-divider {
  display: block;
  width: 100px;
  height: 2px;
  background: #ff2d3c;
  margin: 1rem 0;
  flex-shrink: 0;
}

/* Zweiter Thementitel: normaler Abstand nach unten */
.onk-thema:not(.onk-thema--akzent) {
  margin-bottom: 1.25rem;
}

/* Hinweis-Text */
.onk-hinweis {
  font-size: 0.875rem;
  font-weight: 300;
  color: #484f53;
  line-height: 1.55;
  margin: 0 0 2rem;
}

/* Button */
.onk-btn {
  display: inline-block;
  padding: 0.55rem 1.5rem;
  border: 1px solid #15325a;
  border-radius: 999px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #15325a;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
  margin-top: 40px; /* klebt an der Unterkante des Flex-Containers */
}

.onk-btn:hover {
  background: #15325a;
  color: #fff;
}

/* ── Rechte Spalte ────────────────────────────────────────── */

.onk-right {
  flex: 1 1 0;
  min-width: 0;

  display: flex;
  align-items: flex-start;
}

/* ── WYSIWYG-Inhalt ───────────────────────────────────────── */

.onk-wysiwyg {
  width: 100%;
  font-size: 1rem;
  line-height: 1.65;
  color: #15325a;
}

/* Überschriften */
.onk-wysiwyg h2,
.onk-wysiwyg h3,
.onk-wysiwyg h4 {
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 0.85rem;
  color: #15325a;
}

.onk-wysiwyg h2 {
  font-size: 1.15rem;
}

/* H3 ist die Hauptüberschrift der rechten Spalte */
.onk-wysiwyg h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.onk-wysiwyg h4 {
  font-size: 0.9rem;
}

/* Absätze */
.onk-wysiwyg p {
  margin: 0 0 0.85rem;
}

.onk-wysiwyg p:last-child {
  margin-bottom: 0;
}

/* Aufzählungsliste – rote Punkte statt Standard-Bullets */
.onk-wysiwyg ul {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.onk-wysiwyg ul li {
  padding-left: 1.1rem;
  position: relative;
}

.onk-wysiwyg ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ff2d3c;
  flex-shrink: 0;
}

/* Geordnete Liste */
.onk-wysiwyg ol {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Links */
.onk-wysiwyg a {
  color: #ff2d3c;
  text-decoration: none;
}

.onk-wysiwyg a:hover {
  text-decoration: underline;
}

/* Fettdruck */
.onk-wysiwyg strong {
  font-weight: 600;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .onk-left {
    flex: 0 0 42%;
    padding: 48px 36px 48px 48px;
  }

  .onk-right {
    padding: 48px 48px 48px 48px;
  }
}

@media (max-width: 768px) {
  .block-onepager-kondition {
    flex-direction: column;
    padding: 40px 28px;
  }

  .block-onepager-kondition-wrapper {
    display: block;
  }

  .onk-left {
    flex: none;
    border-right: none;
    border-bottom: 1px solid #e2e6ea;
    padding: 0 0 40px 0;
  }

  .onk-right {
    flex: none;
    padding: 40px 0 40px 0;
  }

  .onk-heading {
    font-size: 2rem;
  }

  .onk-btn {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .onk-heading {
    font-size: 2rem;
    text-align: center;
  }
}
