.team-card {
  display: flex;
  align-items: flex-start;
  max-width: 100%;
  padding: 16px;
  border-radius: 12px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .team-card {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }
}

.team-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.team-details {
  flex: 1;
}
.team-details p {
  font-size: 20px;
  color: #2c3e50;
  margin: 0;
  padding-bottom: 4px;
}
@media (max-width: 768px) {
  .team-details p {
    text-align: center;
  }
}
.team-details p strong {
  font-weight: 600;
  font-size: 20px;
  color: #2c3e50;
  margin: 0;
}

.team-button {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background-color: rgb(35, 61, 97);
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
  text-decoration: none;
  width: 100%;
}
.team-button span {
  color: #ffffff;
}
.team-button p {
  color: #ffffff;
}

.team-button:hover {
  background-color: #34495e;
}

.team-button-icon {
  margin-right: 8px;
}

/*# sourceMappingURL=style.css.map */
