/* Compact testimonials for service conversion boxes.
   Loaded by start-new-business, registered-agent, and expand-existing-business. */

.svc-testimonials-block {
  padding-top: 0.85rem !important;
  padding-bottom: 0.95rem !important;
}

.svc-testimonials-label {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.svc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.svc-tcard {
  background: #f8fafc;
  border: 1px solid #d1e7d3;
  border-radius: 8px;
  padding: 8px 9px 8px;
  text-align: left;
  box-sizing: border-box;
  min-width: 0;
}

a.svc-tcard--link {
  text-decoration: none !important;
  background-image: none !important;
  border-bottom: 0 !important;
  color: inherit;
  display: block;
}

a.svc-tcard--link:hover,
a.svc-tcard--link:focus-visible {
  border-color: #86c98a;
  background: #fff;
  outline: none;
}

.svc-tcard-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  position: relative;
  padding-right: 22px;
}

.svc-tcard-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0063A0;
  color: #fff;
  font-weight: 700;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-tcard-name-block {
  line-height: 1.15;
  min-width: 0;
}

.svc-tcard-name {
  font-weight: 600;
  font-size: 12px;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.svc-tcard-subtitle {
  font-size: 10px;
  color: #64748b;
  margin-top: 1px;
}

.svc-tcard-badge {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.svc-tcard-badge.green-star {
  color: #22c55e;
}

.svc-tcard-stars {
  color: #fbbf24;
  display: flex;
  gap: 1px;
  margin-bottom: 4px;
  line-height: 1;
}

.svc-tcard-stars svg {
  display: block;
  flex-shrink: 0;
}

.svc-tcard-text {
  font-size: 11.5px;
  line-height: 1.4;
  color: #475569;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-tcard-google {
  width: 16px;
  height: 16px;
  display: block;
}

@media (max-width: 700px) {
  .svc-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .svc-tcard-text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
