/* Reviews Widget Styling - Uses gire-widget-container for layout */

/* Header Section - Matching Services Widget Structure */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.reviews-text {
    flex: 1;
}

.reviews-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #4a90e2;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.reviews-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.reviews-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.reviews-description p {
    margin: 0 0 15px 0;
}

.reviews-description p:last-child {
    margin-bottom: 0;
}

.view-all-link {
    font-size: 14px;
    font-weight: 600;
    color: #4a90e2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-link::after {
    content: "→";
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    color: #357abd;
}

.view-all-link:hover::after {
    transform: translateX(3px);
}

/* Reviews Content Section */
.reviews-content {
    width: 100%;
    position: relative;
}

.reviews-placeholder {
    padding: 40px 20px;
    text-align: center;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
}

.reviews-placeholder p {
    margin: 0;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .reviews-title {
        font-size: 28px;
    }

    .reviews-subtitle {
        font-size: 12px;
    }

    .view-all-link {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 24px;
    }

    .reviews-description {
        font-size: 14px;
    }

    .reviews-header {
        margin-bottom: 25px;
    }

    .reviews-placeholder {
        padding: 30px 15px;
    }
}

/* Common Review Widget Overrides */
.reviews-content iframe {
    max-width: 100%;
    height: auto;
}

.reviews-content .review-widget {
    width: 100%;
}

/* Google Reviews Widget Common Styles */
.reviews-content .google-reviews,
.reviews-content .google-reviews-widget {
    width: 100%;
}

/* Yelp Reviews Widget Common Styles */
.reviews-content .yelp-reviews,
.reviews-content .yelp-widget {
    width: 100%;
}

/* Trustpilot Reviews Widget Common Styles */
.reviews-content .trustpilot-widget,
.reviews-content .tp-widget {
    width: 100%;
}