/* Sezione recensioni clienti */
.reviews-section {
    margin: 60px 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.content .reviews-section {
    margin: 60px 0;
    padding: 0 20px;
}

.reviews-section-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.reviews-widget-embed {
    margin-bottom: 24px;
    width: 100%;
    overflow: hidden;
}

.reviews-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.reviews-section-header h2 {
    font-size: 28px;
    color: var(--primary, #0057A0);
    margin-bottom: 8px;
}

.reviews-section-subtitle {
    color: #666;
    font-size: 16px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.review-card {
    background: #f7f9fb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reviews-stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-card blockquote {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    font-style: normal;
    margin: 0;
}

.review-card cite {
    font-size: 14px;
    font-weight: 600;
    color: #0057A0;
    font-style: normal;
}

.reviews-section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.reviews-btn:hover {
    opacity: 0.88;
}

.reviews-btn-google {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.reviews-btn-trustpilot {
    background: #00b67a;
    color: #fff;
}

@media (max-width: 640px) {
    .reviews-section,
    .content .reviews-section {
        padding: 0 12px;
    }

    .reviews-section-inner {
        padding: 28px 20px;
    }

    .reviews-section-header h2 {
        font-size: 22px;
    }

    .reviews-section-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .reviews-btn {
        justify-content: center;
    }
}
