@charset "UTF-8";
#ui_wrap {
  overflow: hidden;
}

.section-inner {
  max-width: 1728px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.section-wrap {
  display: grid;
  grid-template-columns: 22.9745% 48.263% 24.1319%;
  grid-template-rows: repeat(8, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin: 0 auto;
  max-width: 1728px;
  gap: 40px 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.section-wrap .section-item-1 {
  grid-area: 1/1/3/2;
}
.section-wrap .section-item-2 {
  grid-area: 1/2/3/3;
}
.section-wrap .section-item-3 {
  grid-area: 1/3/2/4;
}
.section-wrap .section-item-4 {
  grid-area: 2/3/3/4;
}
.section-wrap .section-item-5 {
  grid-area: 3/1/4/4;
}
.section-wrap .section-item-6 {
  grid-area: 4/1/5/3;
}
.section-wrap .section-item-7 {
  grid-area: 4/3/5/4;
}
.section-wrap .section-item-8 {
  grid-area: 5/1/6/4;
}
.section-wrap .section-item-9 {
  grid-area: 6/1/7/2;
}
.section-wrap .section-item-10 {
  grid-area: 6/2/7/3;
}
.section-wrap .section-item-11 {
  grid-area: 6/3/7/4;
}
.section-wrap .section-item-12 {
  grid-area: 7/1/8/4;
}
.section-wrap .section-item-13 {
  grid-area: 8/1/9/3;
}
.section-wrap .section-item-14 {
  grid-area: 8/3/9/4;
}

.main-section .more {
  position: relative;
  padding-right: 40px;
}
.main-section .more::before {
  content: "";
  width: 32px;
  height: 32px;
  background: no-repeat center/auto auto;
  background-image: url(../img/main/title_more.png);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-section .more:hover::before {
  -webkit-animation: leftMove 0.3s;
          animation: leftMove 0.3s;
}
@-webkit-keyframes leftMove {
  0% {
    right: 0;
  }
  50% {
    right: -5px;
  }
  100% {
    right: 0;
  }
}
@keyframes leftMove {
  0% {
    right: 0;
  }
  50% {
    right: -5px;
  }
  100% {
    right: 0;
  }
}

.playBtn {
  position: absolute;
  width: 72px;
  height: 72px;
  right: 24px;
  bottom: 24px;
  display: block;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(4.7999997139px);
          backdrop-filter: blur(4.7999997139px);
  border: 1px solid var(--TVchosun-A-alpha-W80);
}
.playBtn::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/svg/play_btn_arrow.svg) 50% 50% no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  row-gap: 28px;
}
.item-list li {
  position: relative;
  width: 100%;
  max-width: 397px;
}
.item-list li .vd-link:hover .thumb-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}
.item-list li .vd-link .thumb-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.item-list li .vd-link .thumb-box img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.item-list li .vd-link .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.item-list li .vd-link .info-box .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
}
.item-list li .vd-link .info-box .subtxt {
  font-size: 15px;
  color: var(--TVchosun-A-gray-gray500);
}
.item-list li .playBtn {
  position: absolute;
  width: 44px;
  height: 44px;
  right: 15px;
  bottom: 15px;
  display: block;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--TVchosun-A-alpha-W80);
  background-color: var(--TVchosun-A-alpha-W24);
}
.item-list li .playBtn::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/svg/play_btn_arrow.svg) 50% 50% no-repeat;
  background-size: 11px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.news-item .img-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.news-item .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.news-item .img-box .badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
  padding: 8px 24px;
  border-radius: 9999px;
  border: 1px solid var(--TVchosun-A-red-red200);
  background: var(--TVchosun-A-white100);
  color: var(--TVchosun-A-red-red400);
  font-weight: 700;
  font-size: 20px;
}
.news-item .img-box img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.news-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.news-item .txt-box {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.banner-wrap .slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-wrap .slider-container .slider-status-button {
  display: none;
}
.banner-wrap .slider-container .left-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 27.8125vw;
  padding: 3.3333vw 5vw;
  background-size: contain;
}
.banner-wrap .slider-container .right-box {
  width: 72.1875vw;
}
.banner-wrap .slider-container .right-box .slick-slide img {
  width: 100%;
  height: 100%;
}
.banner-wrap .slider-container .right-box .slick-slide .playBtn {
  bottom: auto;
  right: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.banner-wrap .slider-container .b-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
}
.banner-wrap .slider-container .b-logo p {
  position: relative;
  padding: 0.6px 25px 0.6px 20px;
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  background: var(--TVchosun-A-white100);
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--TVchosun-A-red-red900);
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-wrap .slider-container .b-logo p::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-wrap .slider-container .b-logo p:first-child::before {
  content: "뉴스";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: var(--TVchosun-A-red-red900);
  position: absolute;
  left: 1px;
  top: 1px;
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  color: var(--TVchosun-A-white100);
}
.banner-wrap .slider-container .b-logo p:last-child {
  margin-left: -15px;
}
.banner-wrap .slider-container .title-slider .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--TVchosun-A-white100);
  font-size: 36px;
  font-weight: 700;
  margin: 20px 0;
}
.banner-wrap .slider-container .image-slider, .banner-wrap .slider-container .title-slider {
  width: 100%;
  height: 100%;
}
.banner-wrap .slider-container .image-slider .slider-wrapper, .banner-wrap .slider-container .title-slider .slider-wrapper {
  width: 100%;
  height: 100%;
}
.banner-wrap .slider-container .image-slider .slick-track, .banner-wrap .slider-container .title-slider .slick-track {
  width: 100%;
  height: 100%;
}
.banner-wrap .slider-container .image-slider .slick-list, .banner-wrap .slider-container .title-slider .slick-list {
  width: 100%;
  height: 100%;
}
.banner-wrap .slider-container .article-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px 0;
}
.banner-wrap .slider-container .article-more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  position: relative;
  color: var(--TVchosun-A-white100);
  font-size: 15px;
}
.banner-wrap .slider-container .article-more a::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/ico/arrow_white.png) 50% 50% no-repeat;
  background-size: 6px;
}
.banner-wrap .slider-counter {
  margin-bottom: 16px;
  color: var(--TVchosun-A-alpha-W60);
}
.banner-wrap .slider-counter .current-slide {
  color: var(--TVchosun-A-white100);
}
.banner-wrap .slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.banner-wrap .slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.banner-wrap .slider-pagination .bullet {
  background: yellow;
  width: 20px;
  height: 8px;
  border-radius: 0;
  background: var(--TVchosun-A-white100);
  opacity: 0.4;
  cursor: pointer;
}
.banner-wrap .slider-pagination .bullet.active {
  width: 80px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  opacity: 1;
}
.banner-wrap .slider-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-wrap .slider-button-group .slider-button-next, .banner-wrap .slider-button-group .slider-button-prev {
  position: relative;
  width: 24px;
  height: 24px;
  font-size: 0;
  background: url(../img/ico/banner-swiper-arrow.png) 50% 50% no-repeat;
}
.banner-wrap .slider-button-group .slider-button-prev {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.banner-wrap .image-slider .slick-slide {
  position: relative;
}
.banner-wrap .newsflash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 10;
  font-size: 48px;
  color: #BD001D;
  font-weight: 700;
}
.banner-wrap .newsflash::before {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background: #BD001D;
  border-radius: 9999px;
}
.banner-wrap.type01 {
  width: 100%;
  height: 90px;
  position: relative;
  background: var(--TVchosun-A-red-red900);
}
.banner-wrap.type01 .slider-counter {
  display: none;
}
.banner-wrap.type01::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../img/newsMain/banner_type01_bg.png);
          mask-image: url(../img/newsMain/banner_type01_bg.png);
  mask-mode: alpha;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 0;
  opacity: 0.8;
  mix-blend-mode: multiply;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50.1%, #E5E5E5), color-stop(99.83%, rgba(153, 153, 153, 0.54)));
  background: linear-gradient(180deg, #E5E5E5 50.1%, rgba(153, 153, 153, 0.54) 99.83%);
}
.banner-wrap.type01 .txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.banner-wrap.type02 .slider-container {
  max-height: 512px;
}
.banner-wrap.type02 .left-box {
  background: url(../img/newsMain/banner_type02_bg.png) top 0 right 0 no-repeat;
}
.banner-wrap.type02 .title-slider .title {
  -webkit-line-clamp: 2;
}
.banner-wrap.type03 .slider-container {
  max-height: 778px;
}
.banner-wrap.type03 .left-box {
  background: url(../img/newsMain/banner_type03_bg.png) top 0 right 0 no-repeat;
}
.banner-wrap.type03 .title-slider .title {
  -webkit-line-clamp: 6;
}
.banner-wrap.type04 {
  background: url(../img/newsMain/banner_type04_bg.png) top 0 right 0 no-repeat;
  background-size: cover;
  padding: 5.2083vw 7.2917vw;
}
.banner-wrap.type04 .slider-container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-height: 778px;
}
.banner-wrap.type04 .left-box {
  width: 26.3542vw;
  padding: 0;
  background: none;
}
.banner-wrap.type04 .title-slider .title {
  -webkit-line-clamp: 5;
}
.banner-wrap.type04 .right-box {
  width: 52.7604vw;
}
.banner-wrap.type04 .image-slider {
  border-radius: 50px;
  overflow: hidden;
}

