
.column-container {
    display: flex;
    gap: 2rem;
    width: 95%;
    padding: 2rem 4rem 6rem;
    box-sizing: border-box;
}

.column-container .column-half-width {
    flex: 1;
    display: flex;
    width: 50%;
    flex-direction: column;
    gap: 1rem;
}

.column-half-width.v-center {
    justify-content: center;
}

.column-container .column-full-width {
    flex: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.column-full-width img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-container img {
    display: block;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.column-container .img-without-borders {
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
    }

    .column {
        width: 100%;
    }
}