.site-footer {
  padding: 1rem 0;
  background-color: white;
  border-top: none;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 0.5rem 0;
  flex-direction: column;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: none;
  gap: 1rem;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-link {
  font-size: 13px;
  color: var(--color-text-gray);
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--color-black);
}

.copyright {
  font-size: 13px;
  color: var(--color-text-gray);
}

@media (max-width: 56.24rem) {
  .footer-content {
    padding: 0 0.75rem;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-nav {
    justify-content: center;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    justify-content: center;
    gap: 0.75rem;
  }

  .copyright,
  .footer-bottom-link {
    font-size: 12px;
  }
}
