.show-more-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0 16px;
    box-sizing: border-box;
}

.show-more-widget__count {
    font-size: 0.875rem;
    color: #666;
    line-height:1.0;
}

.show-more-widget__progress-wrap {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.show-more-widget__progress-bar {
    height: 100%;
    background-color: #f77147;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.show-more-widget__btn {
    color: #f77147;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px 8px;
}

    .show-more-widget__btn:hover {
        color: #d95a2e;
    }
