/* =============================================
   NIXBIT — TESTIMONIALS
   ============================================= */

.testimonials {
  padding: var(--section-pad);
  background: var(--bg-1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(255,255,255,0.14);
  background: var(--bg-3);
}

.testimonial-quote {
  color: var(--accent);
}

.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-accent);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 2px;
}

/* ── LIGHT MODE ── */
html.light .testimonial-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
html.light .testimonial-card:hover {
  background: #f8f8f8;
  border-color: rgba(0,0,0,0.14);
}
