/* ═══ template7/footer.css ════════════════════════
 * 블랙 배경 풀블리드 푸터
 * 좌: 로고+SNS / 우: 기관정보
 * ═══════════════════════════════════════════════ */

#footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── 내부 레이아웃 ────────────────────────────── */

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 32px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

/* ─── 좌: 브랜드 컬럼 ─────────────────────────── */

.site-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.site-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.site-footer__logo-mark {
  width: 150px;
  height: auto;
  background: transparent;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: #ffffff;
  flex-shrink: 0;
}

.site-footer__brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

/* SNS 링크 */
.site-footer__sns-col {
  display: flex;
  gap: 8px;
}

.site-footer__sns-link {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.site-footer__sns-link:hover {
  border-color: var(--orange);
  color: #ffffff;
  background: var(--orange-pale);
}

/* ─── 우: 기관 정보 컬럼 ─────────────────────── */

.site-footer__info-col {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__address {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.site-footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__sep {
  color: rgba(255, 255, 255, 0.25);
}

.site-footer__vol {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.site-footer__copyright {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── 반응형 ───────────────────────────────────── */

@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 28px;
    padding: 40px 20px 36px;
  }

  .site-footer__info-col {
    text-align: left;
  }

  .site-footer__contact {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
