.CONTENT_IMAGE {
    .CONTENT_IMAGE__CONTENT {
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--ita-colors-text-base-primary);
            font-family: var(--ita-fontFamilies-3);
        }
        strong,
        a {
            font-family: var(--ita-fontFamilies-2);
        }
        & > *:first-child {
            margin-top: 0;
        }
        & > *:last-child {
            margin-bottom: 0;
        }
    }
    .CONTENT_IMAGE__IMG_PLACEHOLDER {
        transition: background-color 1s;
        &:has(.CONTENT_IMAGE__IMG_LOADED) {
            background-color: transparent;
        }
        &:has(.CONTENT_IMAGE__IMG_ERROR) {
            background-color: var(--ita-colors-background-base-tertiary);
            &::after {
                content: "\e91b";
                font-family: icomoon;
                font-size: var(--ita-fontSizes-9);
                opacity: 0.5;
            }
        }
        img {
            opacity: 0;
            transition: opacity 1s;
            transition-timing-function: linear;
            &.CONTENT_IMAGE__IMG_LOADED {
                opacity: 1;
            }
        }
    }
}