.social {
  color: var(--color-white);
  background-color: var(--color-blue-light);
  padding: 24px 0;
  display: flex;
  justify-content: center;
}

.social .social--icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social .social--icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.social .social--icons a:hover {
  background: var(--color-accent);
}
