.dashboard-cards-parent {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.dashboard-card {
    width: 24%;
    height: 140px;
    background-color: #fff;
    border-radius: 4px;
    padding: 15px;
    position: relative;
}

.small-metrics {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

@media screen and (max-width: 900px) {
    .dashboard-cards-parent {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .dashboard-card {
        width: 100%;
        margin-block: 10px;
    }
}