﻿/* Section */
.mhg-stats-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Each stat item */
.mhg-stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

/* ICON BOX */
.mhg-stat-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 28, 36, 0.10);
    color: #EC1C24;
    transition: all 0.3s ease;
    border-radius: 0; /* change to 4px if Figma has rounded */
}

/* Hover effect */
.mhg-stat-item:hover .mhg-stat-icon-box {
    background: #EC1C24;
    color: #ffffff;
    transform: scale(1.1);
}

/* ICON */
.mhg-stat-icon {
    font-size: 32px;
    line-height: 1;
    display: inline-block;
}

/* NUMBER */
.mhg-stat-number {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

/* DIVIDER */
.mhg-stat-divider {
    width: 66%;
    max-width: 170px;
    margin: 0 auto 16px;
    border-top: 1px solid #f1f1f1;
}

/* LABEL */
.mhg-stat-label {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    line-height: 1.5;
}

/* RESPONSIVE — tablet & up */
@media (min-width: 768px) {
    .mhg-stat-number {
        font-size: 3.25rem;
    }
}

/* MOBILE SPACING FIX (missing in yours) */
@media (max-width: 575.98px) {
    .mhg-stats-section {
        padding: 40px 0;
    }

    .mhg-stat-item {
        margin-bottom: 10px;
    }
}
