@charset "UTF-8";

.mainView {
    padding-top: 30px;
}
.mainView-cont {
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    height: 500px;
}
.mainView .swiper {
    width: 100%;
}
.mainView .swiper-wrapper {

}
.mainView .swiper-slide-img {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../../images/eng/main/mainVIew_default.svg);
}
.mainView-cont {
    position: relative;
}
.mainView .swiper-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    align-items: center;
    justify-content: flex-start;
    background-color: #2d2d2d;
    padding-right: 266px;
}
.mainView .swiper-slide-info .subtit {
    color:  #FFF;
    font-size: 18px;
    font-family: "NotoSerifKR";
    font-weight: 700;
    line-height: 150%; /* 48px */
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.mainView .swiper-info {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #075D5D;
    background-image: url(../../images/eng/main/img_main-info_bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    z-index: 1;
    width: 226px;
}
.mainView .swiper-info .swiper-controller {
    height: 100%;
}
.mainView .swiper-info .subtit {
    color:  #FFF;
    font-size: 32px;
    font-family: "NotoSerifKR";
    font-weight: 700;
    line-height: 150%; /* 48px */
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.mainView .swiper-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    color: #FFF;
    font-family: "NotoSerifKR";
    font-size: 17px;
    font-weight: 400;
    position: relative;
    margin-top: 16px;
    line-height: 20px;

    &:hover,
    &:focus {
        text-decoration: underline;
    }
}
.mainView .swiper-link:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../images/eng/main/ico_link_arrow_white.svg);
}
/* .mainView .swiper-controller {
    margin-top: 16px;
} */
.mainView .swiper-pagination {
    width: 35px;
    height: 32px;
    color: #fff;
}
.mainView .swiper-pagination.swiper-pagination-fraction .swiper-pagination-current {
    color: #00ffff;
}
.mainView .swiper-pagination-total {
    color: #fff;
}
.mainView .swiper-button {
    display: flex;
    gap: 4px;
}
.mainView .swiper-button-next,
.mainView .swiper-button-prev {
    position: relative;
    margin-top: 0;
}
.mainView [class^=swiper-button-] {
    width: 32px;
    height: 32px;
    background-color: initial;
    border: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.mainView [class^=swiper-button-]:after {
    display: flex;
}
.mainView [class^=swiper-button-]:hover,
.mainView [class^=swiper-button-]:focus {
    background: #fff;
}
.mainView .swiper-button-prev:after {
    background-image: url(../../images/main/icon_prev_white.svg);
}
.mainView .swiper-button-prev:hover:after,
.mainView .swiper-button-prev:focus:after {
    background-image: url(../../images/main/icon_prev_green.svg);
}
.mainView .swiper-button-next:after {
    background-image: url(../../images/main/icon_next_white.svg);
}
.mainView .swiper-button-next:hover:after,
.mainView .swiper-button-next:focus:after {
    background-image: url(../../images/main/icon_next_green.svg);
}
.mainView .swiper-button-autoplay.stop:after {
    background-image: url(../../images/main/icon_stop_white.svg);
}
.mainView .swiper-button-autoplay.stop:hover:after,
.mainView .swiper-button-autoplay.stop:focus:after {
    background-image: url(../../images/main/icon_stop_green.svg);
}
.mainView .swiper-button-autoplay.play:after {
    background-image: url(../../images/main/icon_play_white.svg);
}
.mainView .swiper-button-autoplay.play:hover:after,
.mainView .swiper-button-autoplay.play:focus:after {
    background-image: url(../../images/main/icon_play_green.svg);
}

.mainView .swiper-slide.null .swiper-slide-img {
    background-image: none;
    background-color: #f0f0f0;
}

/* tablet */
@media screen and (max-width: 1024px) {
    .mainView {
        padding-top: 40px;
    }
    .mainView-cont {
        flex-direction: column;
        height: auto;
    }
    .mainView .swiper {
        height: 0;
        padding-bottom: 45.25%;
    }
    .mainView .swiper-wrapper {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .mainView .swiper-slide-info {
        padding: 0 30px;
    }
}

/* mobile */
@media screen and (max-width: 767px) {
    .mainView {
        padding-top: 16px;
    }
    .mainView .swiper {
        height: 0;
        padding-bottom: 73%;
    }
    .mainView .swiper-slide-info {
        height: 68px;
        padding: 0 16px;
        padding-right: 84px;
    }
    .mainView .swiper-info {
        width: 68px;
        height: 68px;
    }
    .mainView .swiper-info .swiper-controller {
        gap: 0;
    }
    .mainView .swiper-pagination,
    .mainView .swiper-button-prev,
    .mainView .swiper-button-next {
        visibility: hidden;
        height: 0;
        width: 0;
    }
}

/* pressReleases */
.pressReleases {
    padding-top: 40px;
    padding-bottom: 40px;
}
.pressReleases-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-bottom: 20px;
}
.pressReleases-top .tit {
    font-family: "NotoSerifKR";
    font-size: 32px;
    font-weight: 700;
}
.pressReleases-top .more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1D1D1D;
    font-family: "NotoSerifKR";
    font-size: 17px;
    font-weight: 400;
    position: relative;

    &:hover,
    &:focus {
        text-decoration: underline;
        text-underline-position: under;
    }
}
.pressReleases-top .more:after {
    content: '';
    display: inline-flex;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../images/eng/main/ico_link_arrow_black.svg);
}
.pressReleases .pressReleases-cont {}
.pressReleases .swiper {
    width: calc(100% + 24px);
    margin: 0 -12px;
}
.pressReleases .swiper-wrapper {
    width: 100% !important;
}
.pressReleases .swiper-slide {
    width: 25%;
    padding: 0 12px;
}
.pressReleases .pressReleases-list {
    display: flex;
    padding: 30px;
    height: 189px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1 0 0;
    border-radius: 20px;
    border: 1px solid #C6C6C6;

    &:hover .pressReleases-list-cont-subject,
    &:focus .pressReleases-list-cont-subject {
        text-decoration: underline;
        text-underline-position: under;
        text-decoration-thickness: 2px;
    }
}
.pressReleases .pressReleases-list-cont-subject {
    font-size: 19px;
    font-weight: 700;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.pressReleases  .pressReleases-list-bot-date {
    color: #717171;
    font-size: 15px;
    font-weight: 400;
}
.pressReleases .swiper-slide.null:nth-child(1) {
    width: 100% !important;
}
.pressReleases .swiper-slide.null:nth-child(2) {
    width: 75% !important;
}
.pressReleases .swiper-slide.null:nth-child(3) {
    width: 50% !important;
}
.pressReleases .swiper-slide.null .null {
    display: flex;
    height: 189px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 20px;
    border: 1px solid #D8D8D8;
    background: #F8F8F8;
}
.pressReleases .swiper-slide.null .null .noData {
    overflow: hidden;
    color: #717171;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.85px;
    padding-top: 48px;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(../../images/eng/main/ico_nodata.svg);
}

/* tablet */
@media screen and (max-width: 1024px) {
    .pressReleases .swiper-slide {
        width: 50%;
    }
    .pressReleases .swiper-slide.null:nth-child(2),
    .pressReleases .swiper-slide.null:nth-child(4) {
        width: 50% !important;
    }
    .pressReleases .swiper-slide.null:nth-child(3) {
        display: none;
    }
}

/* mobile */
@media screen and (max-width: 767px) {
    .pressReleases {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .pressReleases-top {
        margin-bottom: 8px;
    }
    .pressReleases-top .tit {
        font-size: 19px;
    }
    .pressReleases-top .more {
        font-size: 15px;
    }
    .pressReleases .swiper-wrapper {
        width: 100% !important;
        height: 302px;
    }
    .pressReleases .swiper-slide {
        width: 100%;
    }
    .pressReleases .swiper-slide.null:nth-child(1) {
        height: 302px !important;
        & .null {
            height: 100%;
        }
    }
    .pressReleases .swiper-slide.null:nth-child(2),
    .pressReleases .swiper-slide.null:nth-child(4) {
        width: 100% !important;
    }
    .pressReleases .pressReleases-list {
        height: 141px;
        padding: 16px;
    }
    .pressReleases .pressReleases-list-cont-subject {
        font-size: 17px;
    }
}

/* photh news */
.photoNews {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #D9D9D9;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../../images/eng/main/img_phothnews_bg.png);
}
.photoNews .photoNews-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-bottom: 20px;
}
.photoNews .photoNews-top .tit {
    color: #1D1D1D;
    font-family: "NotoSerifKR";
    font-size: 32px;
    font-weight: 700;
}
.photoNews .photoNews-top .more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1D1D1D;
    font-family: "NotoSerifKR";
    font-size: 17px;
    font-weight: 400;
    position: relative;

    &:hover,
    &:focus {
        text-decoration: underline;
        text-underline-position: under;
    }
}
.photoNews .photoNews-top .more:after {
    content: '';
    display: inline-flex;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../images/eng/main/ico_link_arrow_black.svg);
}
.photoNews .photoNews-cont {

}
.photoNews .swiper {
    width: calc(100% + 24px);
    margin: 0 -12px;
}
.photoNews .swiper-slide {
    width: 25%;
    padding: 0 12px;
}
.photoNews .swiper-slide.null:nth-child(1) {
    width: 100% !important;
}
.photoNews .swiper-slide.null:nth-child(2) {
    width: 75% !important;
}
.photoNews .swiper-slide.null:nth-child(3) {
    width: 50% !important;
}
.photoNews .swiper-slide .photoNews-list {
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #c6c6c6;

    &:hover .photoNews-list-subject,
    &:focus .photoNews-list-subject {
        text-decoration: underline;
        text-underline-position: under;
        text-decoration-thickness: 2px;
    }
}
.photoNews .swiper-slide .photoNews-list .imgbox {
    height: 200px;
    position: relative;
}
.photoNews .swiper-slide .photoNews-list .imgbox > .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../../images/eng/main/img_photonews_default.png);
}
.photoNews .swiper-slide .photoNews-list .infobox {
    background-color: #fff;
    padding: 20px;
}
.photoNews .swiper-slide .photoNews-list .photoNews-list-subject {
    height: 57px;
    font-size: 19px;
    font-weight: 700;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.photoNews .swiper-slide .photoNews-list .photoNews-list-date {
    display: inline-flex;
    align-items: center;
    color: #717171;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}
.photoNews .swiper-slide.null .photoNews-list {
    display: flex;
    height: 331px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    background-color: #F8F8F8;
}
.photoNews .swiper-slide.null .photoNews-list .noData {
    overflow: hidden;
    color: #717171;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.85px;
    padding-top: 48px;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(../../images/eng/main/ico_nodata.svg);
}
/* tablet */
@media screen and (max-width: 1024px) {
    .photoNews .swiper-slide {
        width: 50%;
    }
    .photoNews .swiper-slide.null:nth-child(2),
    .photoNews .swiper-slide.null:nth-child(4) {
        width: 50% !important;
    }
    .photoNews .swiper-slide.null:nth-child(3) {
        display: none;
    }
}

/* mobile */
@media screen and (max-width: 767px) {
    .photoNews {
        padding: 24px 0;
    }
    .photoNews .photoNews-top .tit {
        font-size: 19px;
    }
    .photoNews .photoNews-top .more {
        font-size: 15px;
    }
    .photoNews .swiper-wrapper {
        width: 100% !important;
        height: 682px;
    }
    .photoNews .swiper-slide {
        width: 100%;
    }
    .photoNews .swiper-slide.null:nth-child(1) {
        height: 678px !important;
        & .photoNews-list {
            height: 100%;
        }
    }
    .photoNews .swiper-slide.null:nth-child(2),
    .photoNews .swiper-slide.null:nth-child(4) {
        width: 100% !important;
    }
}


/* minister + newsboard */
.mini-news {
    padding-top: 40px;
    padding-bottom: 40px;
}
.mini-news .inner > div {
    display: flex;
    gap: 80px;
}
.minister {
    width: 600px;
    flex: 1;
    border-radius: 20px;
    border: 1px solid #C6C6C6;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 34.76%, rgba(0, 0, 0, 0.70) 100%), url(../../images/eng/main/img_minister_bg.png) lightgray 50% / cover no-repeat;
    padding: 40px;
}
.minister-tit {
    color: #FFF;
    font-family: "NotoSerifKR";
    font-size: 17px;
    font-weight: 400;
}
.minister-name {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}
.minister-cont {
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-size: 17px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
}
.minister-btn-list {
    margin-top: 20px;
}
.minister-btn-list > ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.minister-btn-list > ul > li {}
.minister-btn-list > ul > li > a {
    position: relative;
    display: flex;
    width: 232px;
    height: 48px;
    padding: 0px 24px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: #097C7C;
    color: #fff;

    &:after {
        content: "";
        display: inline-flex;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url(../../images/component/common/ico_minister-link_arrow_white.svg);

    }

    &:hover,
    &:focus {
        background: #fff;
        color: #1d1d1d;
        &:after {
            background-image: url(../../images/component/common/ico_minister-link_arrow_black.svg);
        }
    }


}

.newsBoard {
    width: calc(100% - 680px);
}
.newsBoard-top {
    display: flex;
    height: 48px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-bottom: 20px;
}
.newsBoard-tit {
    font-family: "NotoSerifKR";
    font-size: 32px;
    font-weight: 700;
}
.newsBoard-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1D1D1D;
    font-family: "NotoSerifKR";
    font-size: 17px;
    font-weight: 400;
    position: relative;

    &:hover,
    &:focus {
        text-decoration: underline;
        text-underline-position: under;
    }

    &:after {
        content: '';
        display: inline-flex;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url(../../images/eng/main/ico_link_arrow_black.svg);
    }
}
.newsBoard-cont {
    display: flex;
    padding: 24px 0px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid #C6C6C6;
    background: #FFF;
    padding: 16px;
    height: 268px;
}
.newsBoard-board {
    table-layout: fixed;
    width: 100%;
}
.newsBoard-board tbody {}
.newsBoard-board tbody tr {
    cursor: pointer;
    &:hover td.subject,
    &:focus td.subject {
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-position: under;
    }
}
.newsBoard-board tbody tr td {
    padding: 16px 8px;
    border-bottom: 1px solid #d8d8d8;
}
.newsBoard-board tbody tr:last-child td {
    border-bottom: none;
}
.newsBoard-board tbody tr td > p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}
.newsBoard-board tbody tr td.subject p {
    position: relative;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    padding-left: 19px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.newsBoard-board tbody tr td.subject p::before {
    position: absolute;
    top: 11px;
    left: 9px;
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #555;
}
.newsBoard-board tbody tr td.date p {
    color: #555;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: 400;
}

.newsBoard-cont:has(.noData) {
    padding: 0;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsBoard-cont .noData  {
    overflow: hidden;
    color: #717171;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.85px;
    padding-top: 48px;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(../../images/eng/main/ico_nodata.svg);
}
/* tablet */
@media screen and (max-width: 1024px) {
    .mini-news {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .mini-news .inner > div {
        flex-direction: column;
        gap: 60px;
    }
    .minister {
        width: 100%;
    }
    .newsBoard {
        width: 100%;
    }
}

/* mobile */
@media screen and (max-width: 767px) {
    .mini-news {
        padding: 24px 0;
    }
    .mini-news .inner > div {
        gap: 24px;
    }
    .minister {
        padding: 24px;
    }
    .minister-tit {
        font-size: 15px;
    }
    .minister-name {
        font-size: 21px;
    }
    .minister-cont {
        font-size: 15px;
    }
    .minister-btn-list {
        margin-top: 17px;
    }
    .minister-btn-list > ul {
        gap: 4px;
    }
    .minister-btn-list > ul > li > a {
        width: 152px;
        font-size: 15px;
        padding: 0 16px;
    }
    .newsBoard-top {
        height: auto;
        margin-bottom: 8px;
    }
    .newsBoard-tit {
        font-size: 19px;
    }
    .newsBoard-more {
        font-size: 15px;
    }
    .newsBoard-cont {
        border-radius: 12px;
        padding: 8px 16px;
        height: auto;
    }
    .newsBoard-board tbody tr td {
        padding: 8px;
    }
    .newsBoard-board tbody tr td.subject p {
        font-size: 15px;
    }
    .newsBoard-board tbody tr td.date p {
        font-size: 13px;
    }
}

/* (영문) 갤러리 게시판 */
.type_gallery .text .title {
    height: 51px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: initial;
}