/* Force full width at all levels */
.fi-wi {
    width: 100% !important;
    max-width: 100% !important;
}

.stats-grid-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* GRID - Mobile: 1 column, Tablet: 2 columns, Desktop: 4 columns */
.stats-grid {
    display: grid;
    gap: 16px;
    width: 100%;
    /* Mobile: 1 column */
    grid-template-columns: repeat(1, 1fr);
}

/* Tablet: 2 columns */
@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 4 columns */
@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* CARD */
.stat-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    
    /* Remove span behavior - each card takes 1 column */
    grid-column: span 1;
}

/* ICON */
.stat-icon {
    width: 44px;
    height: 44px;

    border-radius: 50%;
    background: #f1f5f9;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0077ff;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

/* TEXT */
.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-title {
    font-size: 13px;
    color: #64748b;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.stat-description {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}