/* Testimonials Specific Styles */

/* Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 10px;
}

/* Card Style */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Header with Avatar */
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: #f0f4f0;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-subtitle {
    font-style: italic;
    font-size: 0.95rem;
    color: #777;
    margin-top: 5px;
    display: block;
    font-family: var(--font-heading);
}

/* Content Body */
.testimonial-body {
    flex-grow: 1;
}

.testimonial-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    font-weight: 300;
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}