@charset "utf-8";

/* Main Visual */
.section_mv {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 1080px;
    overflow: hidden;
    padding: 0 !important;
}

.section_mv .mv_slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.section_mv .mv_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.section_mv .mv_slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.section_mv .mv_slide.leaving {
    opacity: 0;
    visibility: visible;
    z-index: 1;
}

.section_mv .mv_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section_mv .mv_slide.active .mv_bg {
    animation: mvZoom 6s ease-out forwards;
}

@keyframes mvZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1);
    }
}

.section_mv .mv_content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: flex-start;
}

.section_mv .mv_content .inner {
    padding-top: 64px;
}

.section_mv .mv_text_box {
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.section_mv .mv_slide.active .mv_text_box .eyebrow {
    animation: mvFadeUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.section_mv .mv_slide.active .mv_text_box .title {
    animation: mvFadeUp 0.6s ease forwards;
    animation-delay: 0.35s;
    opacity: 0;
}

.section_mv .mv_slide.active .mv_text_box .desc {
    animation: mvFadeUp 0.6s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.section_mv .mv_slide.active .mv_text_box .mv_btn {
    animation: mvFadeUp 0.6s ease forwards;
    animation-delay: 0.65s;
    opacity: 0;
}

@keyframes mvFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section_mv .eyebrow {
    color: #EAEBED;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section_mv .title {
    color: #fff;
    font-size: 75px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.section_mv .desc {
    color: #fff;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.9;
}

.section_mv .mv_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: #00B8FC;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}

.section_mv .mv_btn:hover {
    background: #33c9fd;
    transform: translateY(-2px);
}

/* Main Visual Wrap */
.mv_wrap {
    position: relative;
    /* margin: 0 auto; */
    margin-top: 60px;
    /* max-width: 1920px; */

}

/* Main Visual Thumb */
.section_mv_thumb {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 22px 0 !important;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%); */
    margin: 40px 0 72px 0;
}

.section_mv_thumb .mv_thumb_swiper {
    overflow: hidden;
}

.section_mv_thumb .mv_thumb_swiper .swiper-slide {
    width: calc((100% - 60px) / 4);
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.section_mv_thumb .mv_thumb_swiper .swiper-slide.active,
.section_mv_thumb .mv_thumb_swiper .swiper-slide:hover {
    opacity: 1;
}

.section_mv_thumb .thumb_img {
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: #fff;
}

.section_mv_thumb .thumb_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section_mv_thumb .thumb_progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.section_mv_thumb .thumb_progress_bar {
    height: 100%;
    width: 0%;
    background: #00B8FC;
}



@media all and (max-width: 1200px) {
    .section_mv .title {
        font-size: 56px;
    }

    .section_mv .desc {
        font-size: 16px;
    }

    .section_mv .mv_text_box {
        max-width: 480px;
    }
}



@media all and (max-width: 1080px) {
    .mv_wrap  {
        margin-top: 64px;
    }
}

@media all and (max-width: 768px) {
    .section_mv {
        height: auto;
        max-height: none;
    }

    .section_mv .mv_content .inner {
        padding-top: 48px;
    }

    .section_mv .title {
        font-size: 30px;
    }

    .section_mv_thumb {
        margin-top: 10px;
    }

    .section_mv .eyebrow {
        font-size: 14px;
    }

    .section_mv .desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .section_mv .mv_btn {
        padding: 12px 30px;
        font-size: 13px;
    }

    .section_mv .mv_text_box {
        max-width: 100%;
        gap: 12px;
    }

    .section_mv_thumb {
        position: static;
        background: #111;
        padding: 16px 0 !important;
    }

    .section_mv_thumb .mv_thumb_swiper .swiper-slide {
        width: calc((100% - 12px) / 2);
        opacity: 0.6;
    }

    .section_mv_thumb .thumb_img {
        aspect-ratio: 16 / 9;
    }
}

@media all and (max-width: 650px) {


    .section_mv .title {
        font-size: 30px;
    }

    .section_mv .desc {
        font-size: 13px;
    }
}

/* Common */
.common_title {
    color: #fff;
    font-size: 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 0.96;
}

.section {
    padding: 72px 0;
}




/* Series */
.section_series {
    background: #111;
}

.section_series .common_title {
    margin-bottom: 36px;
}


.section_series .swiper-slide {
    min-width: 0;
}

.section_series .swiper-slide a {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section_series .card_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.section_series .card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.section_series .swiper-slide a:hover .card_img img {
    transform: scale(1.05);
}

.section_series .card_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 8px 16px;
}

.section_series .card_info .name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.section_series .card_info .name .point {
    color: #00B8FC;
}

.section_series .card_info .desc {
    color: #EAEBED;
    font-size: 14px;
    font-weight: 300;
}

.section_series .card_info .more {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.common_scrollbar {
    position: relative !important;
    margin-top: 36px;
    height: 4px !important;
    border-radius: 8px;

    left: unset !important;
}

.common_scrollbar .swiper-scrollbar-drag {
    background: #00B8FC;
    border-radius: 8px;
    cursor: grab;
}

.common_scrollbar .swiper-scrollbar-drag:active {
    cursor: grabbing;
}

/* Category */
.section_category {
    background: #111;
}

.section_category .common_title {
    margin-bottom: 36px;
}

.section_category .swiper-slide {
    min-width: 0;
}

.section_category .swiper-slide a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section_category .cate_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #323131;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px;
}

.section_category .cate_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.section_category .swiper-slide a:hover .cate_img img {
    transform: scale(1.05);
}

.section_category .cate_name {
    color: #F5F5F5;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

@media all and (max-width: 1200px) {
    .common_title {
        font-size: 26px;
    }

    .section_series .common_title {
        margin-bottom: 48px;
    }

}

@media all and (max-width: 768px) {
    .common_title {
        font-size: 22px;
    }

    .section_series .common_title {
        margin-bottom: 32px;
    }

  

    .section_series .common_title {
        margin-bottom: 10px;
    }

    .section_category .cate_name {
        font-size: 14px;
    }
}

@media all and (max-width: 480px) {
    .common_title {
        font-size: 19px;
    }
}

/* top banner */

.main_banner {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    
}


.main_banner.small {
    aspect-ratio: 1 / 0.225;
    width: 100%;
    max-height: 432px;
}

.main_banner.big {
    aspect-ratio: 1 / 0.3541666;
    width: 100%;
    max-height: 680px;
}

.main_banner img {
    width: 100%;
    height: 100%;
}

/* html {
    max-width: 1920px;
    margin: 0 auto;
} */



/* notice */
.section_notice .notice_head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.section_notice .view_all {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	font-family: 'Pretendard', sans-serif;
}

.section_notice .notice_list {
	margin-top: 36px;
}

.section_notice .notice_list li {
	border-bottom: 1px solid #fff;
}

.section_notice .notice_list li:first-child {
	border-top: 1px solid #fff;
}

.section_notice .notice_list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 28px 18px;
}

.section_notice .notice_list .title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	font-family: 'Pretendard', sans-serif;
}

.section_notice .notice_list .date {
	font-size: 16px;
	font-weight: 700;
	color: #888;
	font-family: 'Pretendard', sans-serif;
	flex-shrink: 0;
}


.notice_flex_box {
    flex: 1;
    padding: 144px 0 80px 0;
}

.section_notice .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 768px) {
	.section_notice .notice_list li a {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 20px 10px;
	}

    .notice_flex_box {
        padding: 30px 0;
    }
}


/* Section Series Promo — 가로 swiper 배치 (section_series 와 동일 형태) */
.section_series_promo .series_promo_swiper {
    width: 100%;
}

.section_series_promo .swiper-slide {
    min-width: 0;
    height: auto;
}

.section_series_promo .card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    min-width: 0;
    height: 100%;
    border-radius: 4px;
}

.section_series_promo .card_dark {
    color: #fff;
}

.section_series_promo .card .image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.section_series_promo .card .image .bg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.section_series_promo .card:hover .image .bg {
    transform: scale(1.05);
}

.section_series_promo .card .info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: space-between;
    min-width: 0;
    min-height: 120px;
}

.section_series_promo .card .text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.section_series_promo .card .title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.section_series_promo .card .desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.section_series_promo .card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 26px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid currentColor;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    box-sizing: border-box;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.section_series_promo .card:hover .btn {
    background-color: #000;
    color: #fff;
}

.section_series_promo .card_dark:hover .btn {
    background-color: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .section_series_promo .card .info {
        padding: 16px;
        min-height: 100px;
    }

    .section_series_promo .card .btn {
        width: 90px;
        height: 32px;
        font-size: 13px;
    }

    .section_series .common_title {
        margin-bottom: 10px;
    }

    .section_notice .notice_list {
        margin-top: 20px;
    }
}