/* 공모전 메인 우측 플로팅 */
.competition .competition_float {
    position: fixed;
    right: 0px;
    top: 450px;
    z-index: 20;
    width: 118px;
    height: calc(118px * 3);
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.20);
}

.competition .competition_float .segment {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #FFF;
    width: 118px;
    height: 118px;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
}

.competition .competition_float .segment:hover {
    background: #026442;
    color: #fff;
}

.competition .competition_float .segment:not(:last-child)::after {
    content: '';
    width: 104px;
    height: 1px;
    position: relative;
    bottom: -16px;
    display: block;
    background: rgba(29, 31, 37, 0.20);
    padding: 0;
}

.competition .competition_float .segment .img_box {
    width: 60px;
    height: 60px;
    background-size: 60px 60px;
    background-repeat: no-repeat;
    margin-bottom: 8px;
}

.competition .competition_float .segment .img_box#fs_bullseye {
    background-image: url("../../img/icn/icn_bullseye_gray.png");
}

.competition .competition_float .segment .img_box#fs_checklist {
    background-image: url("../../img/icn/icn_checklist_gray.png");
}

.competition .competition_float .segment .img_box#fs_info {
    background-image: url("../../img/icn/icn_info_gray.png");
}

.competition .competition_float .segment:hover .img_box#fs_bullseye {
    background-image: url("../../img/icn/icn_bullseye_white.png");
}

.competition .competition_float .segment:hover .img_box#fs_checklist {
    background-image: url("../../img/icn/icn_checklist_white.png");
}

.competition .competition_float .segment:hover .img_box#fs_info {
    background-image: url("../../img/icn/icn_info_white.png");
}

.common_pop p.id_field {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    border-radius: 4px;
    background: rgba(29, 31, 37, 0.05);
    display: flex;
    padding: 24px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .competition .competition_float {
        top: 300px;
        width: 84px;
        height: calc(84px * 3);
    }
    
    .competition .competition_float .segment {
        width: 84px;
        height: 84px;
        font-size: 14px;
        line-height: 14px;
        padding: 16px 8px 8px 8px;
    }
    
    .competition .competition_float .segment:not(:last-child)::after {
        width: 84px;
        height: 1px;
        bottom: -16px;
    }
    
    .competition .competition_float .segment .img_box {
        width: 40px;
        height: 40px;
        background-size: 40px 40px;
    }
    
    .competition .competition_float .segment .img_box#fs_bullseye {
        background-image: url("../../img/icn/icn_bullseye_gray.png");
    }
    
    .competition .competition_float .segment .img_box#fs_checklist {
        background-image: url("../../img/icn/icn_checklist_gray.png");
    }
    
    .competition .competition_float .segment .img_box#fs_info {
        background-image: url("../../img/icn/icn_info_gray.png");
    }
    
    .competition .competition_float .segment:hover .img_box#fs_bullseye {
        background-image: url("../../img/icn/icn_bullseye_white.png");
    }
    
    .competition .competition_float .segment:hover .img_box#fs_checklist {
        background-image: url("../../img/icn/icn_checklist_white.png");
    }
    
    .competition .competition_float .segment:hover .img_box#fs_info {
        background-image: url("../../img/icn/icn_info_white.png");
    }
}



/* 공모전 메인 */
.competition .kv {
    padding: 0px 80px;
    margin-top: 104px;
    margin-bottom: 160px;
}

.competition .kv .swiper-slide {
    height: 760px;
}

.competition .kv .swiper-slide .img_box {
    width: 100%;
    height: 760px;
    position: relative;
    overflow: hidden;
}

