.crw-reviews {
    display: grid;
    gap: 1.5rem;
}

.crw-layout-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.crw-layout-list {
    grid-template-columns: 1fr;
}

.crw-review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.crw-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.crw-reviewer-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.crw-rating .crw-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 1rem;
    line-height: 1;
}

.crw-star-filled {
    /* Accent colour – adjust per site via extra CSS if needed */
    color: #fbbf24;
}

.crw-star-empty {
    color: #e5e7eb;
}

.crw-review-body {
    font-size: 0.9rem;
    color: #374151;
}

.crw-review-body p {
    margin: 0 0 0.4em;
}

.crw-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #6b7280;
}

.crw-review-source a {
    text-decoration: none;
    font-weight: 500;
}

.crw-review-source a:hover {
    text-decoration: underline;
}

.crw-review-date {
    white-space: nowrap;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .crw-review-card {
        padding: 14px;
    }
}
