.footer-related-section {
  margin: 0 0 32px;
}

.footer-related-title {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-related {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-related-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-muted);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-related-item img {
  width: auto;
  max-width: 170px;
  max-height: 48px;
  object-fit: contain;
}

.footer-sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.sns-circle {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: #333;
  background: #fff;
  border: 1px solid #d9e1e3;
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s;
}

.sns-circle:hover,
.sns-circle:focus-visible {
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.sns-circle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 680px) {
  .footer-related {
    justify-content: center;
  }

  .footer-related-section {
    text-align: center;
  }

  .footer-related-item {
    flex-direction: column;
  }

  .footer-sns {
    justify-content: center;
    margin-top: 8px;
  }
}
