/* Layout */
.stats-grid-wrapper-56a9ab59 {
    width: 100%;
}

.stats-grid-56a9ab59 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* Card */
.stats-grid-card-56a9ab59 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.stats-grid-card-56a9ab59:hover {
    /* Transitions explicitly driven by settings if mapped, else falls back to smooth transform */
}

/* Ensure equal heights by allowing the wrapper to grow */
.stats-grid-card-56a9ab59 {
    height: 100%;
}

/* Typography defaults */
.stats-number-56a9ab59 {
    font-family: 'Canela', Georgia, serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stats-label-56a9ab59 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* Enforce 2 columns across all devices (Desktop, Tablet, Mobile) */
@media (max-width: 1024px) {
    .stats-grid-56a9ab59 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .stats-grid-56a9ab59 {
        grid-template-columns: repeat(2, 1fr);
    }
}
