/* ============================================================
   GW2 입문 가이드 — Footer Styles
   styles/footer.css
   ============================================================ */

.site-footer {
  background: var(--deep);
  border-top: 3px solid var(--bronze);
}

/* ── 메인 영역 ─────────────────────────── */
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-20);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-12);
}

/* ── 브랜드 ─────────────────────────── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: rgba(247, 245, 241, 0.85);
  text-decoration: none;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.03em;
}
.footer-logo:hover { color: var(--text-inv); }

.footer-logo__mark {
  width: 28px;
  height: 28px;
  background: rgba(247, 245, 241, 0.12);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 245, 241, 0.6);
  flex-shrink: 0;
}
.footer-logo__mark svg { width: 16px; height: 16px; }

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(247, 245, 241, 0.35);
  line-height: 1.7;
}

/* ── 네비 컬럼 ─────────────────────────── */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  padding-top: var(--sp-1);
}

.footer-col__title {
  font-family: var(--ff-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: rgba(247, 245, 241, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(247, 245, 241, 0.5);
  text-decoration: none;
  transition: color var(--ease-default);
  line-height: 1.5;
}
.footer-col a:hover { color: rgba(247, 245, 241, 0.9); }

/* ── 하단 법적 표시 ─────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(247, 245, 241, 0.07);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-5);
  font-size: var(--text-xs);
  color: rgba(247, 245, 241, 0.2);
}
