
.acf-block.ql-image-text-column {
    position: relative;
    box-shadow: 20px 0px 60px 0px rgba(0, 0, 0, 0.15);
}

.ql-image-text-column.bg-white {
    background: #FFF;
}

.ql-image-text-column.bg-black {
    background: #2C3341;
}

.ql-image-text-column h1,
.ql-image-text-column h2,
.ql-image-text-column h3,
.ql-image-text-column h4,
.ql-image-text-column h5,
.ql-image-text-column h6,
.ql-image-text-column p,
.ql-image-text-column li {
    color: #2C3341;
}

.ql-image-text-column .bg-dark h1,
.ql-image-text-column .bg-dark h2,
.ql-image-text-column .bg-dark h3,
.ql-image-text-column .bg-dark h4,
.ql-image-text-column .bg-dark h5,
.ql-image-text-column .bg-dark h6,
.ql-image-text-column .bg-dark p,
.ql-image-text-column .bg-dark figcaption,
.ql-image-text-column .bg-dark li {
    color: #FFF;
}

/* Block specific CSS */
.ql-image-text-column .columns {
    display: grid;
    grid-template-columns: 1fr;
}

.ql-image-text-column .columns .column-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    grid-row: 2/3;
}

.ql-image-text-column .columns .column-image {
    padding: 24px;
    overflow: hidden;
}

.ql-image-text-column .columns .column-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 1.35/1;
}

@media only screen and (min-width: 960px) {

    .ql-image-text-column .columns {
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: 1.15fr 0.85fr;
    }
    
    .ql-image-text-column .columns .column-text {
        padding: 80px 60px;
        grid-row: unset;
    }

    .ql-image-text-column .columns .column-image img {
        aspect-ratio: 1/1;
    }

    /* Reverse column */
    .ql-image-text-column.column-reverse .columns .column-text {
        grid-row: 1/2;
        grid-column: 2/3;
    }
}

@media only screen and (max-width: 480px) {
    .ql-image-text-column .columns .column-text {
        padding: 24px;
    }
}