.address-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.clinic {
    flex: 1 1 calc(25% - 10px); /* This will ensure each block takes up 25% of the width minus 10px for potential margins/gaps */
    box-sizing: border-box;
    margin: 5px; /* Adjust as desired */
}

.clinic-address-flex {
    display: flex;
    justify-content: space-between;
}

    .clinic-address-flex address {
        flex: 1;
    }

    .clinic-address-flex div {
        flex: 1;
        padding-left: 20px;
    }