@charset "UTF-8";

html {
  --font-scale: 1;
}

html[data-font-size="small"] {
  --font-scale: 0.9;
}

html[data-font-size="normal"] {
  --font-scale: 1;
}

html[data-font-size="large"] {
  --font-scale: 1.15;
}

html[data-font-size="xlarge"] {
  --font-scale: 1.3;
}

/* 메인 비주얼 텍스트 */
.visual-sub {
  font-size: calc(1.1rem * var(--font-scale));
}

.visual-title {
  font-size: calc(3.2rem * var(--font-scale));
  line-height: 1.2;
}

/* 섹션 타이틀 */
.section-title {
  font-size: calc(2.4rem * var(--font-scale));
}

.section-title span {
  font-size: inherit;
}

/* 메인 본문 */
.section_1_txt h5,
.section_2_txt h5,
.kead-sub {
  font-size: calc(1.1rem * var(--font-scale));
}

.section_1_txt h2,
.section_2_txt h2,
.kead-title {
  font-size: calc(2rem * var(--font-scale));
  line-height: 1.35;
}

.detail-btn,
.hot-issue-link,
.kead-slide-link {
  font-size: calc(1rem * var(--font-scale));
}




.quickmenu .icon_q_tts {
  display: none;
}

.icon-btn[data-panel="font"] {
  display: none !important;
}

body.preload {
  visibility: hidden;
}

body.loaded {
  visibility: visible;
}

[data-bs-theme=dark] {
  .visual-sub {
    color: #fff;
  }

  .visual-title {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  }

  .list-sub,
  .list-title {
    color: #fff;
  }

  .section-2 {
    background-color: #191e22 !important;
  }

  .list-item:hover .list-title,
  .list-item.active .list-title {
    color: #fff;
  }

  .kead-header {
    background: none;
  }

}

/* ======================
        MAIN VISUAL
    ====================== */
/* 메인 비주얼 전체 */
.main-visual-wrap {
  position: relative;
  width: 100%;
  height: 550px;
  margin-top: 240px;
}

/* 오른쪽 70% 배경 */
.main-visual-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 70vw;
  /* 화면 70% */
  height: 100%;
  background-image: url('./media/images/main/sample_m_img_01.png');
  background-position: right 0%;
  background-size: cover;
  /* 🔥 오른쪽 기준 */
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

/* 메인 텍스트 위치 지정 */
.main-text-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 70vw;
  z-index: 1;
}

