/* =========================
   Footer (NHN 스타일 참고: 정돈/가독성)
   기존 UI 영향 최소화를 위해 rg-footer 범위만 사용
========================= */

.rg-footer {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(6, 10, 18, .72);
  backdrop-filter: blur(10px);
}

.rg-footer__inner {
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.rg-footer__company {
  flex: 1 1 520px;
  min-width: 320px;
}

.rg-footer__brand {
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
}

.rg-footer__companyinfo {
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  line-height: 1.65;
}

.rg-footer__companyinfo--empty {
  opacity: .7;
}

.rg-footer__links {
  flex: 0 0 auto;
  min-width: 260px;
  text-align: right;
}

.rg-footer__linksrow {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  margin-bottom: 10px;
}

.rg-footer__link {
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.rg-footer__link:hover {
  color: rgba(255,255,255,.95);
  border-bottom-color: rgba(255,255,255,.35);
}

.rg-footer__meta {
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

/* 모바일: 1컬럼으로 내려서 정돈 */
@media (max-width: 860px) {
  .rg-footer__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .rg-footer__links {
    text-align: left;
    min-width: 0;
  }
  .rg-footer__linksrow {
    justify-content: flex-start;
  }
}
