/* Stats Bar — 7e5083f0 */

.sb-7e5083f0-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #FDF2F2;
    padding: 16px 30px;
    border-radius: 12px;
    gap: 30px;
    transition: all 0.3s ease;
}

.sb-7e5083f0-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.sb-7e5083f0-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: #F5DFE0;
    border-radius: 10px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.sb-7e5083f0-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #C4626A;
    line-height: 1;
    transition: color 0.3s ease;
}

.sb-7e5083f0-icon svg {
    width: 22px;
    height: 22px;
    fill: #C4626A;
    transition: fill 0.3s ease;
}

.sb-7e5083f0-text {
    display: flex;
    flex-direction: column;
}

.sb-7e5083f0-title {
    font-size: 15px;
    font-weight: 700;
    color: #C4626A;
    line-height: 1.3;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.sb-7e5083f0-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #C4626A;
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* Divider — uses CSS custom properties for orientation switching */
.sb-7e5083f0-divider {
    --sb-divider-thickness: 1px;
    --sb-divider-length: 40px;
    display: block;
    background-color: #E0C4C6;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

/* Vertical divider (default) */
.sb-7e5083f0-divider {
    width: var(--sb-divider-thickness);
    height: var(--sb-divider-length);
}

/* Horizontal divider via prefix class */
[class*="sb-7e5083f0-divider-orient-horizontal"] .sb-7e5083f0-divider {
    width: var(--sb-divider-length);
    height: var(--sb-divider-thickness);
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .sb-7e5083f0-wrapper {
        padding: 14px 20px;
        gap: 20px;
    }

    .sb-7e5083f0-title {
        font-size: 14px;
    }

    .sb-7e5083f0-subtitle {
        font-size: 12px;
    }
}

/* Responsive — Mobile */
@media (max-width: 767px) {
    .sb-7e5083f0-wrapper {
        padding: 16px 20px;
        gap: 16px;
    }

    .sb-7e5083f0-item {
        width: 100%;
        justify-content: center;
    }

    .sb-7e5083f0-title {
        font-size: 14px;
    }

    .sb-7e5083f0-subtitle {
        font-size: 12px;
    }
}
