/* ===== 전역 초기화 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Noto Sans KR", system-ui, sans-serif;
}

/* ────────────────────────── */
/* MOBILE : 얇은 상단 헤더   */
/* ────────────────────────── */

/* ───────── MOBILE : 얇은 상단 헤더 ───────── */

.join-topbar {
    background: #fafafa;
    border-bottom: 1px solid #e5e7eb;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

/* 로고 왼쪽 / 메뉴 오른쪽 */
.join-topbar-inner {
    width: 100%;
    max-width: 1100px;      /* PC와 맞는 비율 */
    margin: 0 auto;
    padding: 0 16px;        /* 모바일 좌우 여백 */
    display: flex;
    align-items: center;
}

/* 왼쪽 로고 */
.join-topbar-left {
    display: flex;
    align-items: center;
}

.join-logo {
    height: 20px;
    object-fit: contain;
}

/* 오른쪽 텍스트 → flex 자동 밀어내기 */
.join-topbar-right {
    margin-left: auto;      /* ← 핵심! 오른쪽 끝으로 붙임 */
    display: flex;
    align-items: center;
    gap: 8px;
}

.join-topbar-right a {
    font-size: 12px;
    color: #7a8292;
    text-decoration: none;
    white-space: nowrap;
}

.join-topbar-right span {
    color: #d0d0d0;
    font-size: 12px;
}

.join-topbar-right a:hover {
    opacity: 0.7;
}

/* ────────────────────────── */
/* MOBILE : 회원가입 푸터    */
/* ────────────────────────── */

.join-footer {
    background: #f7f8fc;
    border-top: 1px solid #e5e7eb;
    padding: 28px 0 38px;
}

.join-footer-inner {
    width: 100%;
    padding: 0 12px;
    text-align: center;
}

/* 2줄 자동 흐름 + 모바일용 줄바꿈 br 표시 */
.join-footer-links {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 10px;
    white-space: normal;
}

.join-footer-links a {
    color: #6c7280;
    text-decoration: none;
    font-size: 11px;
}

.join-footer-links a:hover {
    opacity: 0.7;
}

.join-footer-links span {
    color: #d0d0d0;
    padding: 0 4px;
    font-size: 11px;
}

/* 모바일에서는 br 표시 */
.join-footer-break {
    display: block;
    height: 0;
    margin: 4px 0;
}

.join-footer-copy {
    font-size: 10px;
    color: #9ca3af;
}