.membership {
    max-width: 420px;
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.9;
}

.membership-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.8vh;
}

/* 작은 원형 가입 버튼 */
.bullet-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #aaa;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 11px;
    font-weight: 600;
    font-family: "Malgun Gothic", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* 카드에 마우스 올리면 버튼도 같이 강조 */
.membership-option:hover .bullet-button {
    background-color: #333;
    color: #fff;
    border-color: #333;
}


.membership-title {
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 22px);
    font-family: "Nanum Myeongjo", "Gungsuh", "궁서", serif;
}

.membership-sub {
    margin-left: 2.2vw;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    margin-bottom: 2vh;
    font-family: "Nanum Myeongjo", "Gungsuh", "궁서", serif;
}

.membership-body {
    margin-left: 2.2vw;
    font-size: clamp(14px, 1.6vw, 18px);
}

.membership-row {
    display: flex;
    justify-content: center;
    gap: 8vw;
    width: 100%;
    max-width: 1200px;
}

/* 중앙을 기준으로 텍스트 정렬 */
.privacy-notice {
    text-align: center; 
}

.bottom-text {
    font-size: 16px;
}

.bottomContent {
    font-size: 20px;
}

.bottom-info-line {
  color: #B90000;           /* 텍스트 색상 */
  text-decoration: underline;
  font-size: 20px;
  font-weight: bold;
}

/* ===== 모바일 전용(이미지 레이아웃 맞추기) 보정 ===== */

@media (max-width: 600px) {
    .membership-row {
        flex-direction: column;
        gap: 0vh;
        align-items: center;
    }
    .membership {
        max-width: none;
        width: 100%;
    }
    .regular-text-block {
        font-size: 14px;
    }
    .regular-sub-note {
        font-size: 16px;
        margin-bottom: 1.5vh;
    }
    .regular-account {
        margin-top: 2.5vh;
    }
    .regular-notice {
        font-size: 11px;
    }

    #join-normal-account,
    #join-regular-account {
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
        box-shadow: none;
        background-color: transparent;
    }
    /* ● 제목 줄 */
    .membership-header {
        margin-bottom: 4px;
    }
    .membership-title {
        font-size: 16px;
    }
    .membership-sub {
        margin-left: 26px;
        /* 점 + 제목 다음 줄 들여쓰기 */
        font-size: 14px;
        margin-bottom: 8px;
    }
    .membership-body {
        margin-left: 26px;
        font-size: 13px;
        line-height: 1.8;
    }
    /* 일반/정회원 사이 구분선 – 화면 전체 폭으로 */
    .membership-divider {
        display: block;
        width: 100%;
        height: 1px;
        background-color: #ccc;
        margin: 4px 0;
    }
    .membership-title-btn {
    padding: 6px 14px;
    border-radius: 999px;           /* 알약 모양 */
    border: 1px solid #555;
    background-color: #ffffff;
    cursor: pointer;
    font-size: clamp(18px, 2.2vw, 22px);
    font-family: "Nanum Myeongjo", "Gungsuh", "궁서", serif;
    font-weight: 700;
    transition: background-color 0.15s ease,
                color 0.15s ease,
                box-shadow 0.15s ease,
                transform 0.1s ease;
}

/* 호버 시 강조 */
.membership-option:hover .membership-title-btn {
    background-color: #333;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.membership-title-btn {
        padding: 4px 10px;
        font-size: 16px;
    }

    /* 개인정보 안내도 이미지처럼 작게 아래쪽에 */
    .privacy-notice {
        margin-top: 4px;
        font-size: 11px;
        line-height: 1.7;
    }
    .privacy-link a {
        text-decoration: underline;
    }

.bottom-text {
    font-size: 11px;
}

.bottomContent {
    font-size: 14px;
}

.bottom-info-line {
  color: #B90000;           /* 텍스트 색상 */
  text-decoration: underline;
  font-size: 14px;
  font-weight: bold;
}
}