/* ==============================================
   HERO STATS - INLINE ROW WITH DIVIDERS
   ============================================== */

/* Hero Stats Container - Inline Row */
.hero-stats {
    display: flex;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid #E2DDD6;
    padding-top: 28px;
    margin-top: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Individual Stat Item */
.hero-stat-item {
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid #E2DDD6;
    flex: 1;
}

/* Remove border and padding from last item */
.hero-stat-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

/* Stat Number - Monospace Font */
.hero-stat-item .stat-number {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-navy);
    margin-bottom: 4px;
}

/* Stat Number Color Variants */
.stat-number-terracotta {
    color: var(--color-terracotta) !important;
}

.stat-number-teal {
    color: var(--color-teal) !important;
}

/* Stat Primary Label */
.hero-stat-item .stat-label {
    font-size: 11px;
    font-weight: 500;
    color: #8A9BA5;
    margin-top: 4px;
    line-height: 1.3;
}

/* Stat Secondary Label (Sublabel) */
.hero-stat-item .stat-sublabel {
    font-size: 10px;
    color: #8A9BA5;
    margin-top: 2px;
    line-height: 1.3;
}

/* Mobile: 2x2 Grid */
@media (max-width: 600px) {
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-top: 1px solid #E2DDD6;
        padding-top: 16px;
    }
    
    .hero-stat-item {
        padding: 16px 0;
        margin-right: 0;
        border-right: none;
        border-bottom: 1px solid #E2DDD6;
    }
    
    /* Top row items (first 2) keep bottom border */
    .hero-stat-item:nth-child(1),
    .hero-stat-item:nth-child(2) {
        border-bottom: 1px solid #E2DDD6;
    }
    
    /* Bottom row items (last 2) no bottom border */
    .hero-stat-item:nth-child(3),
    .hero-stat-item:nth-child(4) {
        border-bottom: none;
    }
    
    /* Add right border to left column items */
    .hero-stat-item:nth-child(odd) {
        border-right: 1px solid #E2DDD6;
        padding-right: 16px;
    }
    
    /* Right column items get left padding */
    .hero-stat-item:nth-child(even) {
        padding-left: 16px;
    }
}
