/* Core Team Social Links Fix */
.core-team-card .core-team-socials {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.core-team-card .core-team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  transition: background 0.2s;
  border: none;
}
.core-team-card .core-team-socials a:hover {
  background: rgba(255,255,255,0.22);
}
.core-team-card .core-team-socials img {
  width: 22px;
  height: 22px;
  display: block;
}
