*{box-sizing:border-box;margin:0;padding:0;}
    body{font-family:'Segoe UI',sans-serif;color:#333;line-height:1.6;}
    a{color:#d90000;text-decoration:none;}
    img{max-width:100%;display:block;}
    .container{max-width:1200px;margin:0 auto;padding:0 20px;}

#nav .dropdown {
  position: relative;
}

#nav .dropdown .mnuList {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 200px;
}

#nav .dropdown .mnuList li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  white-space: nowrap;
}

    /* Hero */
 .rolling-banner-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 5%;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
  flex-wrap: wrap;
  gap: 60px;
  min-height: 780px;
  position: relative;
}

.text-wrapper {
  max-width: 520px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rolling-banner-left {
  flex: 1 1 480px;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rolling-banner-left h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.rolling-banner-left h3 .strong {
  font-weight: bold;
  color: #FC5230;
}
.rolling-banner-left .desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}
.rolling-banner-left .main-slogan {
  font-size: 2.4rem;
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #000;
  line-height: 1.4;
}
.rolling-banner-left .highlight {
  color: #FC5230;
  font-weight: 900;
}
.rolling-banner-left .highlight-bg {
  background: #d9f3ff;
  padding: 4px 8px;
  border-radius: 8px;
}
.rolling-banner-left .partner {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #666;
}

.rolling-banner-right-wrapper {
  display: flex;
  gap: 20px;
  height: 460px;
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.rolling-track-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: scroll-up 14s linear infinite;
}
.rolling-track-column.delay {
  animation: scroll-up 10s linear infinite;
  animation-delay: 3s;
}
.rolling-item {
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.rolling-item img {
  width: 160px;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rolling-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

@keyframes scroll-up {
  0% { transform: translateY(100%); }
  100% { transform: translateY(-500%); }
}

@media (max-width: 768px) {
  .rolling-item img {
    width: 140px;
    height: 140px;
  }
}


/* ===================== Rolling Gallery (°¡·Î ·Ñ¸µ) ===================== */

.rolling-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  background: #f8fafe;
  padding: 40px 10px;
}

.rolling-track {
  display: flex;
  animation: scroll-left 25s linear infinite;
  gap: 20px;
}
.rolling-track.reverse {
  animation-direction: reverse;
  animation-duration: 30s;
}

/* ¾Æ·¡ÂÊ ·Ñ¸µ ÀÌ¹ÌÁö ½ºÅ¸ÀÏ */
.rolling-track img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}
.rolling-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .rolling-track img {
    width: 240px;
    height: 180px;
  }
}
    /* Section Titles */
    section{padding:80px 0;}
    section h2{font-size:2rem;margin-bottom:1rem;text-align:center;position:relative;}
    section h2::after{content:'';width:60px;height:4px;background:#d90000;display:block;margin:12px auto 0;}

    /* tab */
 .tabs {
    margin-top: 100px;
    text-align: center;
    background-color: #f9f9f9;
    padding: 40px 20px;
  }
  .tab-wrapper {
    max-width: 1080px;
    margin: 0 auto;
  }
  .tab-nav {
    gap: 16px;
  }
  .tab-nav .nav-item {
    flex: 1;
    max-width: 220px;
  }
  .tab-link {
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #ccc;
    color: #333;
    padding: 20px 10px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .tab-link:hover {
    background-color: #fff0f0;
    border-color: #d90000;
    color: #d90000;
  }
  .tab-link.active {
    background-color: #d90000;
    color: #fff;
    border-color: #d90000;
    box-shadow: 0 8px 16px rgba(217, 0, 0, 0.3);
  }
      
 
      
.facility-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  background: #f8fafe;
}

.facility-slider {
  flex: 1 1 500px;
  max-width: 600px;
  position: relative;
}

.facility-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin: auto;
  height: auto;
  overflow: hidden;
}

.facility-image-wrapper img {
  width: 100%;
  max-width: 800px;
  height: auto !important;
  object-fit: cover;
  display: block;
}

.facility-slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}
.arrow.prev { left: 10px; }
.arrow.next { right: 10px; }

