@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, button {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
  box-sizing: border-box;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
  BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
  "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
  "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  letter-spacing: -0.9px;
  font-weight: normal;
  color: #4a4a4a;
}

html {font-size: 62.5%;}

/* btn */
.round-btn{
    display: flex;
    padding: .6rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 99px;
    font-size: 1.4rem;
}
.round-btn.style1{
    border: 1px solid var(--color1D2088);
    color: var(--color1D2088);
}
.round-btn.style2{
    border: 1px solid var(--colorfff);
    color: var(--colorfff);
}
.round-btn.style3{
    border: 1px solid var(--colorE60012);
    color: var(--colorE60012);
}
/* 레이아웃 */
.wrap{
    position: relative;
    max-width: 76.8rem;
    width: 100%;
    overflow: hidden;
}
.logo img{
    width: 100%;
    box-sizing: border-box;
}
/* New main */
.hero-section{
    margin-top: 6rem;
    padding: 0 !important;
}
.hero-section .hero-swiper{
    width: 100%;
    height: 40rem;
    position: relative;
    overflow: hidden;
    background: #0F0F0F;
  }
  
  .hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120%;
  }
  .hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* ← 여기! 가운데 위 기준 */
  }
  .hero-swiper .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: #FFF; /* 필요시 색상 변경 */
    border-radius: 0; /* ← 이거! 동그라미 제거 = 네모 */
    opacity: 0.5;
    margin: 0 .8rem;
  }
  
  .hero-swiper .swiper-pagination-bullet-active {
    background: var(--colorE60012); /* 선택된 bullet 색상 */
    opacity: 1;
  }
  .custom-prev,
  .custom-next {
    width: 3rem;
    height: .5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .custom-prev {
    background-image: url('/css/images/icon-left-arrow.png');
    left: 1rem;
  }
  
  .custom-next {
    background-image: url('/css/images/icon-right-arrow.png');
    right: 1rem;
  }
  
  /* 기본 Swiper 스타일 제거 (중요) */
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
  }
  /* header */
  .new-main .header-banner{
    display: flex;
    width: 100%;
    padding: 1rem 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: #253352;
    }
    .new-main .header-banner > a{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    .new-main .header-banner p{
        color: #FFF;
        font-family: "Gmarket Sans";
        font-size: 1.4rem;
        font-weight: 700;
    }
    .new-main .header-banner div{
        display: flex;
        align-items: center;
    }

    .new-main .header{
        display: flex;
        width: 100%;
        padding: 2rem;
        justify-content: space-between;
        align-items: center;
    }
    .new-main .header .logo{
        max-width: 6rem;
    }

    .header .menu-wrap{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1rem;
    }
    .news-link{
        /* display: flex;
        padding: .6rem 1rem;
        justify-content: center;
        align-items: center;
        gap: 1rem; 
        border-radius: 99rem;
        border: 1px solid #FFF; */

    }
    .news-link a{
        color: #FFF;
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.56px;
    }
    header.new-main{
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 2;
    }
    .nav-wrap{
        display: inline-flex;
        padding: 1rem 3rem;
        justify-content: space-between;
        align-items: center;
        gap: 0rem;
        border-radius: 1rem 1rem 0px 0px;
        background: var(--colorfff);
        box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.15);
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 999;
        max-width: 76.8rem;
    }
    .nav-wrap .nav-item{
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 4px; */
    }
    .nav-wrap .nav-item a{
        color: var(--color0f0f0f);
        text-align: center;
        font-size: 1.2rem;
        font-weight: 400;
        letter-spacing: -0.52px;
    }
    .nav-wrap .nav-item img{
        width: 3rem;
        height: 3rem;
    }


    /* 모바일 메뉴 */
    .m-menu-wrap{
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.20);
        display: none;
        padding-right: 8rem;
        flex-direction: column;
        flex-shrink: 0;
        position: fixed;
        top: 0;
        left: 0;
    }
    .m-menu-wrap.open {
        display: flex; /* 열릴 때 */
      }
    .m-menu-wrap > div{
        width: 100%;
        height: 100vh;
        background: var(--colorfff);
    }
    .m-menu-wrap .sub-menu-header{
        display: flex;
        padding: 2rem 3rem;
        justify-content: space-between;
        align-items: center;
        background: var(--color2C3667);
    }
