<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Home Testimonials Section */
.home-testimonials {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.home-testimonials__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Header */
.home-testimonials__header {
  text-align: center;
  max-width: 37.5rem;
  margin: 0 auto;
}

.home-testimonials__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #010101;
}

.home-testimonials__subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Grid */
.home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
}

/* Testimonial Item */
.home-testimonials__item {
  background: #fff;
  border-radius: 5px;
  padding: 2rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.home-testimonials__item:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
}

/* Google Maps Icon - Top Right Corner */
.home-testimonials__google-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 2.25rem;
  z-index: 2;
}

.home-testimonials__google-icon svg {
  width: 100%;
  height: 100%;
}

/* Author Section - Icon + Name */
.home-testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-direction: row-reverse;
}

.home-testimonials__avatar {
  flex-shrink: 0;
}

.home-testimonials__image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f1f3f4;
}

.home-testimonials__author-info {
  flex: 1;
  text-align: left;
}

.home-testimonials__name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #010101;
  margin-bottom: 0.25rem;
  font-style: normal;
}


/* Comment Content */
.home-testimonials__content {
  flex: 1;
}

.home-testimonials__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-style: italic;
  text-align: left;
}

/* Star Rating */
.home-testimonials__rating {
  display: flex;
  gap: 0.125rem;
}

.home-testimonials__rating--inline {
  justify-content: flex-start;
  margin-top: 0.25rem;
}

.home-testimonials__star {
  color: #ddd;
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.home-testimonials__star--filled {
  color: #ffc107;
}

/* RTL Support */
html[dir="rtl"] .home-testimonials__google-icon {
  right: auto;
  left: 1rem;
}

html[dir="rtl"] .home-testimonials__author-info {
  text-align: right;
}

html[dir="rtl"] .home-testimonials__quote {
  text-align: right;
}



/* Responsive Design */
@media (max-width: 64rem) {
  .home-testimonials__grid {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 48rem) {
  .home-testimonials {
    padding: 3rem 0;
  }
  
  .home-testimonials__inner {
    gap: 2rem;
  }
  
  .home-testimonials__title {
    font-size: 2rem;
  }
  
  .home-testimonials__subtitle {
    font-size: 1rem;
  }
  
  .home-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .home-testimonials__item {
    padding: 1.5rem;
  }
  
  .home-testimonials__google-icon {
    top: 0.75rem;
    right: 0.75rem;
    width: 1.25rem;
    height: 1.875rem;
  }
}

@media (max-width: 36rem) {
  .home-testimonials__item {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  
  .home-testimonials__quote {
    font-size: 0.9375rem;
  }
  
  .home-testimonials__image {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .home-testimonials__google-icon {
    width: 1rem;
    height: 1.5rem;
  }
}</pre></body></html>