.members-grid-container-77f401d2 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .members-grid-container-77f401d2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .members-grid-container-77f401d2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.member-card-77f401d2 {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.member-card-77f401d2:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.member-image-wrap-77f401d2 {
    flex-shrink: 0;
    margin-right: 20px;
}

.member-image-77f401d2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f3f4f6;
}

.member-content-77f401d2 {
    flex-grow: 1;
}

.member-role-77f401d2 {
    font-size: 12px;
    color: #2b6a55; /* Greenish */
    margin-bottom: 4px;
    line-height: 1.2;
}

.member-name-77f401d2 {
    font-size: 16px;
    color: #1a2a40; /* Dark blue */
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.member-separator-77f401d2 {
    width: 20px;
    height: 2px;
    background-color: #d4af37; /* Gold */
    border: none;
    margin: 0;
}