/* BOREC HOMES: lightweight testimonials block (static export friendly) */
.borec-testimonials {
  background: #111;
  color: #fff;
  padding: clamp(40px, 6vw, 72px) 0;
}

.borec-testimonials .borec-testimonials__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.borec-testimonials .borec-testimonials__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 10px 0;
}

.borec-testimonials .borec-testimonials__title {
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.15;
  margin: 0 0 12px 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
}

.borec-testimonials .borec-testimonials__lead {
  max-width: 72ch;
  margin: 0 0 26px 0;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.92;
}

.borec-testimonials .borec-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.borec-testimonials .borec-testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 18px 18px 16px;
}

.borec-testimonials .borec-testimonial__quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.borec-testimonials .borec-testimonial__quote:before {
  content: "“";
  opacity: 0.7;
}
.borec-testimonials .borec-testimonial__quote:after {
  content: "”";
  opacity: 0.7;
}

.borec-testimonials .borec-testimonial__meta {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  opacity: 0.9;
}

.borec-testimonials .borec-testimonial__name {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.borec-testimonials .borec-testimonial__type {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 980px) {
  .borec-testimonials .borec-testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .borec-testimonials .borec-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

