.mypage_cont {
    display: flex;
    gap: 24px;
    padding: 50px 0;
}

.mypage_cont .title_wrap {
    padding: 7px 8px 13px;
    border-bottom: 3px solid #222;
}

.mypage_cont .title_wrap .title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.mypage_sect .title_wrap .title {
    font-size: 21px;
    color: #222;
}

.mypage_sect {
    flex-grow: 1;
}

/* pc 사이드메뉴 */
.mypage_nav_wrap {
    padding-right: 24px;
    border-right: 1px solid #EBEBEB;
    flex-shrink: 0;
    /* width값은 프로젝트마다 설정 */
    min-width: 232px;
}

.mypage_nav_wrap>*:not(:last-child) {
    margin-bottom: 7px;
}

.mypage_nav_list .mypage_nav {
    padding: 13px 8px;
    color: #5E5E5E;
    display: block;
    font-size: 15px;
    font-weight: 400;
    border-radius: 2px;
}

.mypage_nav_list .mypage_nav.sub_nav {
    padding: 13px 16px;
    font-size: 14px;
}

.mypage_nav_list .mypage_nav:not(.title):hover,
.mypage_nav_list .mypage_nav.active {
    background-color: #F8F8F8;
    color: #222;
    font-weight: 600;
}

.cs_wrap {
    background-color: #EBEBEB;
    padding: 16px;
    color: #5E5E5E;
    font-weight: 700;
    font-size: 13px;
}

.cs_wrap .cs_contact {
    font-size: 20px;
    margin-bottom: 3px;
}

/* content 영역 */
.mypage_sect .content_wrap {
    padding: 50px 0;
}

/* 상단 안내 박스 */
.notice_box {
    background-color: #F8F8F8;
    border-radius: 2px;
    padding: 16px;
}

/* 하단 유의사항 박스 */
.alert_box {
    background-color: #F8F8F8;
    border-radius: 2px;
    padding: 20px;
    color: #5E5E5E;
}

.alert_box .title {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    gap: 0 6px;
}

.alert_box .title::before {
    content: "";
    width: 22px;
    aspect-ratio: 1/1;
    background: url("/static/app_www/base/img/icon_alert_gray.png") left top / cover no-repeat;
}

/* 유의사항 리스트 */
.alert_list.disc {
    list-style: disc;
    padding-left: 28px;
}

.alert_list>li {
    font-size: 14px;
}

.alert_list>li:not(:last-child) {
    margin-bottom: 2px;
}

/* 리스트 영역 */
.list_area .list_count_box {
    margin-bottom: 16px;
}

.list_area .list_count {
    font-size: 15px;
}

.list_area .list_count span {
    color: #5E5E5E;
}

/* 리스트 영역 - 리스트 형태 */
.mypage_list {
    border-top: 2px solid #BBBBBB;
    border-bottom: 2px solid #BBBBBB;
}

.mypage_list .list_item {
    padding: 18px 16px;
    display: flex;
    justify-content: space-between;
}

.mypage_list .list_item:not(:last-child) {
    border-bottom: 1px solid #BBBBBB;
}

/* 리스트 영역 - 테이블 형태 */
.mypage_table_wrap {
    width: 100%;
    overflow-x: auto;
}

.mypage_table {
    border-left: 1px solid #BBBBBB;
    border-right: 1px solid #BBBBBB;
    /* min width 각 페이지 설정 */
}

.mypage_table .thead {
    border-top: 2px solid #BBBBBB;
    border-bottom: 2px solid #BBBBBB;
}

.mypage_table .tr {
    display: flex;
}

.mypage_table .thead .tr {
    background-color: #F8F8F8;
    font-weight: 500;
}

.mypage_table .tbody .tr {
    border-bottom: 1px solid #BBBBBB;
}

.mypage_table .td {
    font-size: 16px;
    text-align: center;
}

.mypage_table .td:not(:last-child) {
    border-right: 1px solid #BBBBBB;
}

/* 정보수정 input영역 */
.update_area .input_title {
    margin-bottom: 12px;
}

.update_area .btn_default {
    font-weight: 700;
    font-size: 18px;
    padding: 11px 0;
}

.update_area .edk_input_wrap:not(:last-of-type) {
    margin-bottom: 32px;
}

.btn_group {
    margin-top: 50px;
}

.edk_input_wrap .input_flex_area .btn_default {
    padding: 11px 15px;
}

/* 캠페인 리스트(썸네일 형) */
.thumbnail_list .list_item:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 20px;
}

.thumbnail_list .list_item {
    display: flex;
    gap: 16px;
}

.thumbnail_list .item_img {
    display: flex;
    width: calc((100% - 16px) * 0.18);
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.thumbnail_list .item_img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.thumbnail_list .item_img .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail_list .list_item:hover .item_img .cover {
    background-color: #000;
}

.thumbnail_list .item_right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc((100% - 16px) * 0.82);
}

.thumbnail_list .subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #5E5E5E;
}

.thumbnail_list .title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-top: 2px;
}

.thumbnail_list .info {
    display: flex;
    margin-top: 8px;
    gap: 0 8px;
    align-items: center;
}

.thumbnail_list .info>p:not(:last-child)::after {
    content: '';
    display: block;
    width: 0;
    height: 12px;
    border-right: 1px solid #9E9E9E;
    margin-left: 8px;
}

.thumbnail_list .info>p {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.thumbnail_list .info mark {
    font-weight: 500;
    color: var(--sub-color);
}

.thumbnail_list .btn_default {
    margin-top: auto;
    border-color: #9E9E9E;
    padding: 15px 0;
    font-size: 16px;
}

.thumbnail_list .empty_wrap {
    padding-bottom: 260px;
}

@media screen and (max-width:1023px) {
    .mypage_cont {
        padding: 24px 0;
    }

    .thumbnail_list .list_item {
        gap: 12px;
    }

    .thumbnail_list .item_img .cover {
        font-size: 16px;
    }

    .thumbnail_list .title {
        font-size: 14px;
    }

    .thumbnail_list .subtitle {
        font-size: 12px;
    }

    .thumbnail_list .info>p {
        font-size: 12px;
    }

    .thumbnail_list .btn_default {
        padding: 12px 0;
        font-size: 14px;
    }
}

@media screen and (max-width:767px) {

    .mypage_cont .title_wrap {
        padding: 0 0 12px;
    }

    .mypage_sect .title_wrap .title {
        font-size: 20px;
    }

    /* content 영역 */
    .mypage_sect .content_wrap {
        padding: 16px 0;
    }

    .notice_box {
        padding: 12px;
    }

    .alert_box {
        padding: 16px;
    }

    .alert_box .title {
        font-size: 14px;
    }

    .alert_box .title::before {
        width: 20px;
    }

    .list_area .list_count_box {
        margin-bottom: 12px;
    }

    .list_area .list_count {
        font-size: 12px;
    }

    .mypage_list .list_item {
        padding: 12px 16px;
    }

    .edk_input_wrap .input_flex_area .btn_default {
        width: 100%;
    }

    .thumbnail_list .list_item {
        align-items: flex-end;
    }

    .thumbnail_list .item_img {
        width: 94px;
    }

    .thumbnail_list .info {
        margin-top: 4px;
    }

    .thumbnail_list .item_right {
        width: calc(100% - 106px);
        gap: 12px;
    }

    .thumbnail_list .empty_wrap {
        padding-bottom: 130px;
    }
}