/* Card Wrapper */
.rb-aeb-wrapper {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 24px 24px 20px;
    max-width: 480px;
    background: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.4;
}

/* Container */
.rb-aeb-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Headline */
.rb-aeb-headline {
    font-size: 1.375rem; /* ~22px */
    font-weight: 600;
    color: #000;
    margin: 0 0 4px 0;
}

/* Zeile */
.rb-aeb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Label links */
.rb-aeb-label {
    font-size: 1.125rem; /* ~18px */
    font-weight: 500;
    color: #000;
}

/* Sterne rechts */
.rb-aeb-stars {
    display: flex;
    gap: 8px;
}

/* Stern Wrapper */
.rb-aeb-star {
    width: 20px;
    height: 20px;
    display: inline-flex;
}

/* SVG Stern default = grau */
.rb-aeb-star-icon {
    width: 100%;
    height: 100%;
    fill: #d1d5db; /* grau */
}

/* Gefüllte Sterne gelb */
.rb-aeb-star.filled .rb-aeb-star-icon {
    fill: #f5c518;
}

/* Mobile tweak */
@media (max-width: 400px) {
    .rb-aeb-label {
        font-size: 1rem;
    }

    .rb-aeb-headline {
        font-size: 1.25rem;
    }
}