.competition .kv .swiper-slide .img_box .bg {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.competition .kv .swiper-slide .img_box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    object-fit: cover;
    /* 비율 유지하며 컨테이너 안에 맞춤 */
}
.competition .kv .swiper-slide .text_area {
    position: absolute;
    z-index:40;
    left:60px;
    top:50%;
    transform: translateY(-50%);
    display:flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    height:100%;
    padding-top:120px;
    padding-bottom: 80px;
    color:#fff;
    max-width:570px;
    text-align:left;
}
.competition .kv .swiper-slide .text_area .top {
    position: absolute;
    top:120px;
}
.competition .kv .swiper-slide .text_area .top p {
    margin-top:24px;
    font-size: 20px;
    line-height: 28px;
}
.competition .kv .swiper-slide .text_area .bottom .title {
    font-size:20px;
    font-weight:700;
    line-height: 34px;
    margin-bottom:24px;
}
.competition .kv .swiper-slide .text_area .bottom .title .desc {
    font-size: 18px;
    line-height: 26px;
}
.competition .kv .swiper-slide .img_box {
    position: relative;
}
.competition .kv .swiper-slide .img_box video {
    height: 760px;
    width: 100%;
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.competition .kv_control .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-image: url(../../img/competition/main/kv_prev_btn.png);
    background-size: 60px 60px;
    background-position: center;
    left: 60px;
}

.competition .kv_control .swiper-button-next {
    width: 60px;
    height: 60px;
    background-image: url(../../img/competition/main/kv_next_btn.png);
    background-size: 60px 60px;
    background-position: center;
    right: 60px;
}

.competition .kv_control .swiper-button-prev::after,
.competition .kv_control .swiper-button-next::after {
    display: none;
}

.comp_info_swiper .swiper-slide {
    width: 724px;
    border: 1px solid rgba(29, 31, 37, 0.20);
    background: #FFF;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
}

.comp_info_swiper .swiper-slide .img_box {
    position: relative;
}

.comp_info_swiper .swiper-slide .img_box::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 2;
}

.comp_info_swiper .swiper-slide .img_box::after {
    content: '';
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../../img/icn/icn_play_wh.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    z-index: 3;
}

.comp_info_swiper .swiper-slide.has_video:hover .img_box::before {
    display: block;
}

.comp_info_swiper .swiper-slide.has_video:hover .img_box::after {
    display: block;
}

.comp_info_swiper .swiper-slide .text_area {
    padding: 40px;
}

