﻿.testimonials {
    padding: 20px;
    background-color: #fff;
}

.section-title {
    color: #337ab7;
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 30px;
}

.members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.member-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .member-card img {
        height: 140px;
        width: 110px;
        object-fit: cover;
        border: 2px solid #ccc;
        border-radius: 4px;
        margin-bottom: 10px;
    }

.member-info {
    font-size: 0.95em;
    line-height: 1.5em;
}

@media (max-width: 768px) {
    .member-card {
        width: 90%;
    }

        .member-card img {
            height: 120px;
            width: 100px;
        }
}