.profile-social-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-social-links a {
  min-height: 48px;
  padding: 6px 15px 6px 7px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #071a2f;
  background: #fff;
  border: 1px solid #d8ddd9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-social-links a:hover,
.profile-social-links a:focus-visible {
  border-color: #087d81;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 26, 47, 0.12);
}

.profile-social-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.scholar-icon {
  background: #4285f4;
}

.researchgate-icon {
  color: #052b29;
  background: #00d0af;
}

.linkedin-icon {
  background: #0a66c2;
  font: 900 15px/1 Georgia, serif;
}

@media (max-width: 600px) {
  .profile-social-links {
    display: grid;
  }

  .profile-social-links a {
    width: 100%;
  }
}
