/* DASC MOB DESIGN — page styles: testimonials
   Shared components (lightbox, filter buttons, page-hero light theme,
   form messages) live in assets/css/main.css. */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tcard {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color .2s;
}
.tcard:hover { border-color: rgba(200,169,110,0.3); }
.tcard-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.tcard-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
}
.tcard-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.tcard-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.tcard-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200,169,110,0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}
.tcard-name { font-weight: 600; font-size: 0.95rem; }
.tcard-role { font-size: 0.8rem; color: var(--text-muted); }
.tcard-quote {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.25;
    margin-bottom: -8px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }
[data-theme="light"] .tcard { background: #fff; }
