/* ===========================================
   회원 페이지 전용 배너 공통 스타일
   =========================================== */

.member-banner {
    width: 100%;
    background: url(../images/user_page_bg.png) no-repeat center center, #002C19;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    background-position: 100% 50%;
}

.member-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.member-banner-text {
    color: white;
}

.member-banner-label {
    display: block;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
}

.member-banner-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}


/* ===========================================
   반응형 디자인
   =========================================== */

@media (max-width: 768px) {
    .member-banner {
        width: 100%;
        background: url(../images/user_page_mo_bg.png) no-repeat center center, #002C19;
        min-height: 350px;
    }
    .member-banner-content {
        gap: 30px;
        justify-content: flex-start;
        width: 100%;
        text-align: start;
        padding: 70px 16px 0;
        align-items: flex-start;
    }
    .member-banner-content {
        flex-direction: column;
        gap: 30px;
    }
    .member-banner-label {
        font-size: 16px;
    }
    .member-banner-title {
        font-size: 28px;
    }
}