/* Integration overlay: shared icon-only social/contact links */
.social-icons__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--portfolio-blue, #2d7bff);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(45, 123, 255, 0.25);
  background: rgba(45, 123, 255, 0.06);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-icons__link:hover {
  color: #7db0ff;
  background: rgba(45, 123, 255, 0.14);
  border-color: rgba(45, 123, 255, 0.45);
}

.social-icons__icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
}

.social-icons__icon svg {
  width: 100%;
  height: 100%;
}

.social-icons__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-contact__cta {
  margin: 0;
  max-width: var(--portfolio-reading);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer__copyright {
  margin: 0.75rem 0 0;
  color: rgba(247, 247, 247, 0.55);
  font-size: 0.85rem;
  line-height: 1.4;
}

@media (min-width: 48rem) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer .social-icons__list {
    justify-content: flex-end;
  }
}
