/* ================================
   TWO COLUMNS – główny kontener
================================ */
.wcbd-two-columns {
    display: flex;
    gap: 36px;
    margin: 40px 0;
    align-items: flex-start;
    width: 100%;
}

/* ================================
   40% LEFT → 60% RIGHT
================================ */
.wcbd-layout-left-right .wcbd-two-columns-left {
    flex: 0 0 40%;
}
.wcbd-layout-left-right .wcbd-two-columns-right {
    flex: 0 0 60%;
}

/* ================================
   60% LEFT → 40% RIGHT
================================ */
.wcbd-layout-right-left {
    flex-direction: row-reverse;
}
.wcbd-layout-right-left .wcbd-two-columns-left {
    flex: 0 0 60%;
}
.wcbd-layout-right-left .wcbd-two-columns-right {
    flex: 0 0 40%;
}

/* ================================
   Kolumny wewnętrzne
================================ */
.wcbd-two-columns-left,
.wcbd-two-columns-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ================================
   ADMIN PREVIEW (tylko w edycji)
================================ */
.wcbd-two-columns-preview {
    display: flex;
    align-items: flex-start !important;
    gap: 20px;
}
.wcbd-two-col-left,
.wcbd-two-col-right {
    display: block;
    height: auto !important;
    min-height: unset !important;
}

/* ================================
   Typografia & UI
================================ */
.wcbd-block {
    margin-bottom: 40px;
}

.wcbd-heading {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 16px;
    color: #111;
}

.wcbd-text {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 14px;
    padding: 0;
}

/* ================================
   Listy UL/LI – FIX odstępów
================================ */
.wcbd-list,
.wcbd-block ul {
    padding-left: 26px !important;
    margin: 18px 0 24px !important;
    list-style: disc !important;
}

.wcbd-list li,
.wcbd-block ul li {
    margin: 8px 0;
    line-height: 1.65;
    font-size: 16px;
    color: #333;
}

/* ================================
   Ikona + tekst
================================ */
.wcbd-icon-text {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 20px 0;
}

.wcbd-icon-holder img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ================================
   Box
================================ */
.wcbd-box {
    padding: 22px 28px;
    border-radius: 18px;
    background: #fafafa;
    border: 1px solid #e7e7e7;
}

.wcbd-box-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.wcbd-box-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* ================================
   Obrazek
================================ */
.wcbd-image {
    max-width: 100%;
    border-radius: 18px;
    margin: 20px 0;
    display: block;
}

/* ================================
   Responsive – TABLET < 900px
================================ */
@media (max-width: 900px) {
    .wcbd-two-columns {
        flex-direction: column;
        gap: 28px;
    }
    .wcbd-two-columns-left,
    .wcbd-two-columns-right {
        flex: 1 !important;
    }
}

/* ================================
   Responsive – MOBILE < 600px
================================ */
@media (max-width: 600px) {

    .wcbd-heading {
        font-size: 25px;
    }

    .wcbd-text {
        font-size: 16px;
    }

    .wcbd-box {
        padding: 18px 22px;
    }

    .wcbd-list,
    .wcbd-block ul {
        padding-left: 22px !important;
    }
}