.m-menu-wrap .login-wrap{
    display: flex;
    padding: 3rem 2rem;
    justify-content: space-between;
    align-items: center;
}
.m-menu-wrap .login-wrap p{
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.8px;
}
.m-menu-wrap .sub-menu{
    padding: 3rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.m-menu-wrap .sub-menu a{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}
.m-menu-wrap .sub-menu a::after{
    content: "";
    display: flex;
    width: .6rem;
    height: .6rem;
    background: var(--colorE60012);
}
.m-menu-wrap .sns-link{
    padding: 3rem;
    position: absolute;
    bottom: 0;
    display: flex;
    gap: 1rem;
}



/* 레이아웃 */
.new_home section{
    display: flex;
    padding: 4rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    align-self: stretch;
    width: 100%;
}
.section-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.section-title h1{
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.88px;
}
.section-title a{
    color: var(--color666);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: -0.64px;
    display: flex;
    align-items: center;
    gap: .2rem;
}
.section-title a::after{
    content: "";
    display: flex;
    align-items: center;
    background: url(/css/images/icon-arrow.png) no-repeat center center;
    background-size: contain;
    width: 1.6rem;
    height: .8rem;
}
.headline{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.headline a {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.72px;
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* 최대 줄 수 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news-detail{
    color: #606060;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
    letter-spacing: -0.56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* 최대 줄 수 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.section-title h1 span{
    color: var(--colorE60012);
    color: #E60012;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.88px;

}
/* 탑 뉴스 */
.top-news{
    background: #0F0F0F;
    /* margin-top: -10rem; */
}
.top-news .section-title h1{
 color: var(--colorfff);
}
.top-news .contents{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    align-self: stretch;
}
.top-news .t-news{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
}

.news-txt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.top-news .news-txt .headline a{
    color: var(--colorfff);
}

/* 이시각뉴스 */
.news-grid{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 2rem;
    align-self: stretch;
    flex-wrap: wrap;
}
.news-grid > .news-item {
    width: calc(50% - 1rem);
  }

  .news-grid img{
    width: 100%;
    height: 10.8rem;
  }

  .news-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    align-self: stretch;
  }
  .news-list .news-item{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
  }
  .news-list .news-item img{
    width: 15rem;
  }
  /* tv 프로그램 */
.program-wrap .tv-swiper{
    width: 100%;
    overflow: visible;
  }
  .tv-swiper .swiper-slide {
    width: 22rem;
    height: auto;
    overflow: hidden;
    box-shadow: 0px 30px 40px 0px rgba(0, 0, 0, 0.15);
  }
  
  .tv-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  section.program-wrap{
    display: flex;
    padding: 4rem 0 8rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
    align-self: stretch;
  }
  section.program-wrap .section-title{
    padding: 0 2rem;
  }

  /* 유튜브 다시보기 */
  .youtube-section{
    background-image: url(/css/images/img-bg-media.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .youtube-section .section-title{
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
  }
  .youtube-section .section-title h1{
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.88px;
    color: var(--colorfff);
  }
  .youtube-section .section-title h1 span{
    background: linear-gradient(91deg, #7740C5 0.5%, #C44343 57.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  /*  */
  .youtube-swiper {
    width: 100%;
    overflow: hidden;
  }
  
  .youtube-swiper .swiper-wrapper {
    display: flex !important;
  }
  
  .youtube-swiper .swiper-slide {
    width: 30rem;
    flex-shrink: 0;
  }
  
  
  .youtube-swiper .news-item {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .youtube-swiper .news-item > a{
    width: 100%;
  }
  .youtube-swiper .news-item img {
    width: 100%;
    display: block;
  }

  .youtube-swiper .headline a{
    color: var(--colorfff);
  }

  .new-media{
    display: flex;
    padding: 2rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    border-radius: 2rem;
    background: rgba(41, 46, 54, 0.60);
    backdrop-filter: blur(10px);
  }
  .new-media .title{
    color: var(--colorfff);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.88px;
    display: flex;
    padding: 1rem 2rem;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
  }
  .new-media .title span{
    color: var(--colorE60012);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.88px;
    margin-right: 0.1rem;
  }
  .new-media .container{
    display: flex;
    padding: 0 2rem;
    align-items: center;
    gap: 1rem;
    align-self: stretch;
    flex-wrap: nowrap;
    width: calc(100vw - 4rem);
    overflow-x: scroll;
  }
  .new-media .nm-item{
    display: flex;
    width: 8rem;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .new-media .nm-item > a{
    color: #FFF;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 200;
    letter-spacing: -0.56px;
  }

  /* 공지사항 */
.notice .main-news{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.notice .main-news .date{
    display: flex;
    width: 8.8rem;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    background: var(--colorE60012);
    height: 6.8rem;
}
.notice .main-news .date h2{
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.96px;
}
.notice .main-news .date p{
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.56px;
}
.notice .main-news{
    
}
.notice .main-news .contents{
    display: flex;
    height: 6.8rem;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
    flex: 1 0 0;
    background: #EAEAEA;
}

.notice .main-news .contents a{
    color: #101010;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.64px;
}

.notice .main-news{
    
}
.noti-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}
.noti-list .nt-item{
    display: flex;
    padding: 1.6rem 0;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid #EAEAEA;
    background: #FFF;
}
.noti-list .nt-item a{
    color: #101010;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.64px;
}
.noti-list .nt-item span{
    color: #909090;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.56px;
}
/* 이벤트 섹션 */
section.event-section{
    /* display: flex; */
    /* height: 45rem; */
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    background: linear-gradient(117deg, #493189 -8.84%, #8D4247 92.96%);
    width: 100%;
    padding: 4rem 2rem 16rem 2rem;
}
.event-section .swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .event-swiper .swiper-wrapper {
    /* width: 100%; */
  }
  
  .event-swiper .swiper-slide {
    /* width: 20rem; */
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .event-swiper .swiper-slide img {
    width: 100%;
    display: block;
  }

  .event-section .section-title h1{
    color: var(--colorfff);
  }
  




  /* 0721 추가 */
  /* header 수정 */
header.wh .logo-wh{
  display: flex;
}
header.wh .logo-normal{
  display: none;
}
header.bg .logo-wh{
  display: none;
}
header.bg .logo-normal{
  display: flex;
}

header.wh .round-btn{
  border: 1px solid var(--colorfff);
  color: var(--colorfff);
}
header.bg .round-btn{
  border: 1px solid var(--colorE60012);
  color: var(--colorE60012);
}
header.wh .menu-wh{
  display: flex;
 
}
header.wh .menu-bg{
  display: none;

}
header.bg .menu-wh{
  display: none;

}
header.bg .menu-bg{
  display: flex;

}
.menu-icon svg {
  pointer-events: none;
}

.wrap .tjb-news .pgwrap {
  padding-top: 0!important;
}

/* 0725 추가 */
.live_link a{
  display: flex;
  gap:1rem;
}
.live_link a::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9px;
  background-color: var(--colorE60012);
  display: flex;
}

.search_icon{
  width: 3.2rem;
  height: 3.2rem;
}