/* FOOTER */
.hs-footer {
  width: 100%;

  background: #fff;
}

.hs-footer__bg {
  background: #000;
  border-radius: 60px 60px 0 0;
}

.hs-footer__inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 56px 90px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* ⭕ 카피랑 텍스트 기준선 맞춤 */
  color: #fff;
}

/* LEFT */
.hs-footer__left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hs-footer__logo {
  width: 260px;
  margin-bottom: 21px;
}

/* 텍스트 줄 */
.hs-footer__row {
  display: inline-flex;
  align-items: baseline;
  /* ✅ 이게 핵심 */
  gap: 24px;
  font-size: 13px;
  line-height: 1.6;
  white-space: nowrap;
}

.hs-footer__row b {
  font-weight: 700;
  margin-right: 6px;
}

.hs-footer__addr {
  white-space: normal;
  max-width: 900px;
}

/* RIGHT */
.hs-footer__right {
  font-size: 11px;
  /* opacity: .6; */
  white-space: nowrap;
  margin-top: 14%;
}

/* TOP BUTTON — ❗무조건 하단 */
.hs-top-btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  z-index: 999;
}

.hs-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.hs-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-top-btn svg {
  display: block;
}

/* RESPONSIVE */
@media (max-width:1024px) {
  .hs-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 40px;
  }

  .hs-footer__row {
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width:640px) {
  .hs-footer__inner {
    padding: 28px 20px;
  }

  .hs-footer__bg {
    background: #000;
    border-radius: 0 !important;
  }

  .hs-footer__logo {
    width: 210px;
  }
}