/**
 * LichtWesen: PageBuilder Spacing Fix für Infoblog-Seiten - V2
 * Aggressivere Version die alle möglichen Spacing-Quellen abdeckt
 */

/* ============================================
   MASTER RESET: Alles innerhalb .ct-view 
   was PageBuilder-Attribute hat
   ============================================ */

/* Row Container selbst */
.ct-view [data-content-type="row"] {
    margin: 0 !important;
    padding: 0 !important;
}

/* Row Inner - das ist oft der Hauptverursacher */
.ct-view [data-content-type="row"] > div {
    margin: 0 !important;
    padding: 0 !important;
}

/* Aber TOC-Box (grauer Hintergrund) soll Padding behalten */
.ct-view [data-pb-style="X46UWPG"] {
    padding: 0 !important;
    margin: 0 !important;
}
.ct-view [data-pb-style="CGL3X9B"] {
    padding: 15px !important;
}

/* Column Group */
.ct-view .pagebuilder-column-group,
.ct-view [data-content-type="column-group"] {
    margin: 0 !important;
    padding: 0 !important;
}

/* Column Line */
.ct-view .pagebuilder-column-line,
.ct-view [data-content-type="column-line"] {
    margin: 0 !important;
    padding: 0 !important;
}

/* Column */
.ct-view .pagebuilder-column,
.ct-view [data-content-type="column"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* HTML Blocks (Anchor-Links) */
.ct-view [data-content-type="html"] {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

/* Text Blocks */
.ct-view [data-content-type="text"] {
    margin: 0 !important;
    padding: 0 !important;
}


/* ============================================
   LEERE PARAGRAPHEN ELIMINIEREN
   &nbsp; Spacer komplett entfernen
   ============================================ */

.ct-view p:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    height: 0 !important;
}

.ct-view [data-content-type="text"] p {
    margin-top: 0.3em !important;
    margin-bottom: 0.3em !important;
}

/* Bullet-Fake-Paragraphen (· middot) enger zusammen */
.ct-view [data-content-type="text"] p + p {
    margin-top: 0.2em !important;
}


/* ============================================
   TYPOGRAFIE
   ============================================ */

.ct-view h3 {
    margin-top: 1.5em !important;
    margin-bottom: 0.5em !important;
}

.ct-view [data-content-type="row"]:nth-child(3) h3:first-child {
    margin-top: 0.5em !important;
}

.ct-view h4 {
    margin-top: 0.8em !important;
    margin-bottom: 0.3em !important;
}

.ct-view ul {
    margin-top: 0.3em !important;
    margin-bottom: 0.5em !important;
    padding-left: 1.5em !important;
}

.ct-view ul li {
    margin-bottom: 0.15em !important;
}


/* ============================================
   FARBSTRAHLEN LINKS 
   ============================================ */

.ct-view p[style*="line-height: 10px"] {
    margin: 0 0 2px 0 !important;
}


/* ============================================
   PRODUKT SECTION
   ============================================ */

.ct-view [data-content-type="products"] {
    margin-top: 15px !important;
}

.ct-view .headline-uppercase h3 {
    margin-top: 2em !important;
}


/* ============================================
   HEADER ROW (Bild + Titel)
   ============================================ */

.ct-view > .block-content > [data-content-type="row"]:first-child {
    margin-bottom: 10px !important;
}