.resgo-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.resgo-review {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    border-radius: 6px;
    font-size: 0.95rem;
}

.resgo-review .stars {
    font-size:14px;
    color: #f4b400;
    margin: 6px 0;
    text-shadow: 0 0 2px rgba(255, 223, 0, 0.3), 0 0 5px rgba(255, 223, 0, 0.2);
}

.resgo-review .meta {
    font-weight: bold;
    margin-bottom: 5px;
    color: #222;
}

.resgo-review .comment {
    color: #333;
    line-height: 1.4;
}


/* Review Summary */
.review-summary {
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    font-family: system-ui, sans-serif;
    color: #222;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.review-summary .score {
    font-size: 3rem;
    font-weight: bold;
    color: #222;
}

.review-summary .stars {
    font-size: 1.4rem;
    color: #f4b400; /* subtiele goudkleur */
    margin: 5px 0 10px 0;
    letter-spacing: 2px;
}

.review-summary .count {
    font-size: 0.95rem;
    color: #555;
}

.review-summary .rating-breakdown {
    margin-top: 20px;
}

.review-summary .bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.review-summary .bar .label {
    width: 80px;
    text-align: right;
    color: #333;
}

.review-summary .bar .progress {
    flex: 1;
    background: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.review-summary .bar .progress .fill {
    height: 10px;
    background: #f4b400;
    width: 0;
}

.review-summary .bar .amount {
    width: 30px;
    text-align: right;
    color: #333;
}


/* review sparklings */
.review-summary .stars {
    font-size: 14px;
    margin: 10px 0 15px 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.review-summary .stars .star {
    font-size: 30px;
    color: #f4b400;
    display: inline-block;
    text-shadow: 0 0 2px rgba(255, 223, 0, 0.6);
    animation: pulseStar 2s ease-in-out infinite;
}

@keyframes pulseStar {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

.review-summary .stars .star:nth-child(2) {
    animation-delay: 0.1s;
}
.review-summary .stars .star:nth-child(3) {
    animation-delay: 0.2s;
}
.review-summary .stars .star:nth-child(4) {
    animation-delay: 0.3s;
}
.review-summary .stars .star:nth-child(5) {
    animation-delay: 0.4s;
}