@charset "UTF-8";
/* ==========================================================================
   CARBON 2027 BRAND SCSS (Main Color Theme: #2996D6 / Font: Gmarket Sans)
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
@font-face {
  font-family: "GmarketSansBold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "GmarketSansMedium";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "GmarketSansLight";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
/* 폰트 및 핵심 브랜드 컬러셋 바인딩 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GmarketSansMedium", sans-serif !important;
}

body {
  color: #111625;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 🖼️ [이미지 영역 1] 헤더 로고 */
.img-area-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 48px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.img-area-logo .logo-fallback {
  font-size: 20px;
  font-weight: 700;
  color: #111625;
  letter-spacing: -0.5px;
}

/* ==========================================
   IMAGE_511BDE.PNG 관련 스타일 (HEADER & HERO)
   ========================================== */
.headerSection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #121212;
  transition: background-color 0.1s ease;
}
.headerSection::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 270px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #121212;
  background: linear-gradient(95deg, #fff 40.56%, rgba(255, 255, 255, 0) 108.16%), url("../image/main/headerbg.png") lightgray 50%/cover no-repeat;
  background-size: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.25s;
  z-index: 1;
}
.headerSection.mega-open {
  background-color: #ffffff;
}
.headerSection.mega-open::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.headerSection.mega-open .sub-menu-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
.headerSection.mega-open .sub-menu-wrapper .depth-2 {
  gap: 12px;
}
.headerSection .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.headerSection .nav-links {
  width: 100%;
  padding-left: 64px;
}
.headerSection .nav-links .depth-1 {
  display: flex;
  list-style: none;
  width: 100%;
}
.headerSection .nav-links .depth-1 > li {
  min-width: 16.6666666667%;
  max-width: 16.6666666667%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.headerSection .nav-links .depth-1 > li > a {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  display: block;
  padding: 10px 0 20px;
  transition: color 0.2s ease;
}
.headerSection .nav-links .depth-1 > li:hover > a {
  color: #2996d6;
}
.headerSection .nav-links {
  /* 🌊 🚀 2뎁스 글자가 하얀 배경판 너머 위로 튀는 계층 간섭 쉴딩 처리 */
}
.headerSection .nav-links .sub-menu-wrapper {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  padding: 40px 0 25px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-24px);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s;
  z-index: 100;
}
.headerSection .nav-links .depth-2 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.headerSection .nav-links .depth-2 li {
  width: 100%;
}
.headerSection .nav-links .depth-2 li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  text-decoration: none;
  text-align: center;
  transition: color 0.1s ease, transform 0.2s ease;
  white-space: normal !important;
}
.headerSection .nav-links .depth-2 li a:hover {
  color: #2996d6;
}
.headerSection .hamburger {
  display: none;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.headerSection .hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #111;
  margin-bottom: 5px;
  transition: 0.3s ease;
}
.headerSection .hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.headerSection .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.headerSection .hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.headerSection {
  /* 📱 모바일 반응형 이식 (브레이크 포인트) */
}
@media (max-width: 1199px) {
  .headerSection {
    padding: 16px 0;
  }
  .headerSection::before {
    display: none !important;
  }
  .headerSection .nav-links {
    position: fixed;
    top: 80px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
    padding: 24px;
  }
  .headerSection .nav-links.active {
    left: 0;
  }
  .headerSection .nav-links .depth-1 {
    flex-direction: column;
    gap: 0;
  }
  .headerSection .nav-links .depth-1 > li {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
    position: static;
    max-width: none !important;
    min-width: none !important;
    display: block;
  }
  .headerSection .nav-links .depth-1 > li > a {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
  }
  .headerSection .nav-links .sub-menu-wrapper {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0 0 16px 12px;
    display: none;
    background: #f8fafc;
  }
  .headerSection .nav-links .depth-2 {
    gap: 8px !important;
  }
  .headerSection .nav-links .depth-2 li a {
    padding: 10px 16px;
    color: #475569;
    text-align: left;
  }
  .headerSection .hamburger {
    display: block;
  }
}

