.humbee-review-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start; /* Oder center */
}

.humbee-review-badge {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 15px;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 200px;
}

.humbee-review-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hr-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 12px;
}

.hr-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hr-name {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hr-value {
    font-size: 12px;
    color: #333;
    font-weight: bold;
    margin-top: 2px;
}

/* Dynamische Sterne mit CSS */
.hr-stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 14px;
    font-family: Times; /* Wichtig für Standard Unicode Sterne */
    line-height: 1;
    margin: 3px 0;
}

.hr-stars::before {
    content: '★★★★★';
    background: linear-gradient(90deg, #fbbf24 var(--percent), #e2e8f0 var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}