/* TESTIMONIAL PAGE CSS */
.py-section { padding: 90px 0; }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  box-shadow: 0 12px 40px rgba(26,107,255,.1);
  transform: translateY(-3px);
}
.testi-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-color: transparent;
}
.testi-featured p, .testi-featured .testi-author strong { color: #fff !important; }
.testi-featured .testi-author span { color: rgba(255,255,255,.6) !important; }
.testi-featured .ta-avatar { background: rgba(255,255,255,.15); color: #fff; }

.testi-quote {
  font-size: 2.5rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .5rem;
  opacity: .4;
}
.testi-featured .testi-quote { opacity: .6; }

.testi-stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.testi-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
}
.ta-avatar {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); }
.testi-author span { color: var(--muted); font-size: .78rem; line-height: 1.4; display: block; }

@media (max-width: 768px) { .py-section { padding: 60px 0; } }