/**
 * Reviews & Social Testimonials - Summary Widget Styles
 * Version: 1.0.4
 */

/*
   Note: Many styles related to colors and borders are now handled
   via inline styles in adsp-shortcode-summary.php for dynamic control.
   This CSS file retains structural and animation-related styles.
*/

.adsp-summary-wrapper {
    max-width: 450px;
    margin: 20px auto;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    /* Transition for border-color and box-shadow is now dynamic */
}

/* Hover styles for wrapper are now dynamic via inline style in PHP */
.adsp-summary-wrapper:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.adsp-summary-average-rating {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    /* Color handled dynamically */
}

.adsp-summary-stars {
    font-size: 24px;
    margin-bottom: 10px;
    /* Color handled dynamically */
}
.adsp-summary-stars .dashicons-star-empty {
    /* Color handled dynamically */
}
.adsp-summary-stars .adsp-star-half:before {
    content: "\f155"; /* dashicon for half star */
    /* Color handled dynamically */
}

.adsp-summary-reviews-count {
    font-size: 16px;
    margin-bottom: 15px;
    /* Color handled dynamically */
}
.adsp-summary-reviews-count span {
    font-weight: 600;
}

.adsp-summary-one-liner {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 20px;
    /* Color handled dynamically */
}

.adsp-summary-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0; /* Static separator line */
}

.adsp-summary-logos .adsp-logo-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-left: -15px;
    overflow: hidden;
    background-color: #eee; /* Default placeholder background */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Indicate interactivity */
}
.adsp-summary-logos .adsp-logo-item:first-child {
    margin-left: 0;
}

.adsp-summary-logos .adsp-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Remove extra space below image */
}

/*
  Shine animation keyframes are now in adsp-shortcode-summary.php
  to keep all dynamic/PHP-generated CSS together for clarity.
*/
