/* ================================================================
   CT Content Block — Frontend Styles
   ================================================================ */

.ct-cb-block {
    box-sizing: border-box;
}

.ct-cb-block *,
.ct-cb-block *::before,
.ct-cb-block *::after {
    box-sizing: inherit;
}

/* ── Text ─────────────────────────────────────────────────────── */
.ct-cb-text {
    /* font-size / color / line-height / text-transform
       set via inline style from shortcode */
}

.ct-cb-text p:last-child {
    margin-bottom: 0;
}

/* ── Image ────────────────────────────────────────────────────── */
.ct-cb-image {
    display: block;
    line-height: 0;
}

.ct-cb-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ── Image + Text flex wrapper ────────────────────────────────── */
.ct-cb-flex-wrap {
    /* direction / align-items / gap set via inline style */
    width: 100%;
}

.ct-cb-flex-wrap .ct-cb-image {
    flex-shrink: 0;
}

.ct-cb-flex-wrap .ct-cb-text {
    flex: 1 1 auto;
    min-width: 0;
}
