.stb-wrapper {
    width: 100%;
}

.stb-card {
    width: 100%;
}

.stb-has-card .stb-card {
    background-color: var(--bg);
    border: 1px solid #666;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.stb-tag-title {
    margin: 0 0 16px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-on-bg);
}

.stb-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stb-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #d1d5db;
    border-radius: 100px;
    background-color: transparent;
    color: var(--text-on-bg);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.stb-divider {
    border: none;
    border-top: 1px solid #e8eaf0;
    margin: 24px 0;
}

.stb-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stb-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stb-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stb-bar-label {
    font-size: 14px;
    color: var(--text-on-bg);
    line-height: 1.4;
}

.stb-bar-value {
    font-size: 14px;
    font-weight: 700;
    color: #4361ee;
    line-height: 1.4;
}

.stb-bar-track {
    width: 100%;
    height: 6px;
    background-color: #e8eaf0;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.stb-bar-fill {
    height: 6px;
    background-color: #4361ee;
    border-radius: 100px;
    width: 0%;
    transition: width 1s ease;
}

.elementor-editor-active .stb-bar-fill {
    transition: none !important;
}

@media (max-width: 767px) {
    .stb-has-card .stb-card {
        padding: 24px 20px;
    }

    .stb-tag {
        font-size: 13px;
        padding: 5px 12px;
    }

    .stb-bar-label,
    .stb-bar-value {
        font-size: 13px;
    }
}