.comp_info_swiper .swiper-slide .text_area .title {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comp_info_swiper .swiper-slide .text_area .desc {
    font-size: 18px;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comp_info_swiper .swiper-slide+.swiper-slide {
    margin-left: 16px;
}

.competition.main .works {
    padding: 160px 0 160px 80px;
}

.competition.main .works .top {
    padding-right: 80px;
    align-items: flex-end;
}

@media screen and (max-width:768px) {    
    /* 공모전 메인 */
    .competition .kv {
        padding: 0px 16px;
        margin-top: 96px;
        margin-bottom: 80px;
    }

    .competition .kv .logo{
        width: 70%;
    }

    .competition .kv .swiper-slide {
        height: 420px;
    }

    .competition .kv .swiper-slide .img_box {
        width: 100%;
        height: 420px;
        position: relative;
        overflow: hidden;
    }

    .competition .kv .swiper-slide .text_area {
        left:24px;
        padding-top:24px;
        padding-bottom: 24px;
        max-width:none;
    }
    .competition .kv .swiper-slide .text_area .top {
        position: absolute;
        top:24px;
    }
    .competition .kv .swiper-slide .text_area .top p {
        margin-top:16px;
        font-size: 14px;
        line-height: 22px;
    }
    .competition .kv .swiper-slide .text_area .bottom .title {
        font-size:18px;
        line-height: 24px;
        margin-bottom:16px;
    }
    .competition .kv .swiper-slide .text_area .bottom .title .desc {
        font-size: 14px;
        line-height: 22px;
    }
    .competition .kv .swiper-slide .img_box video {
        height: 420px;
    }

    .competition .kv_control .swiper-button-prev {
        width: 36px;
        height: 36px;
        background-image: url(../../img/competition/main/kv_prev_btn.png);
        background-size: 36px 36px;
        background-position: center;
        left: 0px;
    }

    .competition .kv_control .swiper-button-next {
        width: 36px;
        height: 36px;
        background-image: url(../../img/competition/main/kv_next_btn.png);
        background-size: 36px 36px;
        background-position: center;
        right: 0px;
    }

    .comp_info_swiper .swiper-slide {
        width: 100%;
    }

    .comp_info_swiper .swiper-slide.has_video:hover .img_box::before {
        display: block;
    }

    .comp_info_swiper .swiper-slide.has_video:hover .img_box::after {
        display: block;
    }

    .comp_info_swiper .swiper-slide .text_area {
        padding: 16px;
    }

    .comp_info_swiper .swiper-slide .text_area .title {
        font-size: 20px;
    }

    .comp_info_swiper .swiper-slide .text_area .desc {
        font-size: 14px;
        line-height: 22px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .comp_info_swiper .swiper-slide+.swiper-slide {
        margin-left: 0px;
    }

    .competition.main .works {
        padding: 80px 16px;
    }

    .competition.main .works .top {
        padding-right: 0px;
        align-items: flex-start;
    }
}

.banner_wrap .sub_background.invite {
    background-image: url(../../img/competition/invite_banner_pc.png);
}


/* 글로벌 금융탐방 */
.wrap.global {
    padding-top: 64px;
}

.global .sub_background {
    width: 100%;
    height: 340px;
    position: relative;
}

.global .sub_background .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.global .sub_background .bg_img div {
    width: 100%;
    height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.global .sub_background .txt_box {
    position: relative;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.global .sub_background .txt_box .sb_title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.global .sub_background .txt_box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.global .board_list_wrap .card_list li .txt_box {
    position: relative;
}

.global .board_list_wrap .card_list li .txt_box .desc_area .name {
    font-size: 14px;
}

.global .board_list_wrap .card_list li .txt_box .desc_area .name.award1::before {
    content: '대상 | ';
    font-size: 14px;
    color: #888;
}

.global .board_list_wrap .card_list li .txt_box .desc_area .name.award2::before {
    content: '장려상 | ';
    font-size: 14px;
    color: #888;
}

.global .board_list_wrap .card_list li .txt_box .desc_area .w_date {
    font-size: 14px;
    color: #888;
}

.global .board_list_wrap .card_list.card_list_a li .txt_box::after {
    content: '';
    position: absolute;
    top: 0;
    width: calc(100% - 48px);
    height: 1px;
    background: rgba(29, 31, 37, 0.20);
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
    .global .sub_background .txt_box {
        position: relative;
        top: 112px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: #fff;
        z-index: 3;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .global .m_padding_0 .board_list_wrap {
        padding: 0 16px;
    }

    .global .sub_background .txt_box .sb_title {
        font-size: 28px;
        line-height: 28px;
    }

    .global .sub_background .txt_box p {
        font-size: 14px;
        line-height: 22px;
    }

    .global .board_list_wrap .card_list li .txt_box {
        position: relative;
    }

    .global .board_list_wrap .card_list li .txt_box .desc_area .name {
        font-size: 12px;
    }

    .global .board_list_wrap .card_list li .txt_box .desc_area .name.award1::before {
        content: '대상 | ';
        font-size: 12px;
        color: #888;
    }

    .global .board_list_wrap .card_list li .txt_box .desc_area .name.award2::before {
        content: '장려상 | ';
        font-size: 12px;
        color: #888;
    }

    .global .board_list_wrap .card_list li .txt_box .desc_area .w_date {
        font-size: 12px;
        color: #888;
    }

    .global .board_list_wrap .card_list.card_list_a li .txt_box::after {
        content: '';
        position: absolute;
        top: 0;
        width: calc(100% - 48px);
        height: 1px;
        background: rgba(29, 31, 37, 0.20);
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 글로벌 금융탐방 상세 */
.global.detail_page .sub_background::after {
    content: '';
    background: rgba(29, 31, 37, 0.60);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

.global .sub_background .txt_box p.gray {
    color: #888;
}

.global .gf_outer_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 228px;
    width: 100%;
}

.global .gf_outer_wrapper .video_container {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.global .gf_outer_wrapper .video_container iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.global .gf_outer_wrapper .video_area {
    width: 1168px;
    height: 657px;
    background: #888;
}

.global .gf_outer_wrapper .gf_inner_section {
    padding: 8px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.global .gf_outer_wrapper .gf_inner_section:not(:last-of-type) {
    border-bottom: 1px solid rgba(29, 31, 37, 0.20);
}

.global .gf_outer_wrapper .gf_blue_title {
    color: #0061AF;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.global .gf_outer_wrapper .gf_black_title {
    color: #1D1F25;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.global .gf_outer_wrapper .gf_paragraph {
    font-size: 18px;
    line-height: 26px;
}


@media screen and (max-width: 768px) {
    .global.detail_page .sub_background::after {
        content: '';
        background: rgba(29, 31, 37, 0.60);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
    }

    .global .sub_background .txt_box p.gray {
        color: #888;
    }

    .global .gf_outer_wrapper {
        padding: 40px 16px;
    }

    .global .gf_outer_wrapper .video_area {
        width: 328px;
        height: 184px;
        background: #888;
    }

    .global .gf_outer_wrapper .gf_inner_section {
        padding: 16px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .global .gf_outer_wrapper .gf_inner_section:not(:last-of-type) {
        border-bottom: 1px solid rgba(29, 31, 37, 0.20);
    }

    .global .gf_outer_wrapper .gf_blue_title {
        color: #0061AF;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
    }

    .global .gf_outer_wrapper .gf_black_title {
        color: #1D1F25;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
    }

    .global .gf_outer_wrapper .gf_paragraph {
        font-size: 14px;
        line-height: 22px;
    }

}

/* 동문인터뷰 */
.competition .com_txt.mb40 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
}

.competition .com_txt.mb40 h4 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.competition .card_list li .w_date {
    color: #888;
}

.global .gf_heading_centered {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    padding: 40px 0;
}

.global .gf_blue_question {
    font-size: 32px;
    color: #0061AF;
    font-weight: 700;
    line-height: 32px;
}

@media screen and (max-width: 768px) {
    .competition .com_txt.mb40 h4 {
        font-size: 28px;
        line-height: 28px;
    }

    .global .gf_heading_centered {
        font-size: 14px;
        line-height: 22px;
        padding: 20px 0;
    }

    .global .gf_blue_question {
        font-size: 20px;
        line-height: 20px;
    }
}

/* 공모요강 */
.competition .inner_1440.competition_detail {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.competition .table_info {
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.competition .table_info li {
    padding: 24px 0;
    border-bottom: 1px solid rgba(29, 31, 37, 0.20);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.competition .table_info .flex_start li {
    align-items: flex-start;
}

.competition .table_info li .info_title {
    font-size: 28px;
    font-weight: 700;
    min-width: 120px;
}

.competition .table_info li .info_list {
    flex: 1;
    width: 100%;
}

.competition .table_info li .info_list .item {
    padding-bottom: 16px;
}

.competition .table_info li .info_list .item p {
    font-size: 18px;
    line-height: 26px;
    padding-left: 14px;
    position: relative;
}

.competition .table_info li .info_list .item p::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
    background-color: #1D1F25;
}

.competition .table_info li .info_list .item+.item {
    padding-top: 16px;
    border-top: 1px solid rgba(29, 31, 37, 0.20);
    border-bottom: none;
}

.competition .table_info li .info_list .item:last-child {
    padding-bottom: 0;
}

.competition .table_info li .info_list.icn {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.competition .table_info li .info_list.icn .item {
    border: none;
    padding: 0 30px 0 0;
    text-align: center;
    position: relative;
}

.competition .table_info li .info_list.icn .item:not(:first-child) {
    padding-left: 30px;
    ;
}

.competition .table_info li .info_list.icn .item::after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    margin: 0px 10px;
    background-image: url(../../img/icn/icn_arr_next_s.png);
    background-size: 24px 24px;
}

.competition .table_info li .info_list.icn .item:last-child::after {
    display: none;
}

.competition .table_info li .info_list.icn .item p {
    padding-left: 0;
}

.competition .table_info li .info_list.icn .item p::before {
    display: none;
}

.competition .table_info .section_title {
    width: 100%;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
}

.competition .table_info li.chart_btn {
    gap: 16px;
    flex-direction: column;
    padding: 24px 0 0 0;
}

.competition .table_info li.chart_btn .top_area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.competition .table_info .info_desc {
    width: 100%;
}

.competition .table_info li .info_chart {
    width: 100%;
}

.competition .table_info li .info_chart table {
    width: 100%;
}

.competition .table_info li .info_chart table th {
    height: 84px;
    font-size: 18px;
    font-weight: 400;
    line-height: 16px;
    background: #EFFBFF;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(29, 31, 37, 0.20);
}

.competition .table_info li .info_chart table th:not(:last-child),
.competition .table_info li .info_chart table td:not(:last-child) {
    border-right: 1px solid rgba(29, 31, 37, 0.20);
}

.competition .table_info li .info_chart table tr:not(:last-child) {
    border-bottom: 1px solid rgba(29, 31, 37, 0.20);
}

.competition .table_info li .info_chart table td {
    padding: 16px 24px;
    font-size: 18px;
    line-height: 26px;
}

table.pre_line tr td {
    white-space: pre-line
}

.competition .table_info li .info_chart table td i {
    font-style: normal;
    color: #888;
}

.competition .table_info li .info_chart table .center {
    text-align: center;
}

.competition .table_info li .info_chart table th.short {
    height: 58px;
}

.competition .table_info .nolist_content {
    font-size: 18px;
    line-height: 26px;
    margin-top: 40px;
}

.competition .table_info li .info_list.icn .item .text_container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.competition .table_info li .info_list.icn .item .text_container .label {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
}

.competition .table_info li .info_list.icn .item .text_container .date {
    font-size: 16px;
    line-height: 24px;
}

@media screen and (max-width: 768px) {
    .competition .inner_1440.competition_detail {
        gap: 40px;
    }

    .competition .table_info {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .competition .table_info li {
        padding: 16px 0;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .competition .table_info li .info_title {
        font-size: 16px;
    }

    .competition .table_info li .info_list .item {
        padding-bottom: 16px;
    }

    .competition .table_info li .info_list .item p::before {
        left: 9px;
        top: 7px;
    }

    .competition .table_info li .info_list .item p {
        font-size: 14px;
        line-height: 22px;
        padding-left: 22px;
    }

    .competition .table_info li .info_list.icn {
        justify-content: center;
        gap: 20px;
    }

    .competition .table_info li .info_list.icn .item {
        width: calc((100% - 40px) / 3);
        padding: 0;
    }

    .competition .table_info li .info_list.icn .item:not(:first-child) {
        padding-left: 0px;
        ;
    }

    .competition .table_info li .info_list.icn .item:nth-child(3n) {
        padding-right: 0;
    }

    .competition .table_info li .info_list.icn .item:last-child {
        padding-right: 0;
    }

    .competition .table_info li .info_list.icn .item:nth-child(3n)::after {
        display: none;
    }

    .competition .table_info li .info_list.icn .item::after {
        top: 47px;
        right: -32px;
    }

    .competition .table_info li .info_list.icn .item .img_box {
        width: 94px;
        margin: 0 auto;
    }




    .competition .table_info .section_title {
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        line-height: 20px;
    }

    .competition .table_info li.chart_btn {
        gap: 16px;
        flex-direction: column;
        padding: 24px 0 0 0;
    }

    .competition .table_info li.chart_btn .top_area {
        flex-direction: column;
        gap: 16px;
        align-items: baseline;
    }

    .competition .table_info li.chart_btn .top_area .btn_wrap {
        padding: 0;
        width: 100%;
    }

    .competition .table_info .info_desc {
        font-size: 14px;
        line-height: 22px;
    }

    .competition .table_info li .info_chart {
        width: 100%;
    }

    .competition .table_info li .info_chart table {
        width: 100%;
    }

    .competition .table_info li .info_chart table th {
        height: 54px;
        font-size: 14px;
        line-height: 22px;
        padding: 16px 24px;
    }

    .competition .table_info li .info_chart table th:not(:last-child),
    .competition .table_info li .info_chart table td:not(:last-child) {
        border-right: 1px solid rgba(29, 31, 37, 0.20);
    }

    .competition .table_info li .info_chart table tr:not(:last-child) {
        border-bottom: 1px solid rgba(29, 31, 37, 0.20);
    }

    .competition .table_info li .info_chart table td {
        padding: 16px 24px;
        font-size: 14px;
        line-height: 22px;
    }

    table.pre_line tr td {
        white-space: pre-line
    }

    .competition .table_info li .info_chart table td i {
        font-style: normal;
        color: #888;
    }

    .competition .table_info li .info_chart table .center {
        text-align: center;
    }

    .competition .table_info li .info_chart table th.short {
        height: 58px;
    }

    .competition .table_info .nolist_content {
        font-size: 14px;
        line-height: 22px;
    }

    .competition .table_info li .info_list.icn .item .text_container .label {
        font-size: 14px;
        line-height: 22px;
    }

    .competition .table_info li .info_list.icn .item .text_container .date {
        font-size: 12px;
        line-height: 20px;
    }
}

/* 드림NN 배너 변형 */
.competition .banner_wrap {
    padding-top: 64px;
    padding-bottom: 160px;
}

.competition .sub_background {
    width: 100%;
    height: 382px;
    position: relative;
}

.competition .sub_background .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.competition .sub_background .bg_img div {
    width: 100%;
    height: 382px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.competition .sub_background .txt_box {
    position: relative;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 3;
}

.competition .sub_background.bk_txt .txt_box {
    color: #1d1f25;
}

.competition .sub_background .txt_box .sb_title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 16px;
}

.competition .sub_background .txt_box p {
    font-size: 18px;
    line-height: 26px;
}

@media screen and (max-width: 768px) {
    .competition .banner_wrap {
        padding-bottom: 80px;
    }

    .competition .sub_background {
        width: 100%;
        height: 340px;
    }

    .competition .sub_background .bg_img div {
        width: 100%;
        height: 100%;
    }

    dation .sub_background .txt_box {
        top: 40%;
        transform: translate(-50%, -50%);
    }

    .competition .sub_background .txt_box .sb_title {
        font-size: 28px;
        line-height: 28px;
    }

    .competition .sub_background .txt_box p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* 공모전 히스토리 페이지 */
.history_outer .inner_1440 {
    padding: 80px 0 0 0;
}

.history_inner {
    display: flex;
    gap: 76px;
    flex-wrap: wrap;
}

.history_inner li {
    position: relative;
    width: 428px;
    /*height: 560px;*/
    border-radius: 4px 4px 0px 0px;
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.20);
}

.history_inner li .hover_box {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(2, 100, 66, 0.90) 0%, rgba(2, 100, 66, 0.90) 100%);
    top: 0;
    left: 0;
    z-index: 2;
    padding: 80px 40px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.history_inner li:hover .hover_box {
    opacity: 1;
    visibility: visible;
}

.history_inner li .hover_box .flex_inner {
    justify-content: space-between;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/*.history_inner li .hover_box h2 {*/
/*    font-size: 32px;*/
/*    font-weight: 700;*/
/*    line-height: 40px;*/
/*    color: #fff;*/
/*    max-width: 248px;*/
/*    white-space: nowrap;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*}*/


.history_inner li .hover_box h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    /*max-width: 248px;*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;

    white-space: normal; /* 줄바꿈 허용 */
    word-break: break-word; /* 긴 단어 줄바꿈 */
}



.history_inner li .hover_box .icn_download {
    width: 40px;
    height: 40px;
    background-image: url(../../img/icn/icn_download_wh.png);
    background-size: 40px 40px;
    display: inline-block;
}

#history_pagination {
    display: none;
}

@media screen and (max-width:768px) {
    .history_outer .inner_1440 {
        padding: 53px 16px 0 16px;
    }

    .history_inner {
        gap: 40px;
    }

    .history_inner li {
        width: 100%;
        ;
        height: auto;
        box-shadow: none;
        ;
    }

    .history_inner li .img_box {
        box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.20);
    }

    .history_inner li .hover_box {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        opacity: 1;
        visibility: visible;
        margin-top: 16px;
        ;
        background-color: transparent;
    }

    .history_inner li .hover_box .flex_inner {
        height: auto;
        align-items: center;
        display: flex;
        flex-direction: row;
    }

    .history_inner li .hover_box h2 {
        font-size: 18px;
        line-height: 26px;
        color: #1d1f25;
    }

    .history_inner li .hover_box .icn_download {
        background-image: url(../../img/icn/icn_download_40.png);
        display: inline-block;
    }
}

#kakaoImg{
    width: 2%;
}

/* 역대수상자 */

#winnerImg{
    width: 30%;
    flex-shrink: 0;
}

.competition .banner_wrap:has(.winners_outer) {
    padding-bottom: 0;
}

.competition .winners_outer {
    width: 100%;
    background: linear-gradient(113deg, rgba(141, 198, 63, 0.10) 0%, rgba(0, 97, 175, 0.10) 64.98%), #FFF;
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.20);
    min-height: 500px;
    margin-top: 80px;
    margin-bottom: 0px;
    padding: 40px 80px 160px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.competition .winners_dropdown {
    position: relative;
    max-width: 872px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.competition .winners_outer .tile_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.competition .winners_outer .tile_wrap li {
    background: #fff;
    padding: 24px;
    display: flex;
    gap: 40px;
    width:calc((100% - 16px) / 2);
}

.competition .winners_outer .tile_wrap li .img_box {
    width: 168px;
    height: 188px;
}

.competition .winners_outer .tile_wrap li .txt_box {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.competition .winners_outer .tile_wrap li .txt_box .title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
}

.competition .winners_outer .tile_wrap li .txt_box .desc_box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem {
    color: #888;
    font-size: 18px;
    line-height: 26px;
    display: flex;
    gap: 16px;
}

.competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem .category {
    width: 78px;
    font-weight: 700;
    color: #1D1F25;
}

.competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem .category::before {
    content: '';
    width: 10px;
    height: 2px;
    background: #026442;
    display: inline-block;
    margin-right: 4px;
    position: relative;
    top: -6px;
}

.competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem .content::before {
    content: '';
    width: 1px;
    height: 16px;
    background: rgba(29, 31, 37, 0.20);
    display: inline-block;
    position: relative;
    top: 2px;
    left: -16px;
    margin-right: -1px;
}

@media screen and (max-width: 768px) {
    #kakaoImg{
        width: 10%;
    }

    #winnerImg{
        width: 90%;
        flex-shrink: 0;
    }
    .competition .winners_outer {
        margin-top: 40px;
        padding: 40px 16px 80px 16px;
    }

    .competition .winners_outer .tile_wrap li {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width:100%;
    }

    .competition .winners_outer .tile_wrap li .txt_box {
        gap: 16px;
    }

    .competition .winners_outer .tile_wrap li .txt_box .title {
        font-size: 16px;
        line-height: 16px;
    }

    .competition .winners_outer .tile_wrap li .txt_box .desc_box {
        gap: 8px;
    }

    .competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem {
        font-size: 14px;
        line-height: 22px;
        gap: 8px;
    }

    .competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem .category::before {
        top: -4px;
    }

    .competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem .content::before {
        top: 4px;
        left: -8px;
    }
    .competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem .category {
        min-width:78px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
    #kakaoImg{
        width: 5%;
    }

    #winnerImg{
        width: 30%;
        flex-shrink: 0;
    }
    .competition .winners_outer {
        margin-top: 40px;
        padding: 40px 16px 80px 16px;
    }

    .competition .winners_outer .tile_wrap li {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width:100%;
    }

    .competition .winners_outer .tile_wrap li .txt_box {
        gap: 16px;
        width: 50%;
    }

    .competition .winners_outer .tile_wrap li .txt_box .title {
        font-size: 16px;
        line-height: 16px;
    }

    .competition .winners_outer .tile_wrap li .txt_box .desc_box {
        gap: 8px;
    }

    .competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem {
        font-size: 14px;
        line-height: 22px;
        gap: 8px;
    }

    .competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem .category::before {
        top: -4px;
    }

    .competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem .content::before {
        top: 4px;
        left: -8px;
    }
    .competition .winners_outer .tile_wrap li .txt_box .desc_box .desc_elem .category {
        min-width:78px;
    }
}

/* 우수학술동아리 */
.history_winner_wrap {
    padding-top:80px;
}
.history_winner_wrap .category_tab .swiper-wrapper {
    justify-content: center;
}
.history_winner_wrap .category_tab .swiper-wrapper button {
    font-family: 'prentendard';
    min-width: 280px;;
}
.history_winner_wrap .category_tab .swiper-wrapper button.active {
    color:#026442;
    font-weight: 700;
}
.history_winner_wrap .cate_con {
    margin-top:80px;
}
.history_winner_wrap .cate_con > div {
    display: none;
}
.history_winner_wrap .cate_con > div.active {
    display: block;
}
.history_winner_wrap .cate_con .div_title h2 {
    font-size:32px;
    font-weight: 700;
    margin-bottom: 18px;
}
.history_winner_wrap .cate_con .div_title p {
    font-size:24px;
    line-height: 120%;
}
.history_winner_wrap .cate_con .cate_item {
    padding:40px 0;
    border-bottom: 1px solid rgba(29, 31, 37, 0.20);
    display:flex;
    gap:40px;
}
.history_winner_wrap .cate_con .cate_item .img_box {
    min-width:160px;
    min-height:160px;
}
.history_winner_wrap .cate_con .cate_item .item_info h4 {
    font-size:18px;
    color:#026442;
    font-weight: 700;
    margin-bottom: 16px;
}
.history_winner_wrap .cate_con .cate_item .item_info p.desc {
    font-size:18px;
    line-height: 26px;
    margin-bottom: 40px;
}
.history_winner_wrap .cate_con .arc_people_btn {
    margin-top:20px;
}
.history_winner_wrap .cate_con .arc_people_btn button {
    font-size:18px;
    font-weight: 700;
    padding-right: 70px;
    position: relative;
}
.history_winner_wrap .cate_con .arc_people_btn button::after {
    content: '';
    width:24px;
    height: 24px;
    position: absolute;
    top:-2px;
    right:0;
    background-image: url(../../img/icn/icn_drop_down.png);
    background-size: 100%;
}
.history_winner_wrap .cate_con .arc_people_btn.open button::after {
    background-image: url(../../img/icn/icn_drop_up.png);
}
.history_winner_wrap .cate_con .arc_people_con {
    background: #F5F9E8;
    padding:16px;
    margin-top:16px;
    display: flex;
    flex-wrap:wrap;
    gap:8px 0px;
}
.history_winner_wrap .cate_con .arc_people_con p {
    font-size:16px;
    width:calc(100% / 4);
    text-align: center;
}
.history_winner_wrap .cate_con .arc_people_con p.green {
    color:#026442;
}
.history_winner_wrap .cate_con .link_btn {
    font-size:18px;
    color:#888;
    border-bottom: 1px solid #888;
}

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

    /* 우수학술동아리 */
    .history_winner_wrap {
        padding-top:40px;
    }
    .history_winner_wrap .category_tab .swiper-wrapper {
        justify-content: flex-start;
    }
    .history_winner_wrap .category_tab .swiper-wrapper button {
        min-width: auto
    }
    .history_winner_wrap .cate_con {
        margin-top:40px;
    }
    .history_winner_wrap .cate_con .div_title h2 {
        font-size:20px;
    }
    .history_winner_wrap .cate_con .div_title p {
        font-size:16px;
        line-height: 120%;
    }
    .history_winner_wrap .cate_con .cate_item {
        padding:40px 0;
        border-bottom: 1px solid rgba(29, 31, 37, 0.20);
        display:flex;
        gap:40px;
        flex-direction: column;
    }
    .history_winner_wrap .cate_con .cate_item .img_box {
        min-width:160px;
        min-height:160px;
        width:100%;
        text-align: center;
    }
    .history_winner_wrap .cate_con .cate_item .item_info h4 {
        font-size:14px;
    }
    .history_winner_wrap .cate_con .cate_item .item_info p.desc {
        font-size:14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .history_winner_wrap .cate_con .arc_people_btn button {
        font-size:14px;
    }
    .history_winner_wrap .cate_con .arc_people_con {
        background: #F5F9E8;
        padding:16px;
        margin-top:16px;
        display: flex;
        flex-wrap:wrap;
        gap:8px 0px;
    }
    .history_winner_wrap .cate_con .arc_people_con p {
        font-size:12px;
        width:calc(100% / 2);
        text-align: center;
    }
    .history_winner_wrap .cate_con .link_btn {
        font-size:14px;
    }
}