@media (max-width: 768px) {
  .facility-image-wrapper {
    height: 250px;
  }
}

    .facility-text {
      flex: 1 1 400px;
      max-width: 600px;
    }
    .facility-text h2 {
      font-size: 22px;
      color: #d63384;
      margin-bottom: 12px;
    }
    .facility-text h3 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .facility-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
    }
      
@media (max-width: 768px) {
  .facility-image-wrapper {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .facility-image-wrapper img {
    max-height: 100%;
    width: auto;
  }
}
      
      
.schedule-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(to bottom right, #fdf2f2, #ffe5e5);
  padding: 40px 20px;
}
.schedule-image {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: center;
}
.schedule-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  border: 8px solid white;
  box-shadow: 0 4px 20px rgba(217, 0, 0, 0.15);
}
.schedule-table {
  flex: 1 1 400px;
  max-width: 600px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(217, 0, 0, 0.05);
}
.schedule-table table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table th, .schedule-table td {
  padding: 10px 15px;
  text-align: left;
}
.schedule-table tr.active {
  background: #ffeded;
  font-weight: bold;
}
      
    /* Process Steps */
  .process {
      padding: 60px 20px;
      background: #ffffff;
      text-align: center;
    }
    .process h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 2rem;
    }
    .process-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .process-item {
      background: #f9fafb;
      border-radius: 12px;
      padding: 20px;
      width: 200px;
      text-align: center;
      box-shadow: 0 6px 16px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .process-item img {
      width: 80px;
      height: 80px;
      margin: 0 auto 15px;
      display: block;
    }
    .process-item h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1f2937;
    }
    /* Facilities */
    .facilities-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin-top:40px;}
    .facility-item{position:relative;overflow:hidden;border-radius:8px;}
    .facility-item img{transition:transform .5s;}
    .facility-item:hover img{transform:scale(1.1);}    
    .facility-item .overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.4);opacity:0;display:flex;align-items:center;justify-content:center;transition:opacity .3s;}
    .facility-item:hover .overlay{opacity:1;}
    .facility-item .overlay span{color:#fff;font-size:1.1rem;}

   /* Testimonials */
    .swiper { padding: 40px 0; }
    .swiper-slide {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
    }
    .testimonial-img {
      width: 320px;
      height: 180px;
      border-radius: 12px;
      object-fit: cover;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    .testimonial-text {
      font-style: italic;
      margin-bottom: 10px;
    }
    .testimonial-author {
      font-weight: bold;
    }
      
      
      
      
        .highlight-list {
      background: linear-gradient(to right, #fefefe, #f3f8ff);
      padding: 60px 20px;
      text-align: center;
    }
    .highlight-list h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
      color: #111827;
    }
    .highlight-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 960px;
      margin: 0 auto;
    }
    .highlight-item {
      background: white;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.05);
      padding: 1.5rem;
      width: 280px;
      font-size: 1rem;
      color: #374151;
      transition: transform 0.3s ease;
    }
    .highlight-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
      
      
      
    /* FAQ */
    .faq-item{margin-bottom:15px;border-bottom:1px solid #ddd;padding-bottom:10px;}
    .faq-item h4{cursor:pointer;position:relative;padding-right:20px;}
    .faq-item h4::after{content:'+';position:absolute;right:0;}
    .faq-item.open h4::after{content:'-';}
    .faq-item p{display:none;padding-top:10px;}
    .faq-item.open p{display:block;}

    /* CTA */
.cta {
    background: linear-gradient(135deg, #d90000, #ff4d4d);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
  }
  .cta-container {
    max-width: 800px;
    margin: 0 auto;
  }
  .cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }
  .cta-title .highlight {
    color: #ffeb3b;
  }
  .cta-sub {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #fff;
    opacity: 0.9;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #d90000;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  .cta-button svg {
    stroke: #d90000;
  }
 .tab-content img {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .tab-pane {
      padding: 30px 10px;
    }

/* OUR TEAM - ÀÔÃ¼ È¸Àü Ä³·¯¼¿ ½ºÅ¸ÀÏ */
#our-team {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

#our-team .about-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  font-family: "Arial Black", sans-serif;
  background: linear-gradient(to bottom, #082a7b59 30%, transparent 76%);
  -webkit-background-clip: text;
  color: transparent;
}

/* ÀÔÃ¼ Ä³·¯¼¿ ÄÁÅ×ÀÌ³Ê */
#our-team .carousel-container {
  max-width: 1200px;
  height: 450px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
  overflow: visible;
}

/* ÀÔÃ¼ Æ®·¢ */
#our-team .carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ä«µå ½ºÅ¸ÀÏ */
#our-team .card {
  position: absolute;
  width: 280px;
  height: 380px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.8s ease;
  cursor: pointer;
}

