/* 레이아웃 CSS */
@media all and (max-width: 1024px) {
  .footer_gnb .inner {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .footer_copy .inner {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

/* ========== FOOTER ========== */
footer {
  padding: 4rem;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links a {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-text);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-text);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}
