/* ── 푸터 전체 ── */
.footer {
  width: 100%;
  background: var(--color-bg-dark);
}

.footer-inner {
  max-width: var(--inner-width);
  width: 100%;
  margin: 0 auto;
  padding: 48px 0 36px;
}

/* ── 상단: 로고 + 링크 ── */
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 20px;
}

/* ── 로고 ── */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;

  border-radius: 4px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  flex-shrink: 0;
}

/* ── 우측 링크 ── */
.footer-nav {
  display: flex;
  align-items: center;
}

.footer-nav a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 0 18px;
  transition: color 0.2s;
}

.footer-nav a:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav a:first-child {
  padding-left: 0;
}

.footer-nav a:last-child {
  padding-right: 0;
}

.footer-nav a:hover {
  color: #fff;
}

/* ── 하단: 카피라이트 ── */
.footer-copy {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.35);
}
