/**
 * Fix Stats Section Icon Alignment
 *
 * PROBLEM: Counter cards have different text heights causing icons to be misaligned
 * SOLUTION: Standardize card-text height so all icons appear at the same vertical position
 */

/* Standardize text container height to align icons */
.ube-counter .card-text {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Ensure card body has consistent structure */
.ube-counter .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    /* On mobile, text might wrap differently, adjust min-height */
    .ube-counter .card-text {
        min-height: 48px;
    }
}

@media screen and (max-width: 480px) {
    /* On very small screens, allow more flexibility */
    .ube-counter .card-text {
        min-height: 40px;
    }
}