/* 텍스트 (이미지 위) */
.main-text-box {
  position: absolute;
  top: -80px;
  left: -120px;
  z-index: 5;
  transition: all .6s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.main-text-box.active {
  opacity: 1;
  transform: translateX(0);
}

.visual-sub {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.visual-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  white-space: nowrap;
}

/* 오른쪽 카테고리 */
.main-category {
  position: absolute;
  top: -30px;
  right: 30px;
  font-size: 1.1rem;
  z-index: 10;
}

/* 왼쪽 컬러 박스 */
.left-color-bars {
  position: absolute;
  bottom: 0px;
  /* 화면 전체 너비 - 배너 이미지 width(70vw) = 배너 영역 left 시작점 */
  left: calc(100% - 70vw - 40px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.left-color-bars div {
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0.4;
  background: #d5d5d5;
  /* 비활성 기본색 */
  transition: all .3s ease;
}

.left-color-bars div.active {
  opacity: 1;
  background: #333;
  /* 활성 색 */
}

.mainVisualSwiper {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
}

.left-color-bars .pause-btn {
  width: 18px;
  height: 18px;
  opacity: 1 !important;
  background-color: #333;
  /* 기본 배경 */
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  margin-top: 12px;
  /* 컬러칩들과 간격 */
}

@media(max-width:768px) {
  .left-color-bars .pause-btn {
    width: 22px;
    height: 22px;
    margin-top: 0px;
  }
}


.pause-mode {
  background-image: url('../images/main/icon_pause_w.png') !important;
  /* ⏸ */
}

.play-mode {
  background-image: url('../images/main/icon_play_w.png') !important;
  /* ▶ */
}


/* 모바일 */
@media(max-width:768px) {
  .main-visual-wrap {
    height: 360px;
  }

  .main-visual-bg {
    width: 100%;
    background-position: center;
  }

  .main-text-box {
    left: 20px;
    top: 30px;
  }

  .visual-title {
    font-size: 2.4rem;
    white-space: normal;
  }

  .left-color-bars {
    display: none;
  }

  .main-category {
    right: 20px;
    top: 20px;
  }
}




/* Section 공통 */

.section-title {
  font-size: 2rem;
  font-weight: 900;
}

.section-title span {
  font-weight: normal;
}

section {
  padding: 80px 0;
}

/* Section1 - 함께 성장 */


.section-1 {
  margin: 120px 0;
}

.section-1 {
  transition: background-color 0.8s ease;
}

.section_1_txt {
  margin-top: 80px;
  min-height: 390px;
  position: relative;
}

.section_1_txt h2 span {
  font-weight: 900;
}

.section_1_txt2 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 최대 3줄 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  padding-right: 120px;
  font-size: 1rem;
}

.mySwiper {
  width: 100%;
  padding: 40px 0;
}

.mySwiper .swiper-slide {
  width: 325px;
  height: 470px;
  transition: all .6s ease;
  overflow: hidden;
  cursor: pointer;
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all .3s ease;
}

/* 활성 (JS에서 GSAP 제어로 자연스럽게 변경됨) */
.mySwiper .swiper-slide-active img {
  opacity: 1;
}

.section-1 .swiper-controls {
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 10;
}

.section-1 .swiper-play-toggle {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: #000;
  font-size: 24px;
  cursor: pointer;
}

.section-1 .swiper-pagination {
  position: static;
  /* 기본 absolute 제거 */
}


/* 모바일 최적화 */
@media (max-width: 1023px) {
  .mySwiper .swiper-slide {
    width: 100%;
    height: auto;
  }
}

/* --- Pagination Progressbar 스타일 --- */
.mySwiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  top: unset;
  width: 100%;
}

.mySwiper .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.15);
  height: 4px;
}

.mySwiper .swiper-pagination-progressbar-fill {
  background: #000;
  /* 색상 변경 가능 */
}

