/* ===== TEXT IMAGE BLOCK (TextImageBlock) ===== */

.richtext-content {
    overflow: hidden;
    margin: 2rem 0;
    display: block;
    line-height: 1.6;
}

.richtext-content p {
    text-align: justify;
}

/* Базове стилювання зображень */
.richtext-content img.richtext-image {
    display: block;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

/* Обтікання зліва */
.richtext-content img.richtext-image.left {
    float: left;
    margin: 0 1.5rem 1rem 0;
    clear: both;
}

/* Обтікання справа */
.richtext-content img.richtext-image.right {
    float: right;
    margin: 0 0 1rem 1.5rem;
    clear: both;
}

/* Центрування */
.richtext-content img.richtext-image.center {
    display: block;
    margin: 1.5rem auto;
    float: none;
}

/* Повна ширина */
.richtext-content img.richtext-image.full-width {
    display: block;
    margin: 1.5rem auto;
    width: 100% !important;
    height: auto;
    float: none;
}

/* Зображення без тексту в абзаці (галереї) */
.richtext-content p:only-child > img,
.richtext-content p > img:only-child {
    display: block;
    float: none;
    margin: 1.5rem auto;
}

/* Адаптивність */
@media (max-width: 768px) {
    .richtext-content img.richtext-image.left,
    .richtext-content img.richtext-image.right {
        float: none !important;
        display: block;
        margin: 0 auto 1.5rem auto !important;
    }
}
