/* testimonials.css */
.testimonials { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; }
.tcard        { background:var(--bg2); border:1px solid var(--border); border-radius:var(--r2); padding:1.5rem; transition:border-color 0.3s,transform 0.3s; }
.tcard:hover  { border-color:var(--border2); transform:translateY(-4px); }
.tcard-stars  { color:var(--gold); font-size:0.85rem; margin-bottom:1rem; }
.tcard-text   { font-size:0.875rem; color:var(--text2); line-height:1.7; margin-bottom:1.5rem; font-style:italic; }
.tcard-author { display:flex; align-items:center; gap:10px; }
.tcard-avatar { width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.85rem; font-weight:700; color:#030712; }
.tcard-name   { font-size:0.875rem; font-weight:700; }
.tcard-role   { font-size:0.75rem; color:var(--text2); }
