/* Hero Stats Widget */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--brand-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
    }
}