.heroSection {
  position: relative;
  width: 100%;
}
.heroSection .mainHeroSwiper {
  width: 100%;
  aspect-ratio: 1920/760;
  min-height: 480px;
  overflow: hidden;
}
.heroSection .swiper-slide {
  display: flex;
  align-items: center;
  will-change: transform, opacity;
}
.heroSection .swiper-slide .img-area-hero,
.heroSection .swiper-slide .slideTitle-container {
  transition: filter 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.heroSection .swiper-slide .img-area-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.heroSection .swiper-slide .slideTitle-container {
  position: relative;
  z-index: 5;
  width: 100%;
}
.heroSection .swiper-slide .slideTitle h1.splitting-title {
  margin-bottom: 0px;
  display: block;
  overflow: hidden;
}
.heroSection .swiper-slide .slideTitle h1.splitting-title strong {
  color: #001a2d;
  font-family: "GmarketSansBold", sans-serif !important;
  font-size: 71.822px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  display: inline-block;
  margin-right: 12px;
}
.heroSection .swiper-slide .slideTitle h1.splitting-title strong span.char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}
.heroSection .swiper-slide .slideTitle h1.splitting-title > span {
  color: #001a2d;
  font-family: "GmarketSansLight", sans-serif !important;
  font-size: 71.825px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: inline-block;
}
.heroSection .swiper-slide .slideTitle h1.splitting-title > span span.char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}
.heroSection .swiper-slide .slideTitle h1.splitting-title > span.char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}
.heroSection .swiper-slide .slideTitle .hero-venue {
  color: #0d4064;
  font-family: "Gmarket Sans";
  font-size: 16.409px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.973px */
}
.heroSection .swiper-slide .slideTitle .hero-date {
  color: #0d4064;
  font-family: "GmarketSansMedium", sans-serif !important;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.heroSection .swiper-slide {
  /* --------------------------------------------------------
  🎯 Swiper 활성화 시 strong 안의 글자든, span 안의 글자든 일제히 애니메이션 트리거
  -------------------------------------------------------- */
}
.heroSection .swiper-slide .swiper-slide-active .slideTitle h1.splitting-title strong span.char,
.heroSection .swiper-slide .swiper-slide-active .slideTitle h1.splitting-title > span span.char,
.heroSection .swiper-slide .swiper-slide-active .slideTitle h1.splitting-title > span.char {
  animation: letterReveal 0.65s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}
.heroSection .swiper-slide.swiper-slide-next {
  z-index: 1 !important;
  transition: 0.8s;
  opacity: 0.5;
  overflow: hidden;
}
.heroSection .swiper-slide.swiper-slide-next .img-area-hero {
  transform: scale(1.1) translateX(-10%);
}
.heroSection .swiper-slide.swiper-slide-next .img-area-hero {
  filter: blur(0px) brightness(1);
  transform: scale(1);
  opacity: 1;
}
.heroSection .swiper-slide.swiper-slide-next .slideTitle {
  filter: blur(0px);
  opacity: 1;
  transform: translateX(0);
}
.heroSection .swiper-slide {
  /* 포개지는 이전 슬라이드 */
}
.heroSection .swiper-slide.swiper-slide-prev {
  z-index: 1 !important;
  transition: 0.8s;
  opacity: 0.5;
  overflow: hidden;
  filter: blur(42px);
}
.heroSection .swiper-slide.swiper-slide-prev .img-area-hero {
  transform: scale(1.1) translateX(10%);
}
.heroSection .swiper-slide.swiper-slide-prev .slideTitle {
  opacity: 0;
  transform: translateX(0px);
}
.heroSection .swiper-slide.swiper-slide-prev h1.splitting-title span.char {
  animation: letterReveal 0.65s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
}
.heroSection .swiper-slide {
  /* 선명하게 튀어나오는 활성 슬라이드 -> 글자 팝업 실행 */
}
.heroSection .swiper-slide.swiper-slide-active {
  z-index: 2 !important;
  transition: 0.4s;
}
.heroSection .swiper-slide.swiper-slide-active .img-area-hero {
  filter: blur(0px) brightness(1);
  transform: scale(1);
  opacity: 1;
}
.heroSection .swiper-slide.swiper-slide-active .slideTitle {
  filter: blur(0px);
  opacity: 1;
  transform: translateX(0);
}
.heroSection .swiper-slide.swiper-slide-active .slideTitle h1.splitting-title span.char {
  animation: letterReveal 0.65s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.heroSection .swiper-pagination.white-bar .swiper-pagination-bullet-active {
  background-color: #fff !important;
}
.heroSection .swiper-slide.text-white .swiper-pagination-bullet-active {
  background-color: #2996d6 !important;
}
.heroSection .swiper-slide.text-white h1.splitting-title strong {
  color: #fff !important;
}
.heroSection .swiper-slide.text-white h1.splitting-title strong span.char {
  color: #fff !important;
}
.heroSection .swiper-slide.text-white h1.splitting-title span span.char {
  color: #fff !important;
}
.heroSection .swiper-slide.text-white .hero-venue {
  color: #fff !important;
}
.heroSection .swiper-slide.text-white .hero-date {
  color: #fff !important;
}
.heroSection .hero-controls {
  position: absolute;
  top: 50%;
  transform: translateY(110px);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 50;
  pointer-events: none;
}
.heroSection .hero-controls .controls-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: auto;
}
.heroSection .hero-controls .swiper-pagination {
  position: relative;
  display: flex;
  gap: 8px;
  bottom: auto;
  left: auto;
  width: auto;
  width: 256px;
}
.heroSection .hero-controls .swiper-pagination .swiper-pagination-bullet {
  width: 72px;
  height: 3px;
  border-radius: 0px;
  background: #b2b2b2;
  opacity: 0.5;
  margin: 0 !important;
  transition: all 0.4s ease;
}
.heroSection .hero-controls .swiper-pagination .swiper-pagination-bullet-active {
  background: #0d4064;
  opacity: 1;
  width: 100%;
  max-width: none;
}
.heroSection .hero-controls .control-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.heroSection .hero-controls .control-btns button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #001a2d;
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.heroSection .hero-controls .control-btns button:hover {
  color: #2996d6;
}
@media (max-width: 992px) {
  .heroSection .mainHeroSwiper {
    height: 580px;
    aspect-ratio: auto;
  }
  .heroSection .mainHeroSwiper .swiper-slide .splitting-title .char {
    font-size: 36px;
  }
  .heroSection .mainHeroSwiper .swiper-slide .hero-date {
    font-size: 15px;
  }
  .heroSection .mainHeroSwiper .swiper-slide .hero-venue {
    font-size: 13px;
  }
  .heroSection .hero-controls {
    top: auto;
    bottom: 50px;
    transform: translateY(0);
  }
  .heroSection .hero-controls .controls-inner {
    width: 100%;
    justify-content: center;
  }
  .heroSection .hero-controls .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
  }
}

