/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
    padding: 90px 0;
    background: #f8fafc;
}

/* Section title consistency */
.testimonials .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    color: #0f172a;
}

/* =========================
   GRID
========================= */

.testimonials .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================
   CARD
========================= */

.testimonial-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);

    display: flex;
    flex-direction: column;
    gap: 14px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

/* =========================
   TEXT
========================= */

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
}

/* Name */
.testimonial-card strong {
    color: #0f172a;
    font-weight: 700;
    margin-top: 8px;
}

/* Role / subtitle */
.testimonial-card span {
    font-size: 0.9rem;
    color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 960px) {
    .testimonials .grid-3 {
        grid-template-columns: 1fr;
    }
}