.footer .inner {
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer .inner > div {
  width: var(--main-width);
}

.f-term1,
.f-term2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: -0.24px;
  text-align: left;
  color: #000;
  cursor: pointer;
}

.f-term1::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 20px;
  object-fit: contain;
  background-color: #000;
}

.f-mail {
  margin: 40px 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.39px;
  text-align: left;
  color: #000;
}

.f-box-wrap {
  display: flex;
  justify-content: space-between;
}

.f-box-wrap > div {
  display: flex;
  flex-direction: column;
}

.f-box-wrap > div > span:first-child {
  margin-bottom: 10px;
}
.f-box-wrap span {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.21px;
  text-align: left;
  color: #000;
}

@media (max-width: 700px) {
  .f-term1,
  .f-term2 {
    font-size: 14px;
  }

  .f-mail {
    margin: 20px 0 40px 0;
    font-size: 22px;
  }

  .f-box-wrap span {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .f-box-wrap {
    flex-direction: column;
  }

  .f-box-r {
    margin-top: 10px;
  }
}

.f-box-wrap.eng {
  flex-direction: column;
}

.f-term1.eng::after {
  margin: 0 10px;
}

.f-box-wrap.eng .f-box-r {
  margin-top: 10px;
}

/* ── 통신판매업신고번호 옆 '확인' 링크 ──────────────────────────────
 *
 * 원본에서는 이 규칙이 `css/index.css` 에 있었다. 메인을 새로 짜면서 그 파일을
 * 아무도 싣지 않게 됐고, **그때부터 이 링크가 테두리 없이 맨 글자로 나오고
 * 있었다** — 푸터는 전 화면에 있는데 스타일만 메인 CSS 에 있었던 탓이다.
 *
 * 푸터가 쓰는 것이니 푸터 CSS 로 옮긴다. 값은 원본 그대로다.
 * 좁은 화면에서 숨기는 것도 원본 동작이다(1280px 이하) — 사업자 정보가
 * 여러 줄로 접히는 자리라 배지까지 끼면 읽기 어려워진다.
 */
.serlink {
  border: 1px solid #333;
  padding: 5px 10px;
  margin-left: 10px;
  font-size: 12px;
}
@media (max-width: 1280px) {
  .serlink { display: none; }
}
