/* 1. Section & Container */
.blu-stats-section {
    background-color: #ffffff;
    padding: 16px 16px; 
    width: 100%;
}

.blu-stats-container {
    max-width: 1200px;
    margin-inline-start: auto;
    margin-inline-end: auto;
}

/* 2. Flex Layout */
.blu-stats-flex-wrapper {
    display: flex;
    flex-direction: column; 
    gap: 16px; 
    justify-content: center;
}

/* 3. Stat Card & Content */
.blu-stat-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px; 
    padding: 4px; 
    text-align: start; /* Logical Alignment (Left in EN, Right in AR) */
}

.blu-stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px; 
}

/* 4. Typography */
.blu-stat-prefix {
    font-size: 16px; 
    color: #374151; 
    line-height: 1.4;
    margin: 0 !important; 
}

.blu-stat-number {
    font-size: 30px; 
    font-weight: 500;
    color: #111827; 
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin: 0 !important;
}

.blu-stat-desc {
    font-size: 16px; 
    color: #374151; 
    line-height: 1.4;
    margin: 0 !important;
}

/* --- ARABIC FONT SUPPORT --- */
:lang(ar) .blu-stat-prefix,
:lang(ar) .blu-stat-desc {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 400; /* Often looks better slightly lighter */
}

/* Keep numbers in English font usually, but if you want Arabic font remove this */
:lang(ar) .blu-stat-number {
    font-family: 'Inter', sans-serif; 
    letter-spacing: 0; /* Remove negative tracking for Arabic context */
}

/* 5. Divider Line */
.blu-stats-divider {
    width: 100%; 
    height: 1px; 
    background-color: rgb(61, 64, 69);
    flex-shrink: 0;
}

/* Responsive */
@media (min-width: 640px) {
    .blu-stat-prefix, .blu-stat-desc { font-size: 18px; }
    .blu-stat-number { font-size: 36px; }
}

@media (min-width: 768px) { 
    .blu-stats-section { padding: 24px 64px; }

    .blu-stats-flex-wrapper {
        flex-direction: row; 
        align-items: center; 
        gap: 24px; 
    }

    .blu-stat-card { padding: 24px; }

    .blu-stat-content { gap: 8px; }

    .blu-stat-prefix, .blu-stat-desc { font-size: 20px; }
    .blu-stat-number { font-size: 48px; }

    .blu-stats-divider {
        width: 1px;
        height: 112px; 
    }
}