/* 위로 정밀 감속하며 솟구치는 키프레임 */
@keyframes letterReveal {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ==========================================
   IMAGE_511BBF.PNG 관련 스타일 (IMPORTANT DATES)
   ========================================== */
.importantDateSection {
  position: relative;
  margin-top: -3px;
  z-index: 30;
  background-color: #f7fafc;
}
.importantDateSection .container {
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .importantDateSection .container {
    transform: none;
    padding-top: 20px;
  }
}
.importantDateSection .cards-grid {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.importantDateSection .cards-grid .card:last-child {
  border-radius: 0 0 64px 0;
}
@media (max-width: 1024px) {
  .importantDateSection .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: transparent;
  }
}
@media (max-width: 640px) {
  .importantDateSection .cards-grid {
    grid-template-columns: 1fr;
  }
}
.importantDateSection .card {
  background: #edf8fd;
  padding: 20px 20px;
  min-height: 144px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 0px;
  border: none;
  transition: background-color 0.2s ease;
  background: rgba(255, 255, 255, 0.53);
  box-shadow: 2px 2px 18.8px 0 rgba(41, 150, 214, 0.31);
  backdrop-filter: blur(12.5812950134px);
}
.importantDateSection .card .card-tag {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.35;
  margin-bottom: 16px;
}
.importantDateSection .card .card-date {
  font-size: 24px;
  font-weight: 700;
  color: #222;
}
.importantDateSection .card .card-date .card-year {
  display: block;
  font-weight: 100;
  margin-top: 4px;
  font-size: 24px;
  opacity: 0.5;
}
.importantDateSection .card.active {
  background-color: #2996d6;
}
.importantDateSection .card.active .card-tag {
  color: rgba(255, 255, 255, 0.9);
}
.importantDateSection .card.active .card-date {
  color: #ffffff;
}
.importantDateSection .card.active .card-date .card-year {
  color: rgba(255, 255, 255, 0.65);
}
.importantDateSection .card.active {
  /* 🖼️ [이미지 영역 3] 첫 번째 카드의 느낌표 아이콘 플레이스홀더 */
}
.importantDateSection .card.active .img-area-exclamation {
  position: absolute;
  bottom: -10%;
  right: -5%;
}
.importantDateSection .card.active .img-area-exclamation svg {
  position: absolute;
  bottom: -30%;
  right: -30%;
  transform: rotate(0deg) translate(100%, 0%) scale(-1);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.005, 0.02, 0.001, 1), opacity 3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.importantDateSection .card.active.aos-init.aos-animate .img-area-exclamation svg {
  opacity: 1;
  transform: rotate(0deg) translate(0, 0) scale(1);
}

/* ==========================================
   IMAGE_511BA0.PNG 관련 스타일 (CONTENT ZONE)
   ========================================== */
/* ==========================================
   CONTENT ZONE: 2단 연사+뉴스 / 1단 다운로드
   ========================================== */
.mainContentSection {
  position: relative;
  width: 100%;
  padding: 16px 0 80px;
  background: linear-gradient(180deg, #f7fafc 80.09%, rgba(222, 240, 255, 0.4392156863) 90.99%);
  overflow: hidden;
}
.mainContentSection .container {
  position: relative;
  z-index: 5;
}
.mainContentSection {
  /* 💡 상단 2단 그리드 (연사 / 뉴스) */
}
.mainContentSection .content-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .mainContentSection .content-grid-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.mainContentSection {
  /* 👨‍🏫 연사(Speaker) 구역 스타일 */
}
.mainContentSection .speakerSection {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mainContentSection .speakerSection .speakerSwiper {
  width: 100%;
  position: relative;
}
.mainContentSection .speakerSection .speakerSwiper .swiper-slide-prev {
  transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) !important;
  opacity: 0;
  transform: scale(0.88);
}
.mainContentSection .speakerSection .speakerSwiper .swiper-slide-next {
  transform: scale(0.88);
  transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) !important;
  opacity: 0;
}
.mainContentSection .speakerSection .speakerSwiper .swiper-slide {
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.mainContentSection .speakerSection .speakerSwiper .swiper-slide:active {
  transform: scale(0.96);
}
.mainContentSection .speakerSection .speakerSwiper {
  /* ==========================================
     ✨ 슬라이더 양쪽 그라데이션 가림막 추가
     ========================================== */
}
.mainContentSection .speakerSection .speakerSwiper::before, .mainContentSection .speakerSection .speakerSwiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px; /* 그라데이션 너비 (필요시 조절) */
  z-index: 10; /* 슬라이드보단 위로 */
  pointer-events: none; /* 🚀 클릭 쉴딩 (드래그나 버튼 클릭 방해 방지) */
}
.mainContentSection .speakerSection .speakerSwiper {
  /* 왼쪽 그라데이션 (왼쪽이 진하고 오른쪽으로 투명해짐) */
}
.mainContentSection .speakerSection .speakerSwiper::before {
  left: 0;
  background: linear-gradient(90deg, #f7fafc 0%, rgba(239, 245, 250, 0) 100%);
}
.mainContentSection .speakerSection .speakerSwiper {
  /* 오른쪽 그라데이션 (오른쪽이 진하고 왼쪽으로 투명해짐) */
}
.mainContentSection .speakerSection .speakerSwiper::after {
  right: 0;
  background: linear-gradient(270deg, #f7fafc 0%, rgba(239, 245, 250, 0) 100%);
}
.mainContentSection .speakerSection .speakerSwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mainContentSection .speakerSection .speakerSwiper .speaker-img-wrap {
  max-width: 314px;
  overflow: hidden;
}
.mainContentSection .speakerSection .speakerSwiper .speaker-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 96px 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainContentSection .speakerSection .speakerSwiper .speaker-info {
  width: 100%;
  display: flex;
  justify-content: left;
  flex-direction: column;
  max-width: 314px;
}
.mainContentSection .speakerSection .speakerSwiper .speaker-info .speaker-name {
  text-align: left;
  font-family: "GmarketSansBold", sans-serif;
  font-size: 20px;
  color: #0c3b57;
  margin-bottom: 8px;
}
.mainContentSection .speakerSection .speakerSwiper .speaker-info .speaker-desc {
  text-align: left;
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}
.mainContentSection .speakerSection .speakerSwiper {
  /* 스와이퍼 커스텀 동그란 화살표 */
}
.mainContentSection .speakerSection .speakerSwiper .swiper-button-prev,
.mainContentSection .speakerSection .speakerSwiper .swiper-button-next {
  display: flex;
  width: 64px;
  height: 65px;
  padding: 10px 16px 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
  border-radius: 19px;
  opacity: 0.53;
  background: rgba(144, 152, 158, 0.562);
  z-index: 20; /* 🚀 화살표가 그라데이션보다 무조건 위에 오도록 격상 */
}
.mainContentSection .speakerSection .speakerSwiper .swiper-button-prev::after,
.mainContentSection .speakerSection .speakerSwiper .swiper-button-next::after {
  font-size: 24px;
  font-weight: 900;
  color: #fff !important;
}
.mainContentSection .speakerSection .speakerSwiper .swiper-button-prev:hover,
.mainContentSection .speakerSection .speakerSwiper .swiper-button-next:hover {
  background: #2996d6;
  color: #ffffff !important;
}
.mainContentSection .speakerSection .speakerSwiper .swiper-button-prev {
  left: 0 !important;
  padding-left: 16px;
}
.mainContentSection .speakerSection .speakerSwiper .swiper-button-next {
  right: 0 !important;
  padding-left: 20px !important;
}
.mainContentSection {
  /* 📰 뉴스 섹션 및 1단 다운로드 그리드 */
}
.mainContentSection .carbonNewsSection .news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mainContentSection .carbonNewsSection .news-header .btnWrap-nav button {
  border: 1.25px solid rgba(12, 59, 87, 0.2);
  background: #ffffff;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #64748b;
}
.mainContentSection .carbonNewsSection .news-header .btnWrap-nav button:hover {
  background-color: rgba(41, 150, 214, 0.062745098);
  border-color: #2996d6;
}
.mainContentSection .carbonNewsSection .news-header .btnWrap-nav button:hover svg path {
  stroke: #0c4a6e;
}
.mainContentSection .carbonNewsSection .news-list .news-item {
  display: flex;
  justify-content: space-between;
  padding: 24px 16px;
  text-decoration: none;
  font-size: 14.5px;
  color: #334155;
  border-bottom: 1px solid #dde4e9;
  transition: padding-left 0.2s;
}
.mainContentSection .carbonNewsSection .news-list .news-item .news-title {
  color: #0c3b57;
  font-family: "Gmarket Sans";
  font-size: 15px;
  font-weight: 700;
}
.mainContentSection .carbonNewsSection .news-list .news-item .news-date {
  color: #777;
  font-size: 14px;
}
.mainContentSection .carbonNewsSection .news-list .news-item:hover .news-title {
  color: #2996d6;
}
.mainContentSection .carbonNewsSection .news-list .news-item:hover {
  padding-left: 20px;
}
.mainContentSection .downloadGridSection .quick-grid.horizontal-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .mainContentSection .downloadGridSection .quick-grid.horizontal-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .mainContentSection .downloadGridSection .quick-grid.horizontal-layout {
    grid-template-columns: 1fr;
  }
}
.mainContentSection .downloadGridSection .quick-box {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  cursor: pointer;
  padding: 36px 24px;
  box-shadow: 2px 2px 18.8px 0 rgba(41, 150, 214, 0.15);
  transition: 0.3s;
  border: 2px solid #fff;
  border-radius: 0px;
}
.mainContentSection .downloadGridSection .quick-box:hover {
  background: linear-gradient(90deg, rgba(63, 178, 245, 0.0823529412), rgba(63, 178, 245, 0));
  border-color: rgba(41, 150, 214, 0.3764705882);
}
.mainContentSection .downloadGridSection .quick-box:active {
  transform: scale(0.97);
}
.mainContentSection .downloadGridSection .quick-box .img-area-dot-bg {
  position: absolute;
  left: 0px;
  transform: translateX(-40%);
  bottom: 16px;
  width: 144px;
  opacity: 0.3;
}
.mainContentSection .downloadGridSection .quick-box .img-area-dot-bg img {
  width: 100%;
}
.mainContentSection .downloadGridSection .quick-box .box-inner {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mainContentSection .downloadGridSection .quick-box .box-inner h3 {
  color: #0c3b57;
  font-size: 16px;
  font-weight: 700;
}
.mainContentSection .downloadGridSection .quick-box.tba::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(41, 150, 214, 0.062745098);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.mainContentSection .downloadGridSection .quick-box.tba .tbaBadge {
  opacity: 0;
  z-index: 6;
  border-radius: 12px;
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  padding: 6px 10px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: center;
  transform: translate(-50%, -20%);
}
.mainContentSection .downloadGridSection .quick-box.tba .tbaBadge span {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 100;
  color: #2996d6;
}
.mainContentSection .downloadGridSection .quick-box.tba .tbaBadge .dotWrap {
  display: flex;
  align-items: center;
  gap: 4px; /* 점들 사이의 간격 */
  display: none;
}
.mainContentSection .downloadGridSection .quick-box.tba .tbaBadge .dot {
  width: 6px;
  height: 6px;
  background-color: #2996d6;
  border-radius: 50%; /* 완벽한 원형 */
  /* 애니메이션 적용: 무한반복, 부드러운 타이밍(ease-in-out) */
  animation: loadingWave 1.2s ease-in-out infinite;
  /* 점마다 딜레이를 주어 순차적으로 움직이게 설정 */
}
.mainContentSection .downloadGridSection .quick-box.tba .tbaBadge .dot:nth-child(1) {
  animation-delay: 0s;
}
.mainContentSection .downloadGridSection .quick-box.tba .tbaBadge .dot:nth-child(2) {
  animation-delay: 0.15s;
}
.mainContentSection .downloadGridSection .quick-box.tba .tbaBadge .dot:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes loadingWave {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px); /* 위로 살짝 통통 튀는 효과 */
  }
}
.mainContentSection .downloadGridSection .quick-box.tba:hover::after {
  opacity: 1;
}
.mainContentSection .downloadGridSection .quick-box.tba:hover .tbaBadge {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.mainContentSection .organic-wave-wrapper {
  position: absolute;
  opacity: 0.8;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 2;
  pointer-events: none;
}
.mainContentSection .organic-wave-wrapper canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.h1Title {
  color: #001a2d;
  font-family: "Gmarket Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 36px */
  display: flex;
  gap: 12px;
  align-items: center;
}
.h1Title::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 20px;
  margin-bottom: 6px;
  border-radius: 4px;
  background-color: #2996d6;
}

/* News Section */
.carbonNewsSection .news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.carbonNewsSection .news-header .btnWrap-nav button {
  border: 1.25px solid rgba(12, 59, 87, 0.4);
  background: #ffffff;
  width: 40px;
  height: 40px;
  transition: 0.2s;
  cursor: pointer;
  color: #64748b;
}
.carbonNewsSection .news-header .btnWrap-nav button svg {
  transition: 0.2s;
}
.carbonNewsSection .news-header .btnWrap-nav button:hover {
  background-color: rgba(41, 150, 214, 0.062745098);
  color: #ffffff;
  border-color: #2996d6;
}
.carbonNewsSection .news-header .btnWrap-nav button:hover svg path {
  stroke: #0c4a6e;
}
.carbonNewsSection .news-list .news-item {
  display: flex;
  justify-content: space-between;
  padding: 24px 16px;
  text-decoration: none;
  font-size: 14.5px;
  color: #334155;
  transition: padding-left 0.2s ease;
  border-bottom: 1px solid #dde4e9;
}
.carbonNewsSection .news-list .news-item .news-title {
  color: #0c3b57;
  font-family: "Gmarket Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.carbonNewsSection .news-list .news-item .news-date {
  color: #777;
  font-family: "Gmarket Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
}
.carbonNewsSection .news-list .news-item:hover .news-title {
  color: #2996d6;
}
.carbonNewsSection .news-list .news-item:hover {
  padding-left: 4px;
}

/* Download Grid (우상단/좌하단 각각 비대칭 곡률 완벽 반영) */
.downloadGridSection .quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.downloadGridSection .quick-box {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  cursor: pointer;
  padding: 36px 23px;
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 2px 2px 18.8px 0 rgba(41, 150, 214, 0.15);
}
.downloadGridSection .quick-box:first-child {
  border-radius: 64px 0 0 0;
}
.downloadGridSection .quick-box:last-child {
  border-radius: 0 0 61px 0;
}
.downloadGridSection .quick-box {
  transition: 0.3s;
}
.downloadGridSection .quick-box:hover {
  background: linear-gradient(90deg, rgba(63, 178, 245, 0.1254901961), rgba(63, 178, 245, 0));
  border: 2px solid rgba(41, 150, 214, 0.3764705882);
}
.downloadGridSection .quick-box:hover .icon-download {
  color: #2996d6;
}
.downloadGridSection .quick-box:active {
  transition: 0.1s;
  transform: scale(0.96);
}
.downloadGridSection .quick-box {
  /* 🖼️ [이미지 영역 4] 다운로드 박스의 도트 패턴 배경 마킹 */
}
.downloadGridSection .quick-box .img-area-dot-bg {
  position: absolute;
  left: -35px;
  top: 60px;
  width: 64px;
  height: 56px;
  z-index: 1;
  background-size: 7px 7px;
  opacity: 0.4;
}
.downloadGridSection .quick-box .box-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.downloadGridSection .quick-box .box-inner h3 {
  text-align: left;
  width: 100%;
  color: #0c3b57;
  font-family: "Gmarket Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}
.downloadGridSection .quick-box .box-inner .icon-download {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-size: 24px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

/* ==========================================
   IMAGE_511B7F.PNG 관련 스타일 (ORGANIZER & FOOTER)
   ========================================== */
.organizationSection {
  background-color: #ffffff;
  padding: 26px 0;
  border-top: 1px solid #e2e8f0;
}
.organizationSection .org-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
  gap: 20px;
}
.organizationSection .org-inner .org-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .organizationSection .org-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.organizationSection .org-inner h4 {
  font-size: 14px;
  color: #43556e;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  gap: 8px;
  align-items: center;
}
.organizationSection .org-inner h4::before {
  width: 3px;
  background-color: #2996d6;
  height: 12px;
  content: "";
}
.organizationSection .org-inner .orgList {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.organizationSection .org-inner .orgList .org-item {
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.organizationSection .org-inner .orgList .org-item .org-logo-zone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerSection {
  background-color: #0b111e;
  padding: 36px 0;
  color: #64748b;
  font-size: 13px;
}
.footerSection .secretariat {
  text-align: center;
}
.footerSection .secretariat h4 {
  color: #ffffff;
  font-size: 14.5px;
  margin-bottom: 8px;
  font-weight: 700;
}
.footerSection .secretariat p {
  margin-bottom: 4px;
}
.footerSection .secretariat strong {
  color: #94a3b8;
}
.footerSection .secretariat a {
  color: #2996d6;
  text-decoration: none;
}

/* 🔄 기하학 배경 구동 애니메이션 키프레임 */
@keyframes floatingGeometric {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}/*# sourceMappingURL=main.css.map */