body {
  margin: 0;
  padding: 0;
}

/* 전체 영역 */
.footer {
  width: 100%;
  height: 204px;
  background: #0e0f11;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 24px 0;
  box-sizing: border-box;
}

/* 내부 컨테이너 */
.footer-inner {
  width: 100%;
  max-width: 1216px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 상단: 로고 + 타이틀 */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

/* 로고 */
.footer-logo img {
  height: 44px;
  display: block;
}

/* 타이틀 */
.footer-title {
  font-family: Pretendard, sans-serif;
  font-size: 20px;
  font-weight: 600; /* 헤딩5 */
  line-height: 22px;
}

.desktop-br {
  display: none;
}
.desktop-only {
  display: none;
}
.mobile-only {
  display: inline;
}

/* 구분선 */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin-bottom: 24px;
}

/* 하단 텍스트 */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -24px;
}

.footer-address {
  font-family: Pretendard, sans-serif;
  font-size: 15px; /* 레이블 L */
  font-weight: 400;
  line-height: 20px;
}

.footer-copy {
  font-family: Pretendard, sans-serif;
  font-size: 15px; /* 레이블 L */
  font-weight: 400;
  line-height: 20px;
}

/* ===============================
   Desktop fixed width (≥1300px)
   =============================== */

@media (min-width: 1300px) {
  .footer {
    padding-left: 0;
    padding-right: 0;
  }
  .desktop-br {
    display: inline;
  }
  .desktop-only {
    display: inline;
  }
  .mobile-only {
    display: none;
  }
}

@media (max-width: 1299px) {
  .footer {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 32px;
    padding-bottom: 40px;
    height: auto;
    justify-content: center;
  }

  .footer-inner {
    align-items: center;
    text-align: center;
  }

  .footer-top {
    justify-content: center;
    gap: 16px;
    flex-direction: column;
  }

  .footer-title {
    font-size: 18px;
    line-height: 22px;
  }

  .footer-bottom {
    align-items: center;
    margin-top: 0;
  }

  .footer-address,
  .footer-copy {
    font-size: 15px;
    line-height: 20px;
  }
}
