/* Our Members: personal LinkedIn profiles supplied by VFG.
   Page-scoped to preserve the shared design and organisation social links. */
body[data-page="team.html"] .member-profile-meta a.member-linkedin {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-start;
  gap: 8px;
  max-width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #c6d9ec;
  border-radius: 11px;
  background: #f1f7fc;
  color: #0a66c2;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
body[data-page="team.html"] .member-linkedin svg {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
body[data-page="team.html"] .member-profile-meta a.member-linkedin:is(:hover, :focus-visible) {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
}
body[data-page="team.html"] .member-profile-meta a.member-linkedin:focus-visible {
  outline: 3px solid #0a66c2;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  body[data-page="team.html"] .member-profile-meta a.member-linkedin {
    transition: none;
  }
}
