/* =========================================
   파일: /public/assets/css/site.footer.css
   역할:
   - 사이트 하단 사업자 정보 푸터 전용 스타일
   - 기존 페이지 CSS와 충돌 최소화
   ========================================= */

.site-footer {
  margin-top: 56px;
  border-top: 1px solid #e5e7eb;
  background: #f8f8f8;
  color: #6b7280;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 16px 26px;
}

.site-footer__brand {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
}

.site-footer__rows {
  display: grid;
  gap: 6px;
}

.site-footer__row {
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}

.site-footer__label {
  color: #374151;
  font-weight: 700;
}

.site-footer__note {
  color: #9ca3af;
  font-size: 12px;
}

.site-footer__links {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eceff3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.site-footer__links a {
  color: #4b5563;
  text-decoration: none;
  font-size: 12px;
}

.site-footer__links a:hover {
  color: #111827;
  text-decoration: underline;
}

/* page 여백과 어울리게 */
body.orders-page .site-footer__inner,
body.order-page .site-footer__inner {
  max-width: 1180px;
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 40px;
  }

  .site-footer__inner {
    padding: 18px 14px 22px;
  }

  .site-footer__brand {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .site-footer__row {
    font-size: 12px;
    line-height: 1.65;
  }

  .site-footer__note,
  .site-footer__links a {
    font-size: 11px;
  }
}