#our-team .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* À§Ä¡¿¡ µû¸¥ ÀÔÃ¼ È¿°ú */
#our-team .card.center {
  z-index: 10;
  transform: scale(1.1);
}
#our-team .card.left-1,
#our-team .card.right-1 {
  z-index: 5;
  opacity: 0.9;
  transform: scale(0.9) translateZ(-100px);
}
#our-team .card.left-2,
#our-team .card.right-2 {
  z-index: 1;
  opacity: 0.7;
  transform: scale(0.8) translateZ(-300px);
}
#our-team .card.left-1 {
  transform: translateX(-200px) scale(0.9) translateZ(-100px);
}
#our-team .card.left-2 {
  transform: translateX(-400px) scale(0.8) translateZ(-300px);
}
#our-team .card.right-1 {
  transform: translateX(200px) scale(0.9) translateZ(-100px);
}
#our-team .card.right-2 {
  transform: translateX(400px) scale(0.8) translateZ(-300px);
}
#our-team .card.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ³×ºñ°ÔÀÌ¼Ç Á¡ */
#our-team .dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
#our-team .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
#our-team .dot.active {
  background: #082a7b;
}

/* ÁÂ¿ì ¹öÆ° */
#our-team .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #082a7b;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
}
#our-team .nav-arrow.left {
  left: 0;
}
#our-team .nav-arrow.right {
  right: 0;
}


/* &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
   ¿ì¸® ¾ÆÀÌÀÇ ÇÐ¾÷ °í¹Î ¼½¼Ç
   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; */
.section--academic-worries {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  /* ¿ÞÂÊ ·¹µå &#10132; ¿À¸¥ÂÊ ºí·ç ±×¶óµ¥ÀÌ¼Ç */
  background: linear-gradient(120deg, #ff3b30 0%, #0066ff 100%);
  color: #ffffff;
}

/* ¹è°æ µ¥ÄÚ(»ìÂ¦ ºñÄ¡´Â µµÇü) */
.section--academic-worries::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -25%;
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  border-radius: 30%;
}

.section--academic-worries .container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.aw__title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 50px;
  /* ÅØ½ºÆ®¿¡ »ìÂ¦ ¼¨µµ¿ì¸¦ Áà ÀÔÃ¼°¨ Ãß°¡ */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.aw__title small {
  display: block;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 8px;
}

.aw__title span {
  color: #ffd6d2; /* ·¹µå °è¿­ °­Á¶ ÄÃ·¯·Î ÅëÀÏ°¨ */
}

.aw__bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.aw__bubble {
  position: relative;
  max-width: 360px;
  padding: 28px 36px;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.4;
  /* ¹ÝÅõ¸í + ºí·¯ È¿°ú */
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  /* ±×¸²ÀÚ Ãß°¡·Î ¶° ÀÖ´Â ´À³¦ */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.aw__bubble::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 40px;
  border-width: 15px 15px 0 15px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2) transparent transparent transparent;
}

.aw__cta .btn--outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.aw__cta .btn--outline .icon-arrow-up {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.3rem;
  transform: translateY(-1px);
}

.aw__cta .btn--outline:hover {
  background: #ffffff;
  color: #ff3b30;
  transform: translateY(-2px);
}


/* ¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡
   Talk ¼½¼Ç ·¹ÀÌ¾Æ¿ô
¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡ */
.talk-section {
  /* ¿¹½Ã: ¿ÞÂÊ Â÷ÄÝ ¡æ ¿À¸¥ÂÊ µöºí·ç ±×¶óµ¥ÀÌ¼Ç */
  background: linear-gradient(120deg, #222222 0%, #0d1b2a 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
}
.talk-section__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.talk-section__speaker {
  flex: 1;
}
.speaker-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  padding: 24px;
  border-radius: 16px;
}
.speaker-card h4 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.speaker-card p {
  line-height: 1.6;
  font-size: 0.95rem;
}
.speaker-card__more {
  margin-top: 16px;
  background: none;
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 6px 14px;
  color: #fff;
  cursor: pointer;
}

/* ¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡
   Talk ¼½¼Ç &#8211; ±âº» ·¹ÀÌ¾Æ¿ô
¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡ */
.talk-section__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* ¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡
   ¿ÞÂÊ ½ºÇÇÄ¿ Ä«µå (ÀÌ¹ÌÁö Æ÷ÇÔ)
¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡ */
.speaker-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  padding: 24px;
  border-radius: 16px;
  text-align: center; /* ÀÌ¹ÌÁö ¾Æ·¡ ÅØ½ºÆ® Áß¾Ó Á¤·Ä */
}

.speaker-card__photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* ¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡
   Talk ¸®½ºÆ® &#8211; ¿ìÃø Á¤·Ä
¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡ */
.talk-section__list {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.talk-item {
  cursor: pointer;
  padding: 16px 24px;
  border-left: 4px solid #33ddff;
  transition: background .3s;
  text-align: right;      /* ÀüÃ¼ ÅØ½ºÆ® ¿ìÃø Á¤·Ä */
}

.talk-item:hover {
  background: rgba(255,255,255,0.05);
}

.talk-item__label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 8px;
  text-align: right;      /* ·¹ÀÌºíµµ ¿ìÃø Á¤·Ä */
}

.talk-item__text {
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: right;      /* º»¹®µµ ¿ìÃø Á¤·Ä */
}
@media (max-width: 768px) {
  .talk-section__inner {
    flex-direction: column;
    gap: 32px;
  }

  .talk-section__speaker,
  .talk-section__list {
    width: 100%;
  }

  .talk-item {
    border-left: none;
    border-top: 4px solid #33ddff;
    text-align: left; /* ¸ð¹ÙÀÏ¿¡¼± °¡µ¶¼ºÀ» À§ÇØ ÁÂÃø Á¤·Ä ±ÇÀå */
    padding: 12px 16px;
  }

  .talk-item__label,
  .talk-item__text {
    text-align: left;
  }
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

/* È°¼ºÈ­ ½Ã¿¡¸¸ flex ·¹ÀÌ¾Æ¿ô Àû¿ë */
.video-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ¹éµå·Ó */
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

/* ¿µ»ó ÄÁÅ×ÀÌ³Ê */
.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: transparent;
}


.video-modal__close {
  position: absolute;
  top: -20px; right: -20px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}



.scroll-section {
  position: relative;
  overflow: hidden;
}
.scroll-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.scroll-page.camp {
  background: linear-gradient(120deg, #e8f7f1 0%, #d0f0e0 100%);
}
.camp-promo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}
.camp-promo__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}
.phone-frame {
  position: relative;
  width: 280px;
}
.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.phone-screen {
  position: absolute;
  top: 12%;
  left: 7.5%;
  width: 85%;
  height: 75%;
  overflow: hidden;
  border-radius: 20px;
}
.phone-screen img,
.phone-screen video {
  display: block;
  width: 100%;
  height: auto;
}
.camp-text {
  flex: 1;
}
.camp-text .label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.camp-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.camp-text h2 span {
  color: #0066ff;
}
.camp-text .chat {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.camp-text .chat p {
  font-size: 1.125rem;
  line-height: 1.5;
}
.camp-text .chat p strong {
  color: #0066ff;
}
.camp-text .sub {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .camp-promo__inner {
    flex-direction: column;
    gap: 24px;
  }
  .phone-frame {
    width: 220px;
  }
  .camp-text h2 {
    font-size: 2rem;
  }
}