.member-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 20px;
    background: #faf8f9;
}

.member-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border: 1px solid #ece7ea;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    padding: 36px 28px;
}

.member-card__head {
    margin-bottom: 24px;
}

.member-card__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #9a7b86;
}

.member-card__title {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #111111;
}

.member-card__desc {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
}

.member-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.member-alert--error {
    background: #fff4f4;
    color: #c63b3b;
    border: 1px solid #ffd9d9;
}

.member-alert--success {
    background: #f4fff7;
    color: #237a40;
    border: 1px solid #d4f0dc;
}

.member-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.member-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.member-form__group label {
    font-size: 14px;
    font-weight: 700;
    color: #222222;
}

.member-form__group input {
    width: 100%;
    height: 50px;
    border: 1px solid #e5dde1;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 14px;
    color: #111111;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.member-form__group input:focus {
    border-color: #d6a8b8;
    box-shadow: 0 0 0 4px rgba(214, 168, 184, 0.12);
}

.member-btn {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 6px;
}

.member-btn--dark {
    background: #111111;
    color: #ffffff;
}

.member-card__bottom {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    color: #666666;
}

.member-card__bottom a {
    margin-left: 6px;
    font-weight: 700;
    color: #111111;
}

@media (max-width: 768px) {
    .member-page {
        padding: 32px 16px;
    }

    .member-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .member-card__title {
        font-size: 26px;
    }
}

/* 추가 구현 member 기본정보*/
.member-page--profile {
    align-items: flex-start;
    padding-top: 64px;
    padding-bottom: 64px;
}

.member-card--profile {
    max-width: 720px;
}

.profile-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid #ece7ea;
    border-radius: 16px;
    background: #ffffff;
}

.profile-info-row__label {
    font-size: 14px;
    font-weight: 700;
    color: #666666;
}

.profile-info-row__value {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    text-align: right;
    word-break: break-all;
}

.profile-action-row {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.member-btn--inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 140px;
    padding: 0 24px;
    text-decoration: none;
}

.member-btn--light {
    background: #f5f1f3;
    color: #111111;
    border: 1px solid #e5dde1;
}

@media (max-width: 768px) {
    .member-card--profile {
        max-width: 100%;
    }

    .profile-info-row {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 14px 16px;
    }

    .profile-info-row__value {
        text-align: left;
    }

    .profile-action-row {
        flex-direction: column;
    }

    .member-btn--inline {
        width: 100%;
    }
}

.member-page--mypage-home {
    align-items: flex-start;
    padding-top: 56px;
    padding-bottom: 72px;
    background: linear-gradient(180deg, #fcf8fa 0%, #f8f5f6 100%);
}

.member-home-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.member-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 420px);
    gap: 22px;
    margin-bottom: 26px;
}

.member-home-hero__text,
.member-home-hero__card {
    background: #ffffff;
    border: 1px solid #ece7ea;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
    padding: 32px 28px;
}

.member-home-hero__title {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: #111111;
}

.member-home-hero__desc {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
}

.member-home-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.member-home-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f7f2f4;
    border: 1px solid #ece1e6;
    font-size: 13px;
    font-weight: 700;
    color: #444444;
}

.member-home-badge strong {
    color: #8a6c77;
}

.profile-info-list--compact .profile-info-row {
    min-height: 54px;
}

.mypage-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mypage-quick-card {
    display: block;
    background: #ffffff;
    border: 1px solid #ece7ea;
    border-radius: 24px;
    padding: 24px 22px;
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.05);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mypage-quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.08);
}

.mypage-quick-card__label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #9a7b86;
}

.mypage-quick-card__title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
    color: #111111;
    letter-spacing: -0.03em;
}

.mypage-quick-card__desc {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
}

.profile-action-row--mypage-home {
    margin-top: 22px;
}

@media (max-width: 1024px) {
    .member-home-hero {
        grid-template-columns: 1fr;
    }

    .mypage-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .member-home-hero__text,
    .member-home-hero__card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .member-home-hero__title {
        font-size: 28px;
    }

    .mypage-quick-grid {
        grid-template-columns: 1fr;
    }

    .mypage-quick-card {
        border-radius: 20px;
        padding: 20px 18px;
    }
}