.container {
    display: flex;
    gap: 8px;
    /* расстояние между колонками */
    width: 100%;
}

.column {
    flex: 1;
    /* каждая колонка занимает равную ширину */
    padding: 16px;
    /* внутренние отступы */
    background: #f0f0f0;
    height: 222px;
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: rgba(29, 29, 31, 1);
    cursor: pointer;
    transition: 0.15s ease-out;
}

.column:hover {
    color: #1D1D1F;
    transform: scale(1.02);
    box-shadow: none;
    background: #DCDCDE;
}

.column:hover svg .blacksvg {
    fill: var(--black);
    stroke: var(--black);
}

.column:hover svg .whitesvg {
    stroke: var(--white);
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    /* левый и правый SVG */
}

.top-text {
    font-weight: 450;
    margin-bottom: 10px;
}

.left-svg {
    width: 18px;
    height: 18px;
    align-self: end;
    transition: 0.15s ease-out;
}

.left-svg svg path {
    transition: 0.15s ease-out;
}

.right-svg {
    height: 64px;
}

.right-svg svg {
    width: 100%;
    /* масштабируем по ширине родителя */
    height: auto;
    /* сохраняем пропорции */
    max-width: 64px;
    /* или любой другой максимум */
    max-height: 64px;
}

@media screen and (max-width: 820px) {
    .container {
        flex-direction: column;
    }
}