.cy-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cy-social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #d7dce3;
  background: #ffffff;
  color: #111827;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.cy-social-link:hover,
.cy-social-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(8, 11, 18, 0.14);
  background: #f9fafb;
}

.cy-social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.cy-social-links--header {
  justify-content: center;
  margin: 0;
  gap: 0.35rem;
}

.cy-social-links--header .cy-social-link {
  width: 26px;
  height: 26px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f7fb;
}

.cy-social-links--header .cy-social-link svg {
  width: 13px;
  height: 13px;
}

.cy-social-links--header .cy-social-link:hover,
.cy-social-links--header .cy-social-link:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.cy-social-links--footer {
  margin-top: 0.75rem;
}

.cy-social-links--single {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid #dfe3e8;
}

@media (max-width: 860px) {
  .cy-social-links--header {
    justify-content: center;
  }
}
