/* ===== Footer — 여백은 Tailwind 유틸리티(footer.html) ===== */
.footer {
  background: #000;
}
.footer-inner {
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 650px;
}
.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo-wrap {
  width: 300px;
  height: 90px;
  flex-shrink: 0;
}
.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-09);
  transition: background .2s;
}
.social-btn:hover { background: #f0f0f0; }
.footer-address p {
  color: #fff;
  font-size: var(--fs-13);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 350px;
}
.footer-link-btn {
  background: #fff;
  border-radius: 4px;
  border: none;
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-13);
  color: #000;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
}
.footer-link-btn:hover { background: var(--color-accent); }
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;
  color: #fff;
  font-size: var(--fs-13);
}
.footer-bottom p:last-child { text-align: right; }

@media (max-width: 768px) {
  .footer-inner { gap: 40px; align-items: center; }
  .footer-top { flex-direction: column; align-items: center; }
  .footer-left { gap: 24px; align-items: center; max-width: 100%; }
  .footer-logo-group { flex-direction: column; gap: 20px; align-items: center; }
  .footer-logo-wrap { width: 150px; height: 46px; }
  .footer-social { justify-content: center; }
  .footer-address { text-align: center; }
  .footer-address p { font-size: var(--fs-10); }
  .footer-links { width: 100%; align-items: center; }
  .footer-link-btn { font-size: var(--fs-11); }
  .footer-bottom { flex-direction: column; font-size: var(--fs-09); align-items: center; text-align: center; }
  .footer-bottom p:last-child { text-align: center; }
}
