.boxes {
    flex-direction: row;
    .boxes__box {
          flex: 1 0 40%;
    }
}

.table {
    flex-direction: row;
    gap: 1rem;
    .column {
        flex: 0 0 50%;
    }
    .column--left {
        text-align: left;
    }
    .column--right {
        text-align: right;
    }
}