/* =============================================
   Group_Homepage_copyright (footer)
   기준폭: 1920px  /  기준높이: 443px
   스케일: max(360/1920, min(1, vw/1920))
   중앙 정렬
   ============================================= */

:root {
  --footer-base-w: 1920px;
  --footer-base-h: 443px;
}

/* ── 섹션 래퍼 ── */
.footer {
  position: relative;
  width: 100%;
  margin-top: 0px;
  overflow: hidden;
  /*background: #FFFFFF;*/
  height: var(--footer-base-h); /* JS가 scale에 맞춰 덮어씀 */
}

/* ── 1920px 기준 내부 컨테이너 ── */
.footer__inner {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -960px;
  width: 1920px;
  height: 443px;
  transform-origin: top center;
}

/* ── "mail" 레이블 ── */
.footer__mail-label {
  position: absolute;
  left: 659.005px;
  bottom: 319.61px;
  width: 602.51px;
  height: 27.39px;
  font-family: 'A2Z', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #272727;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 이메일 주소 ── */
.footer__mail-addr {
  position: absolute;
  left: 659.005px;
  bottom: 275.67px;
  width: 602.51px;
  height: 27.39px;
  font-family: 'A2Z', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #272727;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer__mail-addr:hover {
  opacity: 0.7;
}

/* ── 구분선 ── */
.footer__divider {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 241.33px;
  height: 0;
  border: none;
  border-top: 0.75px solid #272727;
  margin: 0;
}

/* ── 링크 공통 ── */
.footer__link {
  position: absolute;
  left: 576.995px;
  width: 766.47px;
  font-family: 'A2Z', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #272727;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer__link:hover {
  opacity: 0.65;
}

/* ── 이용약관 ── */
.footer__link--terms {
  bottom: 183.5px;
  height: 23.5px;
}

/* ── 개인정보처리방침 ── */
.footer__link--privacy {
  bottom: 139.75px;
  height: 23.5px;
}

/* ── Copyright 텍스트 ── */
.footer__copy {
  position: absolute;
  left: 576.995px;
  bottom: 96px;
  width: 766.47px;
  height: 23.5px;
  font-family: 'A2Z', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #ACACAC;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
