.whoswho-member {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.whoswho-member:last-child {
  border-bottom: none;
}

.whoswho-member img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #e0e0e0;
}

.whoswho-info a.name {
  font-size: 18px;
  font-weight: bold;
  color: #004b8d;
  text-decoration: none;
  display: block;
}

.whoswho-info a.name:hover {
  text-decoration: underline;
}

.whoswho-info .role {
  font-weight: 600;
  margin: 2px 0;
}

.whoswho-info .email a {
  font-size: 14px;
}

@media (max-width: 768px) {
  .whoswho-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}