.ifag-stats-banner {
    position: relative;
    background: #ce2139; /* Brand Red */
    padding: 60px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.ifag-stats-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
    z-index: 1;
}

/* Divider lines */
.ifag-stats-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
}

.ifag-stats-value {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.ifag-stats-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.95;
}

.ifag-stats-sublabel {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ifag-stats-value {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ifag-stats-banner {
        flex-direction: column;
        padding: 60px 20px;
        gap: 50px;
    }
    .ifag-stats-item:not(:last-child)::after {
        display: none;
    }
}