.section-news .section-inner {
  padding: 24px 0;
}
.section-news .news-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.section-news .news-area .news-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.section-news .news-area .news-box.left {
  max-width: 397px;
}
.section-news .news-area .news-box.left .news-item {
  gap: 12px;
}
.section-news .news-area .news-box.center {
  width: 100%;
  max-width: 834px;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section-news .news-area .news-box.right {
  max-width: 417px;
  width: 100%;
  gap: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-news .news-area .news-box .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-news .news-area .news-box .news-item .img-box {
  border-radius: 24px;
  overflow: hidden;
}
.section-news .news-area .news-box .news-item .txt-box {
  padding: 8px 0 0 0;
}
.section-news .news-area .news-box .news-item .txt-box .title {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 500;
  line-height: 36px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .news-area .news-box .news-item .txt-box .desc {
  font-size: 17px;
  color: var(--TVchosun-A-gray-gray500);
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .news-area .news-box .news-item .txt-box .desc.lineClamp-6 {
  -webkit-line-clamp: 6;
}
.section-news .news-area .news-box .news-item .txt-box .desc.lineClamp-5 {
  -webkit-line-clamp: 5;
}
.section-news .news-area .news-box .news-item .txt-box .desc.lineClamp-4 {
  -webkit-line-clamp: 4;
}
.section-news .news-area .news-box .news-item .txt-box .desc.lineClamp-3 {
  -webkit-line-clamp: 3;
}
.section-news .news-area .news-box .news-item.headline {
  gap: 20px;
}
.section-news .news-area .news-box .news-item.headline .txt-box {
  padding: 0;
}
.section-news .news-area .news-box .news-item.headline .txt-box .title {
  font-size: 34px;
  font-weight: 700;
  line-height: 48px;
}
.section-news .news-area .news-box .news-headSubList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 4px 0;
}
.section-news .news-area .news-box .news-headSubList li {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .news-area .news-box .news-headSubList li a {
  font-size: 20px;
}
.section-news .news-area .news-box .news-headSubList li::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/newsMain/ico_newsHead_bul.png) 50% 50% no-repeat;
}
.section-news .news-area .news-box .news-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  background-color: var(--TVchosun-A-gray-gray100);
  border-radius: 9999px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06) inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06) inset;
}
.section-news .news-area .news-box .news-tab li.full {
  width: 100%;
}
.section-news .news-area .news-box .news-tab li.active a {
  background: var(--TVchosun-A-red-red600);
  color: var(--TVchosun-A-white100);
  border-radius: 9999px;
}
.section-news .news-area .news-box .news-tab li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px;
  height: 48px;
  font-size: 20px;
  font-weight: 500;
  color: var(--TVchosun-A-gray-gray500);
}
.section-news .news-area .news-box .news-spList {
  padding: 28px 20px;
}
.section-news .news-area .news-box .news-spList li {
  border-bottom: 1px solid var(--TVchosun-A-alpha-B24);
  margin-bottom: 21px;
  padding-bottom: 21px;
}
.section-news .news-area .news-box .news-spList li a {
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .news-area .news-box .news-spList li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.section-news .news-area .news-box .news-timeline {
  padding: 12px 10px 0 10px;
  min-height: 605px;
}
.section-news .news-area .news-box .news-timeline .gmt {
  display: inline-block;
  font-size: 13px;
  color: var(--TVchosun-A-gray-gray500);
  padding: 8px 12px;
  margin-top: 8px;
}
.section-news .news-area .news-box .news-timeline .title {
  font-size: 28px;
  padding: 8px 12px;
  line-height: 1;
}
.section-news .news-area .news-box .news-timeline .tl-list {
  position: relative;
  padding: 12px 0 60px 0;
}
.section-news .news-area .news-box .news-timeline .tl-list ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.section-news .news-area .news-box .news-timeline .tl-list ul li {
  position: relative;
}
.section-news .news-area .news-box .news-timeline .tl-list ul li::before {
  display: block;
  content: "";
  width: 1px;
  height: calc(100% + 30px);
  background: var(--TVchosun-A-gray-gray950);
  position: absolute;
  left: 13px;
  top: 10px;
}
.section-news .news-area .news-box .news-timeline .tl-list ul li::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--TVchosun-A-gray-gray950);
  border-radius: 9999px;
  position: absolute;
  left: 10px;
  top: 10px;
}
.section-news .news-area .news-box .news-timeline .tl-list ul li:last-child::before {
  display: none;
}
.section-news .news-area .news-box .news-timeline .tl-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-left: 32px;
}
.section-news .news-area .news-box .news-timeline .tl-list ul li .date {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 22px;
  font-weight: 500;
}
.section-news .news-area .news-box .news-timeline .tl-list ul li .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  font-weight: 500;
}
.section-news .news-area .news-box .weather-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--TVchosun-A-gray-gray50);
  border-radius: 12px;
}
.section-news .news-area .news-box .weather-box .top-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 20px;
}
.section-news .news-area .news-box .weather-box .top-area .title {
  font-size: 20px;
}
.section-news .news-area .news-box .weather-box .top-area .date {
  font-size: 13px;
  color: var(--TVchosun-A-gray-gray500);
}
.section-news .news-area .news-box .weather-box .top-area .play, .section-news .news-area .news-box .weather-box .top-area .pause {
  width: 28px;
  height: 28px;
  border: 1px solid var(--TVchosun-A-gray-gray400);
  background: var(--TVchosun-A-white100);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  border-radius: 9999px;
  cursor: pointer;
}
.section-news .news-area .news-box .weather-box .top-area .play {
  display: none;
  background: url(../img/ico/swiper_play_bk.png) 50% 50% no-repeat;
}
.section-news .news-area .news-box .weather-box .top-area .pause {
  background: url(../img/ico/swiper_pause_bk.png) 50% 50% no-repeat;
}
.section-news .news-area .news-box .weather-box .btm-area {
  padding-bottom: 20px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 24px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .ico-weather {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 0 12px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .ico-weather .local {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .nowTemp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .nowTemp strong {
  font-size: 48px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .nowTemp p {
  font-size: 15px;
  font-weight: 500;
  color: var(--TVchosun-A-Logo-text);
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .subTit {
  font-size: 11px;
  color: var(--TVchosun-A-gray-gray400);
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .lowBestTemp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .lowBestTemp div .tP {
  margin-top: 10px;
  font-size: 17px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .lowBestTemp div .tP_low {
  color: var(--TVchosun-A-weather-blue);
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .lowBestTemp div .tP_best {
  color: var(--TVchosun-A-weather-red);
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .precipitation div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-top: 10px;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .precipitation div p {
  color: var(--TVchosun-A-Logo-text);
  font-size: 11px;
  font-weight: 500;
}
.section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .precipitation div p em {
  font-size: 13px;
}

.section-vote {
  position: relative;
  max-height: 90px;
  margin: 24px 0;
}
.section-vote::before {
  display: block;
  content: "";
  width: 200%;
  height: 100%;
  background-color: var(--TVchosun-A-gray-gray200);
  background-image: url(../img/newsMain/vote_banner_bg.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -50%;
  top: 0;
  z-index: -1;
}
.section-vote .link {
  display: block;
  height: 100%;
}
.section-vote .vote-banner {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}
.section-vote .vote-banner .title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 13px;
}
.section-vote .vote-banner .title-box .status.ing {
  padding: 4px 12px 4px 4px;
  color: var(--TVchosun-A-red-red600);
  font-weight: 500;
}
.section-vote .vote-banner .title-box .date {
  color: var(--TVchosun-A-gray-gray600);
}
.section-vote .vote-banner .desc-box p {
  font-size: 22px;
  font-weight: 700;
  color: var(--TVchosun-A-gray-gray950);
}

.section-issue .section-inner {
  padding: 24px 0 48px 0;
}
.section-issue .news-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.section-issue .news-area .news-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-issue .news-area .news-box.left {
  width: 1270px;
  max-width: 1270px;
  border: 1px solid var(--TVchosun-A-gray-gray300);
  border-radius: 24px;
  overflow: hidden;
}
.section-issue .news-area .news-box.left .title-area {
  padding: 0 24px;
  background: url(../img/newsMain/issue-title-bg.png);
  background-size: cover;
  gap: 12px;
}
.section-issue .news-area .news-box.left .title-area h3 {
  font-size: 26px;
  color: var(--TVchosun-A-white100);
}
.section-issue .news-area .news-box.left .news-item {
  max-height: 580px;
}
.section-issue .news-area .news-box.left .news-item.headline {
  max-width: 690px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.section-issue .news-area .news-box.left .news-item.headline .txt-box {
  padding: 8px 0;
}
.section-issue .news-area .news-box.left .news-item.headline .txt-box .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}
.section-issue .news-area .news-box.left .news-item.headline .txt-box .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
  color: var(--TVchosun-A-gray-gray500);
  line-height: 26px;
}
.section-issue .news-area .news-box.right {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-issue .news-area .news-box.right .title-area {
  margin-bottom: 16px;
}
.section-issue .news-area .news-box.right .issue-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.section-issue .news-area .news-box.right .issue-list .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.section-issue .news-area .news-box.right .issue-list .news-item .img-box {
  width: 190px;
}
.section-issue .news-area .news-box.right .issue-list .news-item .txt-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section-issue .news-area .news-box.right .issue-list .news-item .badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  color: var(--TVchosun-A-white100);
  background-color: var(--TVchosun-A-red-red600);
  border-radius: 9999px;
  -webkit-box-shadow: 0px -1px 3px 0px rgba(0, 0, 0, 0.04), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -1px 3px 0px rgba(0, 0, 0, 0.04), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 4px;
  border: 1px solid #ef787d;
  font-size: 13px;
  line-height: 1;
}
.section-issue .news-area .news-box.right .issue-list .news-item .title {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}
.section-issue .news-area .news-box.right .issue-list .news-item .desc {
  font-size: 15px;
  color: var(--TVchosun-A-gray-gray600);
  line-height: 20px;
}
.section-issue .news-area .news-box .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
.section-issue .news-area .news-box .title-area h3 {
  font-size: 36px;
}
.section-issue .news-area .news-box .cont-area {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 40px 30px;
}
.section-issue .news-area .news-box .cont-area .news-spList li {
  border-bottom: 1px solid var(--TVchosun-A-alpha-B24);
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.section-issue .news-area .news-box .cont-area .news-spList li a {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.section-issue .news-area .news-box .cont-area .news-spList li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-origin {
  position: relative;
  background-color: var(--TVchosun-A-gray-gray100);
  padding: 40px 0;
}
.section-origin::before {
  display: block;
  content: "";
  width: 200%;
  height: 100%;
  background: var(--TVchosun-A-gray-gray100);
  position: absolute;
  left: -50%;
  top: 0;
  z-index: -1;
}
.section-origin .section-inner {
  padding: 64px 0 32px 0;
}
.section-origin .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
.section-origin .title-area h3 {
  font-size: 26px;
}
.section-origin .origin-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.section-origin .origin-wrap .origin-box {
  width: 25%;
  background-color: var(--TVchosun-A-white100);
  border-radius: 24px;
}
.section-origin .origin-wrap .origin-box .origin-title {
  padding: 28px 40px;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-origin .origin-wrap .origin-box .origin-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-bottom: 24px;
}
.section-origin .origin-wrap .origin-box .origin-list li {
  padding: 0 25px;
}
.section-origin .origin-wrap .origin-box .origin-list li .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.section-origin .origin-wrap .origin-box .origin-list li .news-item .img-box {
  border-radius: 16px;
  position: relative;
  aspect-ratio: 16/9;
}
.section-origin .origin-wrap .origin-box .origin-list li .news-item .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-origin .origin-wrap .origin-box .origin-list li .news-item .img-box .playBtn {
  position: absolute;
  display: block;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--TVchosun-A-alpha-W80);
  background: var(--TVchosun-A-alpha-W24);
  width: 44px;
  height: 44px;
  right: 16px;
  bottom: 18px;
}
.section-origin .origin-wrap .origin-box .origin-list li .news-item .img-box .playBtn::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/svg/play_btn_arrow.svg) 50% 50% no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section-origin .origin-wrap .origin-box .origin-list li .news-item .img-box .playBtn::before {
  width: 12px;
  height: 16px;
  background-size: contain;
}
.section-origin .origin-wrap .origin-box .origin-list li .news-item .txt-box .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}

.ad-banner {
  margin: 40px auto 0 auto;
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
}
.ad-banner.w970 {
  max-width: 970px;
}
.ad-banner.w720 {
  max-width: 720px;
}

.section-article .section-inner {
  padding: 48px 0 24px 0;
}
.section-article .news-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  height: 100%;
}
.section-article .news-area .news-box.left {
  width: 100%;
  max-width: 397px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.section-article .news-area .news-box.right {
  width: 100%;
  height: 100%;
}
.section-article .news-area .news-box .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-article .news-area .news-box .news-item .img-box {
  border-radius: 24px;
  overflow: hidden;
}
.section-article .news-area .news-box .news-item .img-box .playBtn {
  right: 15px;
  bottom: 15px;
}
.section-article .news-area .news-box .news-item .txt-box {
  padding: 8px 0;
}
.section-article .news-area .news-box .news-item .txt-box .title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.section-article .news-area .news-box .news-item .txt-box .desc {
  font-size: 17px;
  color: var(--TVchosun-A-gray-gray500);
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-article .news-area .news-box .news-item .txt-box .desc.lineClamp-6 {
  -webkit-line-clamp: 6;
}
.section-article .news-area .news-box .news-item .txt-box .desc.lineClamp-5 {
  -webkit-line-clamp: 5;
}
.section-article .news-area .news-box .news-item .txt-box .desc.lineClamp-4 {
  -webkit-line-clamp: 4;
}
.section-article .news-area .news-box .news-item .txt-box .desc.lineClamp-3 {
  -webkit-line-clamp: 3;
}
.section-article .news-area .news-box .news-item.headline {
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--TVchosun-A-alpha-B24);
}
.section-article .news-area .news-box .news-item.headline .txt-box {
  padding: 0;
}
.section-article .news-area .news-box .news-item.headline .txt-box .title {
  font-size: 34px;
  font-weight: 700;
  line-height: 48px;
}
.section-article .news-area .news-box .news-spList {
  border-top: 1px solid var(--TVchosun-A-alpha-B24);
  padding-top: 20px;
}
.section-article .news-area .news-box .news-spList li {
  border-bottom: 1px solid var(--TVchosun-A-alpha-B24);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.section-article .news-area .news-box .news-spList li a {
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-article .news-area .news-box .news-spList li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.section-article .news-area .news-box .news-headSubList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}
.section-article .news-area .news-box .news-headSubList li {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-article .news-area .news-box .news-headSubList li a {
  font-size: 20px;
}
.section-article .news-area .news-box .news-headSubList li::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  margin-right: 10px;
  background: var(--TVchosun-A-gray-gray950);
}
.section-article .news-area .news-box .reporter-area {
  position: relative;
  max-width: 417px;
  height: 100%;
  padding: 24px 32px;
  background: var(--TVchosun-A-gray-gray100);
  border-radius: 24px;
}
.section-article .news-area .news-box .reporter-area .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  margin-bottom: 24px;
}
.section-article .news-area .news-box .reporter-area .title-area h3 {
  font-size: 26px;
}
.section-article .news-area .news-box .reporter-area .reporter-list {
  padding-bottom: 52px;
}
.section-article .news-area .news-box .reporter-area .reporter-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--TVchosun-A-alpha-B12);
}
.section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
  line-height: 22px;
}
.section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box .department {
  font-size: 15px;
  color: var(--TVchosun-A-gray-gray500);
}
.section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box .department em {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
}
.section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box .department em::before {
  display: block;
  content: "";
  width: 1px;
  height: 14px;
  background-color: var(--TVchosun-A-gray-gray500);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box .department em:last-child::before {
  display: none;
}
.section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .img-box {
  width: 64px;
  height: 64px;
  border: 1px solid var(--TVchosun-A-alpha-W80);
  border-radius: 9999px;
  overflow: hidden;
}
.section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .img-box img {
  width: 100%;
  height: 100%;
}
.section-article .news-area .news-box .reporter-area .reporter-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.section-article .news-area .news-box .reporter-area .reporter-list .control-box {
  width: 136px;
  height: 40px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section-article .news-area .news-box .reporter-area .reporter-list .control-box .swiper-button-next, .section-article .news-area .news-box .reporter-area .reporter-list .control-box .swiper-button-next::after, .section-article .news-area .news-box .reporter-area .reporter-list .control-box .swiper-button-prev, .section-article .news-area .news-box .reporter-area .reporter-list .control-box .swiper-button-prev::after {
  font-size: 0;
  background: url(../img/main/swiper-arrow-bk.png) 50% 50% no-repeat;
  background-size: 6px;
}
.section-article .news-area .news-box .reporter-area .reporter-list .control-box .swiper-button-next {
  left: auto;
  right: 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.section-article .news-area .news-box .reporter-area .reporter-list .control-box .swiper-button-prev {
  left: 0;
}
.section-article .news-area .news-box .reporter-area .reporter-list .control-box .swiper-pagination {
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-article .news-area .news-box .reporter-area .reporter-list .control-box .swiper-pagination .swiper-pagination-bullet {
  background: var(--TVchosun-A-alpha-B24);
  opacity: 1;
  border-radius: 9999px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section-article .news-area .news-box .reporter-area .reporter-list .control-box .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--TVchosun-A-red-red600);
  width: 38px;
}

.section-corner .section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 48px 0 48px 0;
}
.section-corner .corner-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-corner .corner-left .item-list li {
  max-width: 410px;
}
.section-corner .corner-right {
  width: 100%;
  max-width: 320px;
}
.section-corner .corner-right .main-title {
  font-size: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
}
.section-corner .corner-right .shortSwiper .swiper-slide {
  display: none;
  position: relative;
}
.section-corner .corner-right .shortSwiper .swiper-slide:first-child {
  display: block;
}
.section-corner .corner-right .shortSwiper .swiper-slide .vd-link {
  overflow: hidden;
  border-radius: 24px;
}
.section-corner .corner-right .shortSwiper .swiper-slide .thumb-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.section-corner .corner-right .shortSwiper .swiper-slide .thumb-box img {
  width: 100%;
}
.section-corner .corner-right .shortSwiper .swiper-slide .thumb-box .playBtn {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  background-color: var(--TVchosun-A-alpha-W24);
  border-color: var(--TVchosun-A-alpha-W80);
  -webkit-backdrop-filter: blur(4.7999997139px);
          backdrop-filter: blur(4.7999997139px);
  bottom: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section-corner .corner-right .shortSwiper .swiper-slide .thumb-box .playBtn::before {
  background-size: 17px;
}
.section-corner .corner-right .shortSwiper .swiper-slide .info-box {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 0 0 24px 24px;
}
.section-corner .corner-right .shortSwiper .swiper-slide .info-box .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: var(--TVchosun-A-white100);
  padding: 0 24px;
  position: absolute;
  bottom: 24px;
}
.section-corner .corner-right .shortSwiper .swiper-slide::before, .section-corner .corner-right .shortSwiper .swiper-slide::after {
  opacity: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--TVchosun-A-gray-gray200);
  position: absolute;
  right: -60px;
  top: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  border-radius: 24px;
}
.section-corner .corner-right .shortSwiper .swiper-slide::after {
  right: -25px;
  z-index: -1;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background: var(--TVchosun-A-gray-gray400);
}
.section-corner .corner-right .shortSwiper .swiper-slide-next::before {
  background: var(--TVchosun-A-gray-gray400);
  opacity: 1;
}
.section-corner .corner-right .shortSwiper .swiper-slide-active {
  z-index: 20;
}
.section-corner .corner-right .shortSwiper .swiper-slide-active .info-box {
  opacity: 1;
  -webkit-transition: opacity 0.01s;
  transition: opacity 0.01s;
}
.section-corner .corner-right .shortSwiper .swiper-slide-active::before {
  opacity: 0;
  background: var(--TVchosun-A-gray-gray950);
  z-index: -1;
}
.section-corner .null-content {
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-broadcast {
  background-color: var(--TVchosun-A-gray-gray100);
}
.section-broadcast .section-inner {
  padding: 96px 0 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-broadcast .broadSwiper-wrap {
  position: relative;
  max-width: 1630px;
  padding: 0 50px;
  width: 100%;
}
.section-broadcast .broadSwiper-wrap .broadSwiper {
  max-width: 1430px;
  width: 100%;
}
.section-broadcast .broadSwiper-wrap .broadSwiper .item-list .title {
  font-weight: 700;
}
.section-broadcast .broadSwiper-wrap .swiper-button-next, .section-broadcast .broadSwiper-wrap .swiper-button-prev {
  position: absolute;
  width: 48px;
  height: 48px;
  background: url(../img/main/swiper-arrow-bk.png) 50% 50% no-repeat;
}
.section-broadcast .broadSwiper-wrap .swiper-button-next::after, .section-broadcast .broadSwiper-wrap .swiper-button-prev::after {
  font-size: 0;
}
.section-broadcast .broadSwiper-wrap .swiper-button-next {
  right: -20px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.section-broadcast .broadSwiper-wrap .swiper-button-prev {
  left: -20px;
}

.news-item.headline .playBtn {
  right: auto;
  bottom: auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.section-ad {
  margin: 40px 0;
}
.section-ad .ad-banner {
  margin: 0 auto;
}

/*ehpark추가*/
.banner_2025_1 img { width:100%; border-radius:12px; }
.topbanner_250514 { display:none; }
.onair { grid-area: 1/1/3/3; }

@media screen and (max-width: 1744px) {
  .section-wrap {
    padding: 0 16px;
  }
  .section-news .section-inner {
    padding: 16px;
  }
  .section-issue .section-inner {
    padding: 16px;
  }
  .section-issue .news-area {
    gap: 20px;
  }
  .section-issue .news-area .news-box .cont-area .news-spList li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .section-origin .section-inner {
    padding: 64px 16px 32px 16px;
  }
  .section-origin .origin-wrap .origin-box .origin-title {
    padding: 28px 25px;
  }
  .section-article .section-inner {
    padding: 16px;
  }
  .section-corner .item-list li {
    width: calc(33.333% - 14px);
  }
  .section-corner .corner-right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .section-corner .comm-tab .tab-more {
    right: 0;
  }
  .section-broadcast .section-inner {
    padding: 40px 16px;
  }
  .section-broadcast .broadSwiper-wrap {
    max-width: 100%;
  }
  .section-broadcast .broadSwiper-wrap .swiper-button-prev {
    left: -10px;
  }
  .section-broadcast .broadSwiper-wrap .swiper-button-next {
    right: -10px;
  }
  .section-origin {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1400px) {
  .section-wrap {
    grid-template-columns: calc(33.333% - 26.67px) calc(33.333% - 26.67px) calc(33.333% - 26.67px);
  }
  .section-wrap .section-item-1 {
    grid-area: 3/1/4/4;
  }
  .section-wrap .section-item-2 {
    grid-area: 1/1/3/3;
  }
  .section-wrap .section-item-3 {
    grid-area: 1/3/2/4;
  }
  .section-wrap .section-item-4 {
    grid-area: 2/3/3/4;
  }
  .section-wrap .section-item-5 {
    grid-area: 4/1/5/4;
  }
  .section-wrap .section-item-6 {
    grid-area: 5/1/6/4;
  }
  .section-wrap .section-item-7 {
    grid-area: 6/1/7/4;
  }
  .section-wrap .section-item-8 {
    grid-area: 7/1/8/4;
  }
  .section-wrap .section-item-9 {
    grid-area: 9/1/10/4;
  }
  .section-wrap .section-item-10 {
    grid-area: 8/1/9/3;
  }
  .section-wrap .section-item-11 {
    grid-area: 8/3/9/4;
  }
  .section-wrap .section-item-12 {
    grid-area: 10/1/11/4;
  }
  .section-wrap .section-item-13 {
    grid-area: 11/1/12/3;
  }
  .section-wrap .section-item-14 {
    grid-area: 11/3/12/4;
  }
  .section-item-1 .news-area {
    display: block;
  }
  .section-item-1 .news-area .news-box .news-item {
    width: calc(50% - 8px);
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .section-item-1 .news-area .news-box.left {
    gap: 20px;
  }
  .section-news .section-inner {
    padding: 40px;
  }
  .section-news .news-area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .section-news .news-area .news-box.left, .section-news .news-area .news-box.right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 50%;
    max-width: none;
  }
  .section-news .news-area .news-box.left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-news .news-area .news-box.center {
    max-width: 100%;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .section-issue .news-area {
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-issue .news-area .news-box .cont-area {
    padding: 40px;
  }
  .section-issue .news-area .news-box .cont-area .news-spList li {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .section-issue .news-area .news-box.left {
    width: 100%;
    max-width: 100%;
  }
  .section-issue .news-area .news-box.left .news-item.headline {
    max-width: 60%;
    width: 60%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .section-issue .news-area .news-box.left .news-spList {
    width: 40%;
  }
  .section-issue .news-area .news-box.right {
    width: 100%;
    max-width: 100%;
  }
  .section-issue .news-area .news-box.right .issue-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
  .section-issue .news-area .news-box.right .issue-list li {
    width: 20%;
  }
  .section-issue .news-area .news-box.right .issue-list li .news-item {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-issue .news-area .news-box.right .issue-list li .news-item .img-box {
    width: 100%;
  }
  .section-issue .news-area .news-box.right .issue-list li .news-item .badge {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .section-origin .origin-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-origin .origin-wrap .origin-box {
    width: calc(50% - 10px);
    padding: 24px;
  }
  .section-origin .origin-wrap .origin-box .origin-title {
    padding: 0;
    margin-bottom: 20px;
  }
  .section-origin .origin-wrap .origin-box .origin-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 0;
  }
  .section-origin .origin-wrap .origin-box .origin-list li {
    width: 50%;
    padding: 0;
  }
  .section-article .section-inner {
    padding: 40px;
  }
  .section-article .news-area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .section-article .news-area .news-box.left, .section-article .news-area .news-box.right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 50%;
    max-width: none;
  }
  .section-article .news-area .news-box.right .reporter-area {
    width: 100%;
    max-width: 100%;
    padding: 24px;
  }
  .section-article .news-area .news-box.center {
    max-width: 100%;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .section-broadcast .section-inner {
    padding: 40px 16px;
  }
  .section-broadcast .broadSwiper-wrap {
    max-width: 100%;
  }
  .section-broadcast .broadSwiper-wrap .swiper-button-prev {
    left: -10px;
  }
  .section-broadcast .broadSwiper-wrap .swiper-button-next {
    right: -10px;
  }
  .section-corner .corner-right {
    max-width: 100%;
    padding-right: 20px;
  }
  .section-article .news-area .news-box .news-item.headline {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .desc {
    font-size: 18px;
  }
  .section-article .news-area .news-box .news-headSubList {
    padding: 0;
    gap: 12px;
  }
  .section-article .news-area .news-box .news-headSubList li a {
    font-size: 18px;
  }
  .section-article .news-area .news-box.left, .section-article .news-area .news-box.right {
    width: 100%;
  }
  .section-article .news-area .news-box.left .news-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-article .news-area .news-box.left .news-item .img-box {
    max-width: 270px;
  }
  .section-article .news-area .news-box.left .news-item .txt-box .title {
    font-size: 20px;
  }
  .section-article .news-area .news-box.left .news-item .txt-box .desc {
    font-size: 18px;
  }
  .section-article .news-area .news-box.left .news-spList li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .section-article .news-area .news-box.left .news-spList li a {
    font-size: 18px;
  }
  .section-article .news-area .news-box .reporter-area .title-area {
    height: 64px;
  }
  .section-article .news-area .news-box .reporter-area .title-area h3 {
    font-size: 28px;
  }
  .section-article .news-area .news-box .reporter-area .reporter-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 1000px) {
  /*ehpark추가*/
  .topbanner_250514 { display:block; margin-top:20px; padding:0 16px; }
  .topbanner_250514 img { width:100%; border-radius:10px; }
  .onair { grid-area: 1 / 1 / 2 / 4; }

  .section-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .section-wrap .section-item-1 {
    grid-area: 2/1/3/4;
  }
  .section-wrap .section-item-2 {
    grid-area: 1/1/2/4;
  }
  .section-wrap .section-item-3 {
    grid-area: 3/1/4/4;
  }
  .section-wrap .section-item-4 {
    grid-area: 6/1/7/4;
  }
  .section-wrap .section-item-5 {
    grid-area: 4/1/5/4;
  }
  .section-wrap .section-item-6 {
    grid-area: 5/1/6/4;
  }
  .section-wrap .section-item-7 {
    grid-area: 11/1/12/4;
  }
  .section-wrap .section-item-8 {
    grid-area: 7/1/8/4;
  }
  .section-wrap .section-item-9 {
    grid-area: 9/1/10/4;
  }
  .section-wrap .section-item-10 {
    grid-area: 8/1/9/4;
  }
  .section-wrap .section-item-11 {
    grid-area: 10/1/11/4;
  }
  .section-wrap .section-item-12 {
    grid-area: 12/1/13/4;
  }
  .section-wrap .section-item-13 {
    grid-area: 13/1/14/3;
  }
  .section-wrap .section-item-14 {
    grid-area: 13/3/14/4;
  }
  .banner-wrap {
    overflow: hidden;
  }
  .banner-wrap .slider-container .title-slider {
    height: auto;
  }
  .banner-wrap .slider-container .title-slider .title {
    font-size: 26px;
    margin: 10px 0 0 0;
  }
  .banner-wrap .slider-container .article-more {
    display: none;
  }
  .banner-wrap .slider-container .b-logo p {
    padding: 0.6px 20px 0.6px 16px;
    font-size: 18px;
  }
  .banner-wrap .slider-container .b-logo p:last-child {
    padding-top: 2px;
    margin-left: -11px;
  }
  .banner-wrap .slider-container .left-box {
    padding: 16px;
  }
  .banner-wrap .slider-container .slider-counter {
    font-size: 15px;
    padding: 4px 12px 4px 12px;
    background: var(--TVchosun-A-alpha-B24);
    border-radius: 9999px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    margin-bottom: 0;
  }
  .banner-wrap .slider-container .slider-status-button {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 0;
    background-image: url(../img/ico/swiper_pause.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin-left: 4px;
  }
  .banner-wrap .slider-container .slider-status-button.play {
    background-image: url(../img/ico/swiper_play.png);
    background-size: 10px;
  }
  .banner-wrap .slider-container .slider-status-button.pause {
    background-image: url(../img/ico/swiper_pause.png);
  }
  .banner-wrap .slider-controls {
    display: none;
  }
  .banner-wrap .newsflash {
    font-size: 36px;
    left: 16px;
    top: 16px;
    gap: 8px;
  }
  .banner-wrap .newsflash::before {
    width: 10px;
    height: 10px;
  }
  .banner-wrap.type01 {
    height: auto;
    padding: 16px;
  }
  .banner-wrap.type01 .slider-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .banner-wrap.type01 .slider-container .b-logo {
    height: 28px;
  }
  .banner-wrap.type01 .slider-container .b-logo p {
    height: 28px;
  }
  .banner-wrap.type01 .slider-container .title-slider .title {
    margin: 0;
  }
  .banner-wrap.type01 .slider-container .slider-counter {
    display: none;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
  }
  .banner-wrap.type02 .slider-container .left-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 55vw;
    max-width: 100%;
    background-size: cover;
  }
  .banner-wrap.type02 .slider-container .right-box {
    width: 45vw;
  }
  .banner-wrap.type02 .slider-container .slider-counter {
    margin-bottom: 0;
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .banner-wrap.type02 .slider-container .b-logo {
    height: 28px;
  }
  .banner-wrap.type02 .slider-container .b-logo p {
    height: 28px;
  }
  .banner-wrap.type03 .slider-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .banner-wrap.type03 .slider-container .left-box {
    width: 100%;
    max-width: 100%;
    background-size: cover;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    z-index: 1;
  }
  .banner-wrap.type03 .slider-container .right-box {
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .banner-wrap.type03 .slider-container .title-slider .title {
    -webkit-line-clamp: 3;
  }
  .banner-wrap.type03 .slider-container .b-logo {
    position: absolute;
    top: -22px;
    left: 16px;
    height: 36px;
  }
  .banner-wrap.type03 .slider-container .b-logo p {
    height: 36px;
  }
  .banner-wrap.type03 .slider-container .slider-counter {
    margin-bottom: 0;
    position: absolute;
    bottom: 16px;
    right: 16px;
  }
  .banner-wrap.type04 {
    padding: 20px 16px 12px 16px;
  }
  .banner-wrap.type04 .slider-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .banner-wrap.type04 .slider-container .left-box {
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .banner-wrap.type04 .slider-container .right-box {
    width: 100%;
    max-width: 100%;
  }
  .banner-wrap.type04 .slider-container .title-slider .title {
    -webkit-line-clamp: 3;
  }
  .banner-wrap.type04 .slider-container .b-logo {
    position: absolute;
    top: -22px;
    left: 16px;
    height: 36px;
  }
  .banner-wrap.type04 .slider-container .b-logo p {
    height: 36px;
  }
  .banner-wrap.type04 .slider-container .slider-counter {
    margin-bottom: 0;
    position: absolute;
    bottom: 16px;
    right: 16px;
  }
  .section-news .section-inner {
    padding: 16px;
  }
  .section-news .news-area {
    gap: 20px;
  }
  .section-news .news-area .news-box .news-item.headline {
    gap: 12px;
  }
  .section-news .news-area .news-box .news-item.headline .txt-box .title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .section-news .news-area .news-box .news-item.headline .txt-box .desc {
    font-size: 18px;
  }
  .section-news .news-area .news-box .news-item.headline .txt-box .desc.lineClamp-6 {
    -webkit-line-clamp: 3;
  }
  .section-news .news-area .news-box .news-item.headline .txt-box .desc.lineClamp-5 {
    -webkit-line-clamp: 3;
  }
  .section-news .news-area .news-box .news-item.headline .txt-box .desc.lineClamp-4 {
    -webkit-line-clamp: 3;
  }
  .section-news .news-area .news-box .news-item.headline .txt-box .desc.lineClamp-3 {
    -webkit-line-clamp: 3;
  }
  .section-news .news-area .news-box .news-item {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 100%;
  }
  .section-news .news-area .news-box .news-item .txt-box {
    padding: 0;
  }
  .section-news .news-area .news-box .news-item .txt-box .title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .section-news .news-area .news-box .news-item .txt-box .desc {
    font-size: 16px;
  }
  .section-news .news-area .news-box .news-headSubList {
    gap: 16px;
  }
  .section-news .news-area .news-box .news-headSubList li a {
    font-size: 18px;
  }
  .section-news .news-area .news-box.left, .section-news .news-area .news-box.right {
    width: 100%;
  }
  .section-news .news-area .news-box.left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
  .section-news .news-area .news-box.left .news-item {
    width: calc(50% - 8px);
  }
  .section-news .news-area .news-box.right {
    margin-top: 20px;
  }
  .section-news .news-area .news-box .news-tab {
    border-radius: 30px 30px 0 0;
    border: 1px solid var(--TVchosun-A-alpha-B8);
    border-width: 1px 1px 0 1px;
  }
  .section-news .news-area .news-box .news-tab li {
    width: 50%;
  }
  .section-news .news-area .news-box .news-tab li a {
    font-size: 18px;
  }
  .section-news .news-area .news-box .news-spList, .section-news .news-area .news-box .news-timeline {
    background: var(--TVchosun-A-gray-gray100);
    border: 1px solid var(--TVchosun-A-alpha-B8);
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 30px 30px;
  }
  .section-news .news-area .news-box .news-spList li a, .section-news .news-area .news-box .news-timeline li a {
    font-size: 18px;
  }
  .section-news .news-area .news-box .news-spList li:last-child, .section-news .news-area .news-box .news-timeline li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .section-news .news-area .news-box .news-timeline {
    min-height: auto;
  }
  .section-news .news-area .news-box .news-timeline .title {
    font-size: 24px;
  }
  .section-news .news-area .news-box .news-timeline .tl-list {
    padding-bottom: 30px;
  }
  .section-news .news-area .news-box .news-timeline .tl-list ul li .date {
    font-size: 20px;
  }
  .section-news .news-area .news-box .news-timeline .tl-list ul li .desc {
    font-size: 18px;
  }
  .section-news .playBtn {
    right: 16px;
    bottom: 16px;
  }
  .section-vote .vote-banner {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .section-vote .vote-banner .desc-box p {
    font-size: 18px;
  }
  .section-issue .news-area .news-box.left .title-area {
    height: 64px;
  }
  .section-issue .news-area .news-box.left .title-area h3 {
    font-size: 28px;
  }
  .section-issue .news-area .news-box.left .cont-area {
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline {
    width: 100%;
    max-width: 100%;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline .img-box {
    border-radius: 0;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline .txt-box {
    padding: 0 20px;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline .txt-box .title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline .txt-box .desc {
    font-size: 18px;
  }
  .section-issue .news-area .news-box.left .cont-area .news-spList {
    width: 100%;
    padding: 2px 20px;
  }
  .section-issue .news-area .news-box.left .cont-area .news-spList li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .section-issue .news-area .news-box.left .cont-area .news-spList li a {
    font-size: 20px;
  }
  .section-issue .news-area .news-box.right .issue-list {
    gap: 12px;
  }
  .section-issue .news-area .news-box.right .issue-list .news-item {
    gap: 8px;
  }
  .section-issue .news-area .news-box.right .issue-list .news-item .title {
    font-size: 20px;
  }
  .section-issue .news-area .news-box .title-area {
    height: 64px;
  }
  .section-issue .news-area .news-box .title-area h3 {
    font-size: 28px;
  }
  .section-origin {
    width: calc(100% + 32px);
  }
  .section-origin .section-inner {
    padding: 20px 0;
  }
  .section-origin .title-area {
    height: 64px;
  }
  .section-origin .title-area h3 {
    font-size: 28px;
  }
  .section-origin .origin-wrap {
    gap: 12px;
  }
  .section-origin .origin-wrap .slick-list {
    padding-right: 16px;
    margin-left: -16px;
    margin-right: 16px;
  }
  .section-origin .origin-wrap .origin-box {
    margin-left: 16px;
    width: calc(50% - 6px);
  }
  .section-origin .origin-wrap .origin-box .origin-title {
    font-size: 22px;
  }
  .section-origin .origin-wrap .origin-box .origin-list li .news-item .img-box .playBtn {
    width: 32px;
    height: 32px;
    right: 12px;
    bottom: 12px;
  }
  .section-origin .origin-wrap .origin-box .origin-list li .news-item .img-box .playBtn::before {
    background-size: 9px;
  }
  .section-origin .origin-wrap .origin-box .origin-list li .news-item .txt-box .title {
    font-size: 18px;
    line-height: normal;
  }
  .section-article .section-inner {
    padding: 40px 16px;
  }
  .section-article .news-area .news-box .news-item.headline {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .desc {
    font-size: 18px;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .desc.lineClamp-6 {
    -webkit-line-clamp: 3;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .desc.lineClamp-5 {
    -webkit-line-clamp: 3;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .desc.lineClamp-4 {
    -webkit-line-clamp: 3;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .desc.lineClamp-3 {
    -webkit-line-clamp: 3;
  }
  .section-article .news-area .news-box .news-headSubList {
    padding: 0;
    gap: 12px;
  }
  .section-article .news-area .news-box .news-headSubList li a {
    font-size: 18px;
  }
  .section-article .news-area .news-box.left, .section-article .news-area .news-box.right {
    width: 100%;
  }
  .section-article .news-area .news-box.left .news-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-article .news-area .news-box.left .news-item .img-box {
    max-width: 270px;
  }
  .section-article .news-area .news-box.left .news-item .txt-box .title {
    font-size: 20px;
  }
  .section-article .news-area .news-box.left .news-item .txt-box .desc {
    font-size: 18px;
  }
  .section-article .news-area .news-box.left .news-spList li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .section-article .news-area .news-box.left .news-spList li a {
    font-size: 18px;
  }
  .section-article .news-area .news-box .reporter-area .title-area {
    height: 64px;
  }
  .section-article .news-area .news-box .reporter-area .title-area h3 {
    font-size: 28px;
  }
  .section-article .news-area .news-box .reporter-area .reporter-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .section-issue .news-area .news-box.right .issue-list .news-item .img-box {
    width: 100%;
  }
  .section-corner {
    overflow: hidden;
  }
  .section-corner .section-inner {
    padding: 40px 0;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .section-corner .corner-left {
    z-index: 5;
  }
  .section-corner .corner-right {
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .section-corner .corner-right .main-title {
    font-size: 28px;
  }
  .section-corner .corner-right .shortSwiper .swiper-slide {
    border-radius: 16px;
    width: calc(100% - 38px);
  }
  .section-corner .corner-right .shortSwiper .swiper-slide .info-box .title {
    font-size: 17px;
    padding: 0 16px;
    bottom: 16px;
  }
  .section-corner .corner-right .shortSwiper .playBtn {
    width: 56px;
    height: 56px;
  }
  .section-corner .tab-cont {
    width: 100%;
  }
  .section-corner .item-list {
    gap: 16px 12px;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .section-corner .item-list li {
    width: calc(33.333% - 8px);
  }
  .section-corner .item-list li .vd-link .thumb-box {
    border-radius: 16px;
  }
  .section-corner .item-list li .vd-link .info-box {
    gap: 4px;
  }
  .section-corner .item-list li .vd-link .info-box .title {
    font-size: 17px;
  }
  .section-corner .null-content {
    padding: 40px 0;
  }
  .section-broadcast .section-inner {
    padding: 60px 0;
  }
  .section-broadcast .broadSwiper {
    padding: 0 16px;
  }
  .section-broadcast .broadSwiper-wrap {
    padding: 0;
  }
  .section-broadcast .broadSwiper-wrap .swiper-button-prev, .section-broadcast .broadSwiper-wrap .swiper-button-next {
    display: none;
  }
  .news-item .img-box .badge {
    font-size: 16px;
    padding: 4px 16px;
  }
  .section-ad .ad-banner {
    padding: 0 16px;
  }
  .section-item-4 {
    margin-bottom: 20px;
  }
  .section-item-8 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 620px) {
  .banner-wrap .slider-container .title-slider .title {
    font-size: 16px;
  }
  .banner-wrap .slider-container .slider-counter {
    font-size: 10px;
    z-index: 2;
    gap: 2px;
  }
  .banner-wrap .slider-container .slider-counter .slider-status-button {
    background-size: 8px;
    width: 12px;
    height: 12px;
    margin-left: 4px;
  }
  .banner-wrap .slider-container .slider-counter .slider-status-button.play {
    background-size: 7px;
  }
  .banner-wrap .slider-container .slider-counter .slider-status-button.pause {
    background-size: 8px;
  }
  .banner-wrap .newsflash {
    font-size: 20px;
  }
  .banner-wrap.type01 {
    padding: 16px 0;
  }
  .banner-wrap.type01 .slider-container .slider-counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .banner-wrap.type01 .slider-container .slick-slide {
    padding: 0 16px;
  }
  .banner-wrap.type01 .slider-container .txt-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .banner-wrap.type01 .slider-container .b-logo {
    height: 20px;
  }
  .banner-wrap.type01 .slider-container .b-logo p {
    height: 20px;
    font-size: 11px;
    padding: 0.6px 16px 0.6px 12px;
  }
  .banner-wrap.type01 .slider-container .title-slider .title {
    -webkit-line-clamp: 2;
  }
  .banner-wrap.type01 .slider-container .slider-counter {
    top: 16px;
    -webkit-transform: none;
            transform: none;
  }
  .banner-wrap.type02 .slider-container .b-logo {
    height: 20px;
  }
  .banner-wrap.type02 .slider-container .b-logo p {
    height: 20px;
    font-size: 11px;
    padding: 0.6px 16px 0.6px 12px;
  }
  .banner-wrap.type03 .slider-container .b-logo {
    height: 30px;
  }
  .banner-wrap.type03 .slider-container .b-logo p {
    height: 30px;
    font-size: 15px;
    padding: 0.6px 16px 0.6px 12px;
  }
  .banner-wrap.type03 .slider-container .title-slider .title {
    width: calc(100% - 75px);
  }
  .banner-wrap.type04 .slider-container .image-slider {
    border-radius: 16px;
  }
  .banner-wrap.type04 .slider-container .b-logo {
    height: 30px;
  }
  .banner-wrap.type04 .slider-container .b-logo p {
    height: 30px;
    font-size: 15px;
    padding: 0.6px 16px 0.6px 12px;
  }
  .banner-wrap.type04 .slider-container .title-slider .title {
    width: calc(100% - 75px);
  }
  .section-news .news-area .news-box .news-item.headline .txt-box .title {
    font-size: 20px;
    line-height: normal;
  }
  .section-news .news-area .news-box .news-item.headline .txt-box .desc {
    font-size: 15px;
  }
  .section-news .news-area .news-box .news-headSubList li a {
    font-size: 16px;
  }
  .section-news .news-area .news-box.left {
    gap: 8px;
  }
  .section-news .news-area .news-box .news-item .img-box {
    border-radius: 10px;
  }
  .section-news .news-area .news-box .news-item .txt-box .title {
    font-size: 18px;
    line-height: normal;
  }
  .section-news .news-area .news-box .news-tab li a {
    font-size: 16px;
  }
  .section-news .news-area .news-box .news-spList li a, .section-news .news-area .news-box .news-timeline li a {
    font-size: 16px;
  }
  .section-news .news-area .news-box .news-spList li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .section-news .news-area .news-box .news-timeline {
    min-height: auto;
  }
  .section-news .news-area .news-box .news-timeline .title {
    font-size: 18px;
  }
  .section-news .news-area .news-box .news-timeline .tl-list {
    padding-bottom: 30px;
  }
  .section-news .news-area .news-box .news-timeline .tl-list ul li .date {
    font-size: 17px;
  }
  .section-news .news-area .news-box .news-timeline .tl-list ul li .desc {
    font-size: 16px;
  }
  .section-news .news-area .news-box .news-timeline .gmt {
    margin-top: 0;
  }
  .section-news .news-area .news-box .weather-box .top-area .title {
    font-size: 16px;
  }
  .section-news .news-area .news-box .weather-box .top-area .date {
    font-size: 12px;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .ico-weather .local {
    font-size: 17px;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .ico-weather img {
    width: 60px;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .nowTemp {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .nowTemp strong {
    font-size: 28px;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .subTit {
    font-size: 10px;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .lowBestTemp div .tP {
    font-size: 15px;
    margin-top: 0;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .lowBestTemp div p {
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .precipitation div {
    margin-top: 0;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .precipitation div p {
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .section-news .news-area .news-box .weather-box .btm-area .swiper-slide .temp-box .tempInfo .precipitation div p em {
    font-size: 12px;
  }
  .section-news .playBtn {
    right: 8px;
    bottom: 8px;
  }
  .section-vote {
    max-height: 100%;
    min-height: 90px;
  }
  .section-vote::before {
    background-size: cover;
  }
  .section-vote .vote-banner {
    margin: 0;
    padding: 20px 16px;
  }
  .section-vote .vote-banner .title-box .date, .section-vote .vote-banner .title-box .status {
    font-size: 12px;
  }
  .section-vote .vote-banner .desc-box p {
    font-size: 15px;
    font-weight: 500;
  }
  .section-issue .section-inner {
    padding-bottom: 40px;
  }
  .section-issue .ad-banner {
    margin: 0;
  }
  .section-issue .news-area .news-box.left .title-area {
    height: 48px;
  }
  .section-issue .news-area .news-box.left .title-area .ico {
    width: 20px;
    height: 20px;
  }
  .section-issue .news-area .news-box.left .title-area .ico img {
    width: 100%;
  }
  .section-issue .news-area .news-box.left .title-area h3 {
    font-size: 18px;
  }
  .section-issue .news-area .news-box.left .cont-area {
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline {
    width: 100%;
    max-width: 100%;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline .img-box {
    border-radius: 0;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline .txt-box {
    padding: 0 20px;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline .txt-box .title {
    font-size: 19px;
    margin-bottom: 8px;
  }
  .section-issue .news-area .news-box.left .cont-area .news-item.headline .txt-box .desc {
    display: none;
  }
  .section-issue .news-area .news-box.left .cont-area .news-spList li a {
    font-size: 17px;
    -webkit-line-clamp: 1;
  }
  .section-issue .news-area .news-box.right .issue-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-issue .news-area .news-box.right .issue-list li {
    width: 100%;
  }
  .section-issue .news-area .news-box.right .issue-list li .news-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-issue .news-area .news-box.right .issue-list li .news-item .img-box {
    width: 135px;
    border-radius: 10px;
  }
  .section-issue .news-area .news-box.right .issue-list li .news-item .txt-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .section-issue .news-area .news-box.right .issue-list li .news-item .txt-box .title {
    font-size: 14px;
    line-height: normal;
  }
  .section-issue .news-area .news-box.right .issue-list li .news-item .txt-box .desc {
    font-size: 12px;
    margin-top: 4px;
  }
  .section-issue .news-area .news-box.right .issue-list li .news-item .badge {
    position: relative;
    right: auto;
    top: auto;
    font-size: 12px;
    height: 18px;
    padding: 0 8px;
  }
  .section-issue .news-area .news-box .title-area {
    height: 48px;
  }
  .section-issue .news-area .news-box .title-area h3 {
    font-size: 20px;
  }
  .section-origin .title-area {
    height: 48px;
  }
  .section-origin .title-area h3 {
    font-size: 20px;
  }
  .section-origin .origin-wrap .slick-list {
    padding-left: 8px;
  }
  .section-origin .origin-wrap .origin-box {
    padding: 24px 12px;
    margin-left: 8px;
  }
  .section-origin .origin-wrap .origin-box .origin-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-origin .origin-wrap .origin-box .origin-list li {
    width: 100%;
  }
  .section-origin .origin-wrap .origin-box .origin-list li .news-item {
    gap: 8px;
  }
  .section-origin .origin-wrap .origin-box .origin-list li .news-item .txt-box .title {
    font-size: 16px;
    min-height: auto;
  }
  .section-origin .origin-wrap .origin-box .origin-title {
    margin: 0 12px 20px 12px;
    height: 48px;
    border-bottom: 1px solid var(--TVchosun-A-alpha-B12);
  }
  .section-origin .ad-banner {
    margin-top: 20px;
    padding: 0 16px;
  }
  .section-vote {
    margin: 20px 0;
  }
  .section-article .section-inner {
    padding: 20px 16px;
  }
  .section-article .news-area {
    padding-bottom: 0;
  }
  .section-article .news-area .news-box .reporter-area .title-area {
    height: 48px;
  }
  .section-article .news-area .news-box .reporter-area .title-area h3 {
    font-size: 20px;
  }
  .section-article .news-area .news-box .reporter-area .reporter-list li {
    margin-bottom: 4px;
    padding-bottom: 4px;
  }
  .section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box {
    gap: 4px;
  }
  .section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box .title {
    font-size: 15px;
  }
  .section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box .department {
    font-size: 14px;
  }
  .section-article .news-area .news-box .reporter-area .reporter-list li .reporter-item .txt-box .department em {
    margin-right: 6px;
    padding-right: 6px;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .title {
    font-size: 20px;
    line-height: normal;
  }
  .section-article .news-area .news-box .news-item.headline .txt-box .desc {
    font-size: 15px;
    line-height: normal;
  }
  .section-article .news-area .news-box.left {
    gap: 16px;
  }
  .section-article .news-area .news-box.left .news-item .img-box {
    border-radius: 10px;
    width: 135px;
    max-width: 135px;
  }
  .section-article .news-area .news-box.left .news-item .img-box .playBtn {
    right: 6px;
    bottom: 6px;
  }
  .section-article .news-area .news-box.left .news-item .txt-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .section-article .news-area .news-box.left .news-item .txt-box .title {
    font-size: 17px;
    line-height: normal;
  }
  .section-article .news-area .news-box.left .news-item .txt-box .desc {
    display: none;
  }
  .section-article .news-area .news-box.left .news-spList li a {
    font-size: 18px;
    line-height: 24px;
    -webkit-line-clamp: 1;
  }
  .section-article .news-area .news-box.left .news-spList li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .section-article .news-area .news-box .news-headSubList li a {
    font-size: 16px;
  }
  .section-article .news-area .news-box .reporter-area .reporter-list {
    margin-top: 0;
    padding-top: 8px;
  }
  .section-corner .section-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
  .section-corner .comm-tab .type-toggle {
    padding: 0 16px;
  }
  .section-corner .comm-tab .tab-more {
    right: 16px;
  }
  .section-corner .corner-left {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
  }
  .section-corner .corner-left .slick-list {
    padding-right: 16px;
    padding-left: 8px;
  }
  .section-corner .corner-left .slick-slide {
    margin-left: 8px;
    margin-right: 0;
  }
  .section-corner .corner-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section-corner .corner-right .main-title {
    font-size: 20px;
    padding: 0 16px 20px 16px;
  }
  .section-corner .corner-right .shortSwiper {
    padding: 0 16px;
  }
  .section-corner .corner-right .shortSwiper .swiper-wrapper {
    overflow: hidden;
  }
  .section-corner .corner-right .shortSwiper .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% - 4px);
    border-radius: 10px;
    margin-right: 8px;
  }
  .section-corner .corner-right .shortSwiper .swiper-slide::before, .section-corner .corner-right .shortSwiper .swiper-slide::after {
    display: none;
  }
  .section-corner .ad-banner {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0 16px;
  }
  .section-corner .news-box.right {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .section-corner .reporter-area .title-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
  }
  .section-corner .reporter-area .title-area h3 {
    font-size: 26px;
  }
  .reporter-area .title-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
  }
  .reporter-area .title-area h3 {
    font-size: 26px;
  }
  .reporter-area .reporter-list {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 52px;
    margin-top: 12px;
  }
  .reporter-area .reporter-list .swiper-slide {
    width: 100%;
    height: 100%;
    padding: 24px 32px;
    background: var(--TVchosun-A-gray-gray100);
    border-radius: 24px;
  }
  .reporter-area .reporter-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--TVchosun-A-alpha-B12);
  }
  .reporter-area .reporter-list li .reporter-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
  .reporter-area .reporter-list li .reporter-item .txt-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .reporter-area .reporter-list li .reporter-item .txt-box .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 17px;
    line-height: 22px;
  }
  .reporter-area .reporter-list li .reporter-item .txt-box .department {
    font-size: 15px;
    color: var(--TVchosun-A-gray-gray500);
  }
  .reporter-area .reporter-list li .reporter-item .txt-box .department em {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
  }
  .reporter-area .reporter-list li .reporter-item .txt-box .department em::before {
    display: block;
    content: "";
    width: 1px;
    height: 14px;
    background-color: var(--TVchosun-A-gray-gray500);
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .reporter-area .reporter-list li .reporter-item .txt-box .department em:last-child::before {
    display: none;
  }
  .reporter-area .reporter-list li .reporter-item .img-box {
    width: 64px;
    height: 64px;
    border: 1px solid var(--TVchosun-A-alpha-W80);
    border-radius: 9999px;
    overflow: hidden;
  }
  .reporter-area .reporter-list li .reporter-item .img-box img {
    width: 100%;
    height: 100%;
  }
  .reporter-area .reporter-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .reporter-area .reporter-list .control-box {
    width: 136px;
    height: 40px;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: none;
  }
  .reporter-area .reporter-list .control-box .swiper-button-next, .reporter-area .reporter-list .control-box .swiper-button-next::after, .reporter-area .reporter-list .control-box .swiper-button-prev, .reporter-area .reporter-list .control-box .swiper-button-prev::after {
    font-size: 0;
    background: url(../img/main/swiper-arrow-bk.png) 50% 50% no-repeat;
    background-size: 6px;
  }
  .reporter-area .reporter-list .control-box .swiper-button-next {
    left: auto;
    right: 0;
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .reporter-area .reporter-list .control-box .swiper-button-prev {
    left: 0;
  }
  .reporter-area .reporter-list .control-box .swiper-pagination {
    width: calc(100% - 80px);
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reporter-area .reporter-list .control-box .swiper-pagination .swiper-pagination-bullet {
    background: var(--TVchosun-A-alpha-B24);
    opacity: 1;
    border-radius: 9999px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .reporter-area .reporter-list .control-box .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--TVchosun-A-red-red600);
    width: 38px;
  }
  .section-article .news-area .news-box.right .reporter-area {
    padding: 0;
    background: transparent;
  }
  .section-article .news-area .news-box.right .reporter-area .reporter-list {
    padding: 0 16px;
    padding-bottom: 20px;
  }
  .section-article.mobileFlex .ad-banner {
    margin-top: 0;
  }
  .section-news .section-inner {
    padding: 20px 0;
  }
  .section-news .news-area .news-box.right {
    margin-top: 0;
  }
  .section-news .news-area .news-box.right .weather-box {
    margin: 20px 0 0 0;
  }
  .news-item .img-box .badge {
    font-size: 12px;
    height: 18px;
    padding: 0 8px;
  }
  .section-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
    margin-top: 16px;
  }
  .section-wrap .section-item-1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .section-wrap .section-item-2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section-wrap .section-item-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .section-wrap .section-item-4 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .section-wrap .section-item-5 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .section-wrap .section-item-6 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .section-wrap .section-item-7 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .section-wrap .section-item-8 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .section-wrap .section-item-9 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .section-wrap .section-item-10 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .section-wrap .section-item-11 {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .section-wrap .section-item-12 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .section-wrap .section-item-13 {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .section-wrap .section-item-14 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .section-item-3 {
    margin-top: 20px;
  }
  .section-item-6 {
    margin-top: 20px;
  }
  .section-item-7 {
    margin-top: 20px;
  }
  .section-item-8 {
    margin-top: 20px;
  }
  .section-item-11 {
    margin-top: 20px;
  }
  .section-item-12 {
    margin: 20px 0 0 0;
    display: none;
  }
  .section-item-14 {
    margin-top: 20px;
  }
  .section-item-11, .section-item-13, .section-item-14 {
    margin-left: -16px;
    width: calc(100% + 32px);
  }
  .section-origin {
    padding: 0;
    padding-top: 20px;
  }
  .section-issue .news-area .news-box.left {
    border-radius: 16px;
  }
  .section-broadcast .section-inner {
    padding: 40px 0;
  }
  .section-news .news-area .news-box.left .news-item .txt-box .desc {
    display: none;
  }
  .section-issue .news-area .news-box .cont-area {
    gap: 36px;
  }
}