.image_columns_section {
    width: 100%;

    & .section_inner {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;

        & .top_content {
            width: 100%;
            margin: 0 0 3rem;

            & h2 {
                font-weight: 400;
            }
        }

        & .image_column {
            flex: 1;
            min-width: 0;
            border-radius: 1rem;
            overflow: hidden;
            position: relative;

            @media (max-width: 991px) {
                flex: 1;
                min-width: calc(50% - 1rem);
            }

            @media (max-width: 575px) {
                flex: 1;
                min-width: 100%;
            }

            &:hover .column_image {
                transform: scale(1.05);
            }

            & .image_wrapper {
                position: relative;
                width: 100%;
                aspect-ratio: 4 / 3;
                overflow: hidden;

                & .column_image {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.4s ease;
                }

                & .text_overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    padding: 2rem;
                    text-align: center;
                    color: var(--white);
                    background: rgba(0, 0, 0, 0.4);
                    z-index: 1;

                    & h1, & h2, & h3, & h4, & h5, & h6 {
                        font-size: 2.4rem;
                        font-weight: 400;
                        margin: 0;
                        color: var(--white);

                        @media (max-width: 991px) {
                            font-size: 2rem;
                        }
                    }

                    & p {
                        margin: 1rem 0 0;
                        font-size: 1.6rem;
                        line-height: 1.6;
                        color: var(--white);

                        &:last-child {
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }
    }
}