.sab-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px; /* Adjust based on column margin */
    margin-right: -10px; /* Adjust based on column margin */
    align-items: stretch; /* Make columns stretch to the same height */
}

.sab-column {
    display: flex;
    flex-direction: column; /* Ensure that sab-column-bottom takes up the remaining space */
    box-sizing: border-box; /* Ensure padding and borders are included in the width */
    margin: 0 10px; /* Horizontal spacing between columns */
    margin-bottom: 20px; /* Spacing below each column */
}

/* Adjust width and spacing for different screen sizes */
@media screen and (min-width: 501px) and (max-width: 1100px) {
    .sab-column {
        width: calc(50% - 20px); /* 2 columns per row with spacing */
    }
}

@media screen and (min-width: 1101px) and (max-width: 1400px) {
    .sab-column {
        width: calc(33.33% - 20px); /* 3 columns per row with spacing */
    }
}

@media screen and (min-width: 1401px) {
    .sab-column {
        width: calc(25% - 20px); /* 4 columns per row with spacing */
    }
}

@media screen and (max-width: 500px) {
    .sab-column {
        width: calc(100% - 20px); /* 1 column per row with spacing */
    }
}

.sab-column-bottom {
    background-color: #2e2d62;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1; /* Ensure sab-column-bottom takes up remaining space in the column */
}

.sab-column-bottom-text {
    flex-grow: 1; /* Allow text to grow and fill space */
}

.sab-column-bottom-text-intro p {
    font-family: 'Roboto Regular';
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

/* Ensure uniform height for columns, regardless of content */
.sab-column-bottom-text-name, .sab-column-bottom-text-intro {
    display: block;
}

/* Adjust padding for different screen sizes */
@media screen and (max-width: 1400px) {
    .sab-row {
        padding-left: 24px;
        padding-right: 24px;
    }
}