/* ================= TESTIMONIALS ================= */

.testimonials-section {
    padding: 100px 0;
    background: rgb(252, 251, 251);
}

/* header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
}

.testimonials-kicker .line {
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.testimonials-header h2 {
    margin-top: 16px;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-text);
}

.testimonials-header h2 span {
    color: var(--primary);
}

/* grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* card */
.testimonial-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    padding: 40px 28px;
    text-align: center;
    transition: transform .35s ease, border-color .35s ease;
}

/* hover effect */
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

/* avatar */
.testimonial-avatar {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* name */
.testimonial-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--dark-text);
}

/* role */
.testimonial-card .role {
    display: block;
    margin: 6px 0 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
}

/* text */
.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 18px;
}

/* stars */
.stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 2px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-header h2 {
        font-size: 38px;
    }
}
