/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 /* Minimalist Google Reviews Styling */
 .google-reviews-wrapper {
     margin: 30px 0;
     padding: 20px;
     background: #fff;
     border: 1px solid #f0f0f0;
     border-radius: 8px;
 }

 .google-reviews-header h3 {
     margin: 0;
     font-size: 1.4em;
     color: #333;
 }

 .review-item:last-child {
     border-bottom: none !important;
     margin-bottom: 0 !important;
 }

 .review-text {
     word-wrap: break-word;
 }

 /* Responsive check: Stack header on small screens */
 @media (max-width: 600px) {
     .google-reviews-header {
         flex-direction: column;
         gap: 10px;
     }
 }
