main {
    padding: 2rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid;
}

.testimonial img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.client-name {
    font-weight: 600;
}