.dashboard-stats {
    margin-top: 6px;
}

.dashboard-stats .card {
    animation: statRise 0.5s var(--ease) both;
}

.dashboard-stats .card:nth-child(2) {
    animation-delay: 0.06s;
}

.dashboard-stats .card:nth-child(3) {
    animation-delay: 0.12s;
}

.dashboard-stats .card:nth-child(4) {
    animation-delay: 0.18s;
}

.card-stat .card-body {
    min-height: 126px;
    display: grid;
    place-items: center;
    text-align: center;
}

.card-stat__value {
    font-family: var(--fc);
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1;
}

.card-stat__label {
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
}

.dashboard-panels .feature-card {
    min-height: 420px;
}

@keyframes statRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
