/* Stats Section Component Styles */

.stats {
    background-color: #F6F6F6;
    padding: 64px 0;
}

.stats__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.stats__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.stats__icon-wrapper {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats__items {
    display: flex;
    align-items: center;
    gap: 48px;
}

.stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats__number {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.stats__label {
    font-size: 14px;
    color: #6B7280;
    margin-top: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stats__divider {
    width: 1px;
    height: 48px;
    background-color: #111827;
}

/* Responsive Design */

/* Large (lg) - max-width: 1350px */
@media (max-width: 1350px) {
    .stats {
        padding: 60px 0;
    }

    .stats__container {
        padding: 0 32px;
    }

    .stats__icon-wrapper {
        width: 88px;
        height: 88px;
    }

    .stats__icon-wrapper svg {
        width: 88px;
        height: 88px;
    }

    .stats__items {
        gap: 44px;
    }

    .stats__number {
        font-size: 28px;
    }

    .stats__label {
        font-size: 13.5px;
    }

    .stats__divider {
        height: 44px;
    }
}

/* Tablet (md) - max-width: 1024px */
@media (max-width: 1024px) {
    .stats {
        padding: 56px 0;
    }

    .stats__container {
        padding: 0 24px;
    }

    .stats__icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .stats__icon-wrapper svg {
        width: 80px;
        height: 80px;
    }

    .stats__items {
        gap: 40px;
    }

    .stats__number {
        font-size: 26px;
    }

    .stats__label {
        font-size: 13px;
    }

    .stats__divider {
        height: 40px;
    }
}

/* Small Tablet (sm) - max-width: 768px */
@media (max-width: 768px) {
    .stats {
        padding: 48px 0;
    }

    .stats__container {
        padding: 0 20px;
    }

    .stats__icon-wrapper {
        width: 72px;
        height: 72px;
    }

    .stats__icon-wrapper svg {
        width: 72px;
        height: 72px;
    }

    .stats__items {
        gap: 32px;
    }

    .stats__number {
        font-size: 24px;
    }

    .stats__label {
        font-size: 12px;
    }

    .stats__divider {
        height: 36px;
    }
}

/* Mobile (xs) - max-width: 400px */
@media (max-width: 400px) {
    .stats {
        padding: 32px 0;
    }

    .stats__container {
        padding: 0 12px;
    }

    .stats__wrapper {
        gap: 10px;
    }

    .stats__icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .stats__icon-wrapper svg {
        width: 56px;
        height: 56px;
    }

    .stats__items {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats__item {
        min-width: 70px;
    }

    .stats__number {
        font-size: 18px;
    }

    .stats__label {
        font-size: 10px;
    }

    .stats__divider {
        display: none;
    }
}