.social-follow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 19px;
}

.social-label {
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1.5px solid rgba(225, 191, 130, .72);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .025);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.social-icons svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  border-color: var(--gold-light);
  color: #071c2a;
  background: var(--gold-light);
  transform: translateY(-2px);
}

@media (max-width: 420px) {
  .social-follow {
    align-items: flex-start;
    flex-direction: column;
  }
}