.detail-btn {
  display: flex;
  /* 플렉스 레이아웃 */
  justify-content: space-between;
  /* 왼쪽 텍스트 ↔ 오른쪽 화살표 */
  align-items: center;
  width: 180px;
  /* 버튼 넓이 필요. 원하는 값으로 조정 가능 */
  padding: 12px 28px;
  background-color: #333;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.25s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

[data-bs-theme="dark"] .detail-btn {
  background-color: #fff;
  color: #000;
}

.detail-btn .arrow {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.detail-btn .arrow img {
  height: 20px;
}

.detail-btn:hover {
  background-color: #000;
  /* hover 시 좀 더 진하게 */
}

[data-bs-theme="dark"] .detail-btn:hover {
  background-color: #fff;
}

.detail-btn:hover .arrow {
  transform: translateX(4px);
  /* 화살표 오른쪽으로 살짝 이동 */
}

[data-bs-theme="dark"] .detail-btn .arrow {
  content: url(../images/main/icon_btn_arrow_dark.png);
}


/* Section2 - 함께 동행 */
.section-2 {
  transition: background-color 0.8s ease;
  cursor: pointer;
}

.section_2_txt h2 span {
  font-weight: 900;
  z-index: 1111111;
}

[data-bs-theme="dark"] .section_2_controls img.s_2_prev {
  content: url("../images/main/btn_section_02_prev_w.png");
}

[data-bs-theme="dark"] .section_2_controls img.s_2_next {
  content: url("../images/main/btn_section_02_next_w.png");
}

.section_2_img {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.section_2_img img {
  height: 500px;
}

/* Section 3 - 행복한 일상 */
.txt_section_03_01 span.sub_txt {
  display: inline-block;
  margin-bottom: 40px;
}

.txt_section_03_01 h4 span {
  font-size: 2rem;
  font-weight: 900;
}

.list-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.list-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.list-sub {
  font-size: 1rem;
  color: #666;
}

.list-title {
  font-size: 1.2rem;
  color: #222;
  transition: all 0.3s ease;
}

/* list-icon 이미지 공통 스타일 */
.list-icon img {
  width: 60px;
  height: 60px;

  transform-origin: center center;

  /* 기본 상태 */
  opacity: 0.4;
  transform: rotate(-45deg) translateX(0px);
  transition: all 0.4s cubic-bezier(0.25, 0.6, 0.25, 1);
}

/* Hover & Active 공통 적용 */
.list-item:hover .list-icon img,
.list-item.active .list-icon img {
  transform-origin: center center;
  opacity: 1;
  transform: rotate(0deg) translateX(0);
}

.list-item:hover .list-title,
.list-item.active .list-title {
  font-weight: 700;
  color: #000;
}

.list-item:hover .list-icon i {
  color: #000;
  transform: rotate(45deg);
}

/* section 4 - hot issue */
/* 위에 오는 서브 텍스트 */
.hot-issue-sub.top-sub {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 10px;
}

/* 제목 + 정보 가로 배치 */
.hot-issue-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* 제목 */
.hot-issue-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 20px;
}

/* 정보 오른쪽 정렬 */
.hot-issue-info {
  text-align: right;
}

.hot-issue-info p {
  margin: 0 0 5px;
  font-size: 1rem;
}

/* 모바일 대응 */
@media (max-width: 768px) {

  .hot-issue-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hot-issue-info {
    text-align: left;
  }

  .hot-issue-title {
    font-size: 1.5rem;
  }

  .hot-issue-info p {
    font-size: 0.9rem;
  }
}


/* section 4 - kead now */

.hot-issue-section {
  margin-top: 80px;
}

/* 제목 */
.kead-sub {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 8px;
}

[data-bs-theme="dark"] .kead-sub {
  color: #fff;
}

.kead-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

/* 버튼 */
.kead-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.kead-buttons .kead-btn img {
  width: 60px !important;
}

.kead-btn {
  width: 56px !important;
  height: 56px !important;
  background: none;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kead-btn:hover {
  color: #fff;
}

[data-bs-theme="dark"] .kead-btn.swiper-prev img {
  content: url("../images/main/btn_section_02_prev_w.png");
}

[data-bs-theme="dark"] .kead-btn.swiper-next img {
  content: url("../images/main/btn_section_02_next_w.png");
}

/* 카드 스타일 */
.keadSwiper .swiper-slide img {
  width: 100%;
  height: 200px;
  filter: grayscale(100%) brightness(70%);
  opacity: 0.8;
  transition: all 0.4s ease;
}

/* 활성 슬라이드: 컬러 + 선명하게 */
.keadSwiper .swiper-slide-active img {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
  transition: all 0.4s ease;
}

/* 스와이프 슬라이드 크기 */
.keadSwiper .swiper-slide {
  width: 440px;
  height: 200px;
}


/* 모바일 */
@media (max-width: 768px) {
  .kead-title {
    font-size: 1.4rem;
  }

  .keadSwiper .swiper-slide {
    width: 80vw;
  }
}

/* KEAD 웹툰 */
.m_kead_toon {
  margin-top: 100px;
  height: 345px;
  background-image: url(../images/main/bg_section_04_03_01.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.m_kead_toon .txt_m_kead_toon {
  height: 345px;
  padding-left: 110px;
}

.m_kead_toon .webtoon img.img_3d_toon {
  width: 320px;
  margin-right: 70px;
}

.m_kead_toon .webtoon img.txt_kead_toon {
  height: 215px;
}

[data-bs-theme="dark"] .m_kead_toon {
  background-image: none;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}

/* 모바일 */
@media (max-width: 768px) {
  .m_kead_toon {
    margin-top: 40px;
    height: auto;
    background-image: none;
  }

  .m_kead_toon .txt_m_kead_toon {
    height: auto;
    padding-left: 0px;
    padding-right: 0px;
  }
}

[data-bs-theme="dark"] .m_kead_toon .webtoon img.txt_kead_toon {
  content: url("../images/main/txt_section_04_03_01_dark.png");
}

.m_event {
  background-color: #F3F3F3;
  height: 340px;
}

.txt_m_event {
  padding: 60px 0 !important;
}

.txt_m_event img {
  height: 220px;
}

.img_m_event {
  position: absolute;
  right: 0;
  top: -100px;
}

.img_m_event img {
  height: 440px;
}

@media (max-width: 768px) {
  .m_event {
    height: auto;
  }
}

[data-bs-theme="dark"] .m_event {
  background-color: #212529;
}

[data-bs-theme="dark"] .txt_m_event img {
  content: url("../images/main/txt_section_04_03_02_w.png");
}


footer {
  padding: 60px 0;
}

section .section-title {
  text-align: left;
  margin-bottom: 20px !important;
}

.left_txt_s_1 {
  padding-left: 110px;
}

.right_s_1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 55vw;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .right_s_1 {
    width: 100vw;
  }
}

.section-2 {
  background-color: #fff;
  height: 640px;
  overflow: hidden;
  margin-top: 80px;
}

.txt_2_1 {
  padding: 80px 0 0 110px;
}

.txt_3_1 {
  padding: 80px 0 0 110px;
}

.kead-now-section {
  padding-left: 110px;
}

/* 반응형 구현 */
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  /* 전체 영역 높이 자동 */
  .main-visual-wrap {
    height: auto;
    margin-top: 40px;
    padding-bottom: 40px;
  }

  /* 배경 이미지 영역 전체폭 */
  .main-visual-bg {
    position: relative;
    width: 100%;
    height: 260px;
    background-position: center;
    background-size: cover;
  }

  /* 텍스트 박스 : 이미지 아래로 */
  .main-text-bg {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }

  .main-text-box {
    position: relative;
    top: 0;
    left: 0;
    padding: 0 20px;
    transform: none !important;
  }

  .visual-sub {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 8px;
  }

  .visual-title {
    font-size: 2rem;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }

  /* 카테고리 텍스트 */
  .main-category {
    position: relative;
    text-align: center;
    top: 0;
    right: 0;
    font-size: 1rem;
    margin-bottom: 12px;
  }

  /* 색상칩: 가로 배치 */
  .left-color-bars {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 18px;

    display: flex !important;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .left-color-bars div {
    width: 22px;
    height: 22px;
    border-radius: 3px;
    opacity: 0.5;
  }

  .left-color-bars div.active {
    opacity: 1;
  }

  /* Swiper 클릭 가능하도록 상대배치 */
  .mainVisualSwiper {
    height: auto;
    position: relative;
  }
}

/* SECTION 1 */
@media (max-width: 768px) {

  /* 기본 레이아웃 초기화 */
  .section-1 {
    margin: 40px 0;
    padding: 40px 0;
  }

  .section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .left_txt_s_1 {
    position: static;
    padding-left: 0px;
  }

  .section_1_txt {
    position: static;
    text-align: left;
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .section_1_txt h2 {
    font-size: 1.6rem;
    line-height: 1.35;
  }

  .section_1_txt h5 {
    font-size: 0.9rem;
  }

  .right_s_1 {
    position: static;
    margin-top: 20px;
  }

  .right_s_1 .swiper-slide {
    transform: none !important;
  }



  .section_1_txt {
    margin-top: 0;
    min-height: auto;
    padding: 0 20px;
  }

  /* 카테고리 Change Maker */
  .section_1_txt h5:nth-of-type(1) {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #000;
  }

  /* 제목 */
  .section_1_txt h2 {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .section_1_txt h2 span {
    font-weight: 900;
  }

  /* 출처 */
  .section_1_txt h5:nth-of-type(2) {
    font-size: 1.1rem;
    margin-bottom: 22px;
    display: inline-block;
  }

  /* 요약 텍스트 */
  .section_1_txt2 {
    font-size: 1.1rem;
    line-height: 1.6;
    padding-right: 0;
    -webkit-line-clamp: unset;
  }

  /* 버튼 제거 (모바일에서는 보통 제거하거나 아래로 이동) */
  .detail-btn {
    position: relative;
    margin-top: 28px;
    left: 0;
    width: 160px;
  }

  /* 모바일에서 오른쪽 이미지 swiper 영역 → 상단으로 이동 */
  section.position-relative>div[style*="position: absolute"] {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 40px;
  }

  .mySwiper .swiper-slide {
    width: 100% !important;
    height: 360px !important;
  }

  .mySwiper .swiper-slide img {
    border-radius: 8px;
  }
}

/* SECTION 2 */
@media(max-width: 768px) {

  /* section2 전체 */
  .section-2 {
    padding: 60px 0 80px;
    text-align: center;
    display: block;
  }

  .txt_2_1 {
    padding: 20px 0 20px 0px;
    z-index: 11;
    position: relative;
  }

  /* 타이틀 (함께 동행) */
  .section-title {
    font-size: 2.4rem;
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  /* 텍스트 block 전체 */
  .section_2_txt {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
  }

  /* 부제목 (세상을 바꾸는 만남) */
  .section_2_txt h5:nth-of-type(1) {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  /* 메인 제목 2줄 */
  .section_2_txt h2 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.4;
  }

  /* <span> 강조 */
  .section_2_txt h2 span {
    font-weight: 900;
  }

  /* 출처 */
  .section_2_txt h5:nth-of-type(2) {
    font-size: 1.1rem;
    margin-top: 14px;
  }

  /* 기존 PC용 화살표 영역 숨기기 */
  .section_2_controls {
    display: none !important;
  }

  /* 모바일 화살표 버튼 새로 배치 */
  .section_2_mobile_arrows {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    align-items: center;
  }

  .section_2_mobile_arrows button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: none;
    border: 2px solid #000;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* 인물 이미지 */
  .section_2_img {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    margin-top: 30px;
    text-align: center;
  }

  .section_2_img img {
    width: 80%;
    height: auto !important;
  }
}


/* SECTION 3 */
@media(max-width:768px) {

  /* section 전체 */
  section:nth-of-type(3) {
    padding: 40px 0;
  }

  /* 타이틀 중앙 정렬 */
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .txt_3_1 {
    padding: 80px 0 0px 0px;
  }

  /* 왼쪽(이미지 영역)은 모바일에서 전체 너비 */
  .txt_section_03_01 {
    padding: 0 20px;
    margin-bottom: 30px;
    text-align: center;
  }

  .txt_section_03_01 h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .txt_section_03_01 img {
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
  }

  .txt_section_03_01 .sub_txt {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* 오른쪽 리스트 PC 전용 → 모바일에서 감추기 */
  .list-wrap {
    display: none !important;
  }

  /* 모바일에서는 Swiper 카테고리 바 생성 */
  .section3-category-swiper {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
  }

  .section3-category-swiper .swiper-slide {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    padding: 10px 12px;
    border-radius: 20px;
    background: #f4f4f4;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0 8px;
  }

  .section3-category-swiper .swiper-slide-active {
    background: #000;
    color: #fff;
    font-weight: 700;
  }

  /* 이미지와 텍스트가 아래로 자연스럽게 정렬되도록 강제 full width */
  .col-4,
  .col-8 {
    width: 100% !important;
    padding: 0 !important;
  }

  .col-8 {
    margin-top: 0 !important;
  }
}

/* SECTION 4 - 핫이슈 */
@media (max-width: 768px) {

  /* 섹션 전체 */
  .hot-issue-section {
    margin-top: 40px;
  }

  /* "핫이슈 브리핑" */
  .hot-issue-sub.top-sub {
    font-size: 1.1rem;
    text-align: center;
    margin: 20px 0 24px;
    color: #777;
  }

  /* 이미지 */
  .hot-issue-image img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 28px;
  }

  /* 제목 */
  .hot-issue-title {
    font-size: 1.4rem !important;
    line-height: 1.45;
    margin: 0 0 20px;
    text-align: left;
  }

  /* 정보 텍스트 묶음 */
  .hot-issue-info {
    text-align: left !important;
    margin-top: 6px;
  }

  .hot-issue-info p {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  /* 전체 container 패딩 재정렬 */
  .hot-issue-wrap {
    padding: 0 20px !important;
  }

  /* 제목+정보 묶음 column 배치 */
  .hot-issue-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0 !important;
    margin-bottom: 10px;
  }
}

/* SECTION 4 - KEAD NOW */

/* PC 기본 */
.kead-now-section {
  padding-left: 0;
}

.keadSwiper .swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.kead-title {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
}

.kead-now {
  margin: 80px auto;
}

/* 모바일 */
@media (max-width: 768px) {

  .kead-now {
    margin: 40px auto;
  }

  /* 전체 레이아웃 중앙 정렬 */
  .kead-now-section {
    padding: 0 16px;
    text-align: center;
  }

  /* 제목 */
  .kead-title {
    font-size: 1.4rem;
    margin-top: 20px;
  }

  /* Swiper를 위로 */
  .keadSwiper {
    order: 2;
    width: 90%;
    margin: 0 auto 20px;
  }

  /* 슬라이드 크기 */
  .keadSwiper .swiper-slide {
    width: 90% !important;
  }

  /* 이미지 */
  .keadSwiper .swiper-slide img {
    height: 180px;
  }
}

/* SECTION-2 Swiper 안정화 */
.section2Swiper {
  overflow: unset !important;
}

.section2Swiper .swiper-slide {
  height: auto;
}

.section2Swiper .s2-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.section2Swiper .section_2_img img {
  display: block;
  width: 100%;
  height: auto;
}

/* 네비 버튼 기본 */
.section-2 .s2Prev,
.section-2 .s2Next {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

/* 접근성 포커스 */
.section2Swiper .s2-link:focus-visible,
.section-2 .s2Prev:focus-visible,
.section-2 .s2Next:focus-visible {
  outline: 3px solid #ff9800;
  outline-offset: 6px;
  border-radius: 8px;
}

/* section-2 버튼 */
.s2-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.s2-detail-btn:hover {
  background: #222;
}

.s2-detail-btn:focus-visible {
  outline: 3px solid #ff9800;
  outline-offset: 4px;
}

/* 슬라이드 전체는 클릭 불가 느낌 */
.section2Swiper .swiper-slide {
  cursor: default;
}

.section2-controls {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.section2-controls button {
  border: none;
  background: transparent;
  cursor: pointer;
}

.section2-controls img {
  height: 70px;
}

@media (max-width: 768px) {
  .section2-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 10;
  }
}


/* 커버 패럴렉스 영역 */
.cover-parallax {
  position: relative;
  height: calc(100vh - 130px);
  overflow: hidden;
}

/* 이미지 레이어 */
.cover-bg {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url("../images/main/img_m_cover.png") center top no-repeat;
  background-size: cover;
}

/* 텍스트 */
.cover-text {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);  
  color: #000;
  z-index: 2;
  text-align: center;
  opacity: 0;
}


/* 타이포 */
.cover-sub {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cover-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.25;
}

.cover-title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 10px;
}

/* 모바일 대응 */
@media (max-width: 991px) {
  .cover-text {
    right: 5%;
    left: 5%;
    text-align: left;
  }

  .cover-title {
    font-size: 2rem;
  }
}