.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 12px;
}

.footer-nav .footer-social {
  display: inline-flex;
  flex-direction: row;
  flex: 0 0 auto;
  margin: -5px 0;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: inherit;
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--blue, #001eff);
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-social .pinterest-icon {
  fill: currentColor;
}

.footer-social .instagram-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .footer-meta {
    align-items: flex-start;
  }
}
