/* Testimonials Block Styles */

.block-preview-notice {
    padding: 20px;
    background: #f0f4f8;
    border-left: 4px solid #007cba;
    margin: 10px 0;
    border-radius: 4px;
}

.block-preview-notice .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #007cba;
    vertical-align: middle;
    margin-right: 8px;
}

.testimonials-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonials-section.is-preview {
    background: #f5f5f5;
    padding: 20px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-weight: 600;
    color: #1a1a1a;
}

.testimonial-card__role {
    font-size: 0.875rem;
    color: #6c757d;
}

.testimonial-card__stars {
    margin-bottom: 12px;
}

.star {
    font-size: 1.25rem;
}

.star--filled {
    color: #ffc107;
}

.star--empty {
    color: #dee2e6;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #495057;
}
