html{
  scroll-behavior:smooth;
  scroll-padding-top:140px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Pretendard, sans-serif;
  color:#111;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

:root{
  --color-primary:#45B248;
  --color-secondary:#216B58;
  --color-accent:#39a845;
  --color-black:#111;
  --color-white:#fff;
  --color-gray:#f3f3f3;
  --color-line:#ddd;
  --color-white-55:rgba(255,255,255,.55);
  --color-white-90:rgba(255,255,255,.9);
  --color-shadow:rgba(0,0,0,.18);
}

.nav_container{
  width:100%;
  max-width:1800px;
  margin:0 auto;
}

.container{
  width:90%;
  max-width:1600px;
  margin:0 auto;
}

/* ================= HEADER ================= */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#fff;
  z-index:1000;
}

.header-inner{
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.logo{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}

.logo img{
  height:80px;
}

.gnb{
  position:absolute;
  right:100px;
  display:flex;
  gap:60px;
}

.gnb li{
  list-style:none;
  position:relative;
}

.gnb > li > a{
  font-size:20px;
  font-weight:800;
}

.submenu{
  position:absolute;
  top:28px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  border:1px solid #ddd;
  padding:15px;
  min-width:140px;
  
}

.submenu a{
  display:block;
  padding:8px 0;
  font-size:18px;
   font-weight:600;
}


.menu-btn{
  position:absolute;
  right:20px;
  width:30px;
  height:36px;
  cursor:pointer;
  z-index:2100;   
}

.menu-btn span{
  display:block;
  height:2px;
  background:#111;
  margin-bottom:6px;
}

/* PC 전체 메뉴 */
.sitemap{
  position:fixed;
  top:140px;
  left:0;
  right:0;
  width:100%;
  height:auto;
  background:#f5f5f5;
  padding:40px 0;
  transform:translateY(-120%);
  transition:.4s ease;
  z-index:900;
  box-shadow:0 20px 40px rgba(0,0,0,.01);
  border-top:1px solid #ddd;
}

.sitemap.active{
  transform:translateY(0);
}

.sitemap-inner{
  width:90%;
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:60px;
}

.sitemap-col h3{
  font-size:26px;
  font-weight:800;
  margin-bottom:24px;
}

.sitemap-col a{
  display:block;
  font-size:18px;
  font-weight:500;
  color:#444;
  margin-bottom:14px;
}

.sitemap-col a:hover{
  color:var(--color-primary);
}

.sitemap-close{
  position:absolute;
  top:24px;
  right:40px;
  border:0;
  background:none;
  font-size:36px;
  cursor:pointer;
}

body.sitemap-open{
  overflow:hidden;
}

/* ================= COMMON ================= */
section{
  padding:60px 0;
}

.section-title,
.sub-category{
  width:100%;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
}

.section-title{
  margin-bottom:20px;
}

.sub-category{
  margin:0 auto 48px;
}

.section-title h2,
.section-title p{
  font-size:52px;
  line-height:1;
}

.section-title h2{
  font-weight:100;
}

.section-title p{
  font-weight:500;
}

.sub-category{
    display:flex;
    align-items:center;
}

.sub-category .line{
    width:36px;
    height:2px;
    background:#222;
    margin:0 2px;
    border-radius:999px;
}

.sub-category strong{
    font-size:48px;
    font-weight:800;
  
    color:var(--color-accent);
}

.sub-category span:last-child{
    font-size:20px;
    font-weight:700;
   color: #333;
   
}

/* ================= MAIN HERO ================= */
.main-title{
  width:100%;
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#fff;
  margin-top:160px;
  padding:0 24px;
   letter-spacing:-0.03em;
}

.main-title h2{
  font-size:50px;
  font-weight:100;
  line-height:1.15;
  letter-spacing:-2px;
  color: #333;
}

.main-title strong{
  font-weight:700;
    color:var(--color-accent);
}

.hero-section{
  position:relative;
  width:100%;
  padding:0;
}

.hero-wrap{
  position:relative;
  width:100%;
  display:grid;
  grid-template-columns:36% 64%;
  height:660px;
  overflow:hidden;
}

.hero-text{
  position:relative;
  z-index:10;
  background:var(--color-secondary);
  color:#fff;
  padding:70px 60px 70px 140px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;

}

.hero-category{
  display:flex;
  align-items:flex-end;
  gap:14px;
  margin-bottom:42px;
  opacity:.42;
}

.hero-category strong{
  font-size:36px;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:5px;
  opacity:.85;
}

.hero-category span{
  font-size:18px;
  font-weight:600;
}

.hero-text-slider{
  position:relative;
  min-height:340px;
  overflow:visible;
}

.hero-text-item{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s ease, transform .6s ease;
}

.hero-text-item.active{
  opacity:1;
  transform:translateY(0);
}

.hero-sub{
  font-size:24px;
  font-weight:500;
  margin-bottom:20px;
}

.hero-text-item h3{
  max-width:660px;
  font-size:60px;
  line-height:1.15;
  font-weight:700;
  letter-spacing:-2px;
  white-space:normal;
  word-break:keep-all;
  position:relative;
  z-index:20;
}

.hero-author{
  display:block;
  margin-top:24px;
  font-size:16px;
  line-height:1.3;
  font-weight:500;
}

.hero-link-btn,
.hero-link-text{
  position:static;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:180px;
  height:58px;
  margin-top:22px;
  border:1px solid rgba(255,255,255,.85);
  color:#fff;
  background:transparent;
  font-size:18px;
  font-weight:800;
  transition:.3s;
}

.hero-link-btn:hover,
.hero-link-text:hover{
  background:#fff;
  color:#111;
}

.hero-control{
  display:flex;
  align-items:center;
  gap:28px;
  margin-top:26px;
}

.hero-control button{
  width:58px;
  height:58px;
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
}

.hero-control svg{
  display:block;
}

.hero-control span{
  font-size:20px;
  font-weight:300;
  width:36px;
}

.hero-image{
  position:relative;
  height:100%;
  overflow:hidden;
  z-index:1;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:.6s ease;
}

.hero-slide.active{
  opacity:1;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.scroll-guide{
  position:absolute;
  left:50%;
  bottom:50px;
  transform:translateX(-50%);
  z-index:80;
  width:60px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  animation:scrollMove 1.8s ease-in-out infinite;
}

.scroll-guide svg{
  width:42px;
  height:42px;
}

.scroll-guide path{
  stroke:#fff;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}

@keyframes scrollMove{
  0%{transform:translateX(-50%) translateY(0); opacity:.5;}
  50%{transform:translateX(-50%) translateY(10px); opacity:1;}
  100%{transform:translateX(-50%) translateY(0); opacity:.5;}
}

/* ================= SECTION 2 : of WE ================= */
.we-section{
  padding:64px 0 72px;
}

.story-wrap{
  width:100%;
}

.story-content,
.story-content-renewal{
  position:relative;
  width:100%;
  margin:0 auto;
  border-radius:24px;
  overflow:hidden;
}

.story-content-renewal{
  max-width:1620px;
  height:600px;
  background:#111;
}

.story-content-renewal::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:31%;
  min-width:350px;
   background:linear-gradient(
    90deg,
    rgba(0,52,1,.70) 0%,
    rgba(0,52,1,.50) 35%,
    rgba(0,52,1,.18) 68%,
    rgba(0,52,1,0) 100%
  );
  z-index:2;
  pointer-events:none;
}

.story-content-renewal::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 58%, rgba(0,0,0,.14) 100%);
  z-index:1;
  pointer-events:none;
}

.story-content-renewal .story-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.story-panel{
  position:absolute;
  left:62px;
  top:52px;
  width:250px;
  z-index:6;
}

.story-panel-label{
  display:none;
}

.story-content-renewal .story-menu{
  position:static;
  width:100%;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.story-content-renewal .story-btn{
  width:100%;
  min-height:0;
  height:54px;
  padding:18px 24px;
  display:flex;
  align-items:center;
  gap:14px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:0;
  background:rgba(255,255,255,.06);
  color:#fff;
  text-align:left;
  cursor:pointer;
  transition:.3s;
}

.story-content-renewal .story-btn span{
  width:30px;
  margin:0;
  color:rgba(255,255,255,.58);
  font-size:14px;
  font-weight:900;
}

.story-content-renewal .story-btn strong{
  display:block;
  font-size:18px;
  line-height:1;
  letter-spacing:-.5px;
  font-weight:800;
}

.story-content-renewal .story-btn.active,
.story-content-renewal .story-btn:hover{
  background:#fff;
  color:#111;
}

.story-content-renewal .story-btn.active span,
.story-content-renewal .story-btn:hover span{
  color:var(--color-accent);
}

.story-copy{
  position:absolute;
  opacity:0;
  transform:translateY(30px);
  transition:.45s ease;
   max-width:420px;
   
}

.story-copy.active{
  opacity:1;
  transform:translateY(0);
}

.story-content-renewal .story-copy{
  left:78px;
  right:auto;
  bottom:78px;
  width:360px;
  max-width:none;
  color:#fff;
  text-align:left;
  z-index:7;
}
.story-content-renewal .story-copy span{
  display:none !important;
}

.story-content-renewal .story-copy h3{
  font-size:36px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-1.4px;
}

.story-content-renewal .story-copy p{
  max-width:330px;
  margin-top:20px;
  color:rgba(255,255,255,.85);
  font-size:18px;
  line-height:1.6;
  word-break:keep-all;
}

.story-content-renewal .story-copy::after{
  display:none;
}

.story-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:140px;
  height:48px;
  margin-top:24px;
  border:1px solid rgba(255,255,255,.75);
  color:#fff;
  font-size:15px;
  font-weight:800;
  transition:.3s;
}

.story-link:hover{
  background:#fff;
  color:#111;
}

/* ================= SECTION 3 : of KOSPO ================= */
.kospo-section,
.of-kospo-section{
  padding-top:70px;
  padding-bottom:60px;
}

.grid-box{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  width:100%;
  max-width:1400px;
  margin:40px auto 80px;
}

.card{
  width:100%;
  background:#fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
  border-radius:20px;
}

.card img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:20px 20px 0px 0px;

}

.card-body{
  width:100%;
  padding:16px 20px;
}

.card-body h4{
  font-size:22px;
  margin-bottom:10px;
}


.info-card{
  position:relative;
  max-width:980px;
  margin:70px auto 90px;
  padding-top:42px;
}

.info-character{
  position:absolute;
  top: -50px;
  left:20px;
  z-index:2;
}

.info-character img{
  width:228px;
  height:auto;
}

.info-box{
  background:#f2f2f2;
  border-radius:14px;
  padding:34px 44px 36px;
}

.info-box h3{
  display:inline-block;
  margin-bottom:18px;
  padding:5px 12px;
  background:var(--color-accent);
  color:#fff;
  font-size:22px;
  line-height:1.3;
  font-weight:600;
  letter-spacing:-0.04em;
}

.info-box p{
  font-size:17px;
  line-height:1.85;
  color:#222;
  letter-spacing:-0.03em;
  word-break:keep-all;
}


@media (max-width:768px){
  .info-card{
    margin:50px auto;
    padding-top:36px;
  }

  .info-character{
    left:28px;
  }

  .info-character img{
    width:200px;
  }

  .info-box{
    padding:30px 24px 28px;
    border-radius:12px;
  }

  .info-box h3{
    font-size:18px;
  }

  .info-box p{
    font-size:15px;
    line-height:1.75;
  }
}

.news-section{
  background:#efefef;
  padding:0 0 60px;
 
}

.news-title{text-align:center;
padding:40px 0 20px;
}


/* ================= SECTION 4 : EVENT ================= */
.event-section{
  background:#efefef;
 
}



.photo-slider{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.photo-box{
  position:relative;
  width:360px;
  min-width:360px;
  background:#fff;
  padding:14px 14px 32px;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  text-align:center;
}

.photo-box img{
  width:100%;
  height:240px;
  aspect-ratio:1/1.05;
  object-fit:cover;
  margin-bottom:28px;
}

.photo-box p{
  font-size:18px;
  font-weight:600;
  line-height:1.2;
}

.photo-tape{
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  width:54px;
  height:62px;
  background:rgba(245,235,150,.65);
  box-shadow:0 4px 8px rgba(0,0,0,.12);
  z-index:5;
}

.event-btn{
  display:block;
  width:240px;
  margin:60px auto 0;
  background:#ff1f8f;
  color:#fff;
  text-align:center;
  padding:20px;
  border-radius:999px;
  font-size:20px;
  font-weight:700;
}


.list-btn{

  display:block;
  width:240px;
  margin:60px auto 100px;
  background:#7c7c7c;
  color:#fff;
  text-align:center;
  padding:20px;
  border-radius:999px;
  font-size:20px;
  font-weight:700;
}

/* ================= FOOTER ================= */
footer{
  background:#000;
  padding:50px 0;
}

.footer-inner{
  width:92%;
  max-width:1800px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.footer-logo img{
  height:30px;
}

.footer-copy{
  flex:1;
  color:#fff;
  font-size:18px;
  font-weight:500;
  text-align:center;
  opacity:.95;
}

.top-btn{
  width:64px;
  height:64px;
  border-radius:50%;
  border:0;
  background:#f2f2f2;
  color:#111;
  font-size:32px;
  cursor:pointer;
  transition:.3s;
}

.top-btn:hover{
  transform:translateY(-4px);
}

/* ================= ARTICLE SUB TYPE ================= */
.article-page{
  padding-top:120px;
  background:#fff;
}

.article-category-bar{
  height:74px;
  border-bottom:1px solid #e5e5e5;
  display:flex;
  align-items:center;
      position:sticky;
    top:120px;      /* 헤더 높이 */
    z-index:100;
    background:#fff;
}

@media (max-width: 768px){
  .article-category-bar{
    top:76px;      /* 헤더 높이 */
  }
}

.article-inner{
  width:90%;
  margin:0 auto;
}

.article-inner.wide{
  max-width:1600px;
}

.article-inner.narrow{
  max-width:900px;
}


.article-category-bar strong{
  font-size:32px;
  font-weight:900;
  margin-right:8px;
}

.article-category-bar span{
  font-size:16px;
  font-weight:700;
}

.article-hero{
  padding:70px 0 55px;
  text-align:center;
}

.article-hero h1{
  font-size:42px;
  line-height:1.25;
  letter-spacing:-1.5px;
  font-weight:900;
  margin-bottom:20px;
}

.article-subtitle{
  font-size:18px;
  font-weight:700;
  margin-top:-4px;
  margin-bottom:20px;
}

.article-desc{
  max-width:800px;
  margin:0 auto 22px;
  font-size:16px;
  line-height:1.6;
  color:#333;
  word-break:keep-all;
}

.article-writer{
  font-size:14px;
  font-weight:600;
  color:#333;
}

.article-main-visual{
  width:100%;
  height:420px;
  overflow:hidden;
  margin-bottom:62px;
}

.article-main-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.article-content{
  padding-bottom:110px;
}

.article-block{
  margin-bottom:56px;
}

.article-block h2,
.qa-block h2{
  font-size:26px;
  line-height:1.35;
  letter-spacing:-1px;
  font-weight:900;
  margin-bottom:28px;
  word-break:keep-all;
}

.article-block p,
.qa-block p{
  font-size:18px;
  line-height:2;
  letter-spacing:-.25px;
  color:#333;
  margin-bottom:20px;
  word-break:keep-all;
}

.article-image{
  margin:44px 0 72px;
}

.article-image.rounded img{
  width:100%;
  border-radius:24px;
  overflow:hidden;
}

.article-reference{
  background:#f1f1f1;
  border-radius:24px;
  padding:34px 42px;
  margin-top:70px;
  font-size:16px;
}

.article-reference strong{
  display:block;
  margin-bottom:14px;
  font-weight:900;
}

.article-reference a{
  display:block;
  text-decoration:underline;
  margin-top:6px;
  color:#111;

  overflow-wrap:anywhere;
  word-break:break-all;
}

.article-hero-basic{
  height:auto;
}

/* 인터뷰 상단 텍스트 영역 */
.article-interview .article-hero{
  padding:0px 0 100px;
}

/* 인터뷰 상단 제목 */
.article-interview .article-hero h1{
  font-size:44px;
  line-height:1.25;
  letter-spacing:-1.5px;
   font-weight:800;
}

/* 인터뷰 부제 */
.article-interview .article-subtitle{
  font-size:18px;
  color:var(--color-accent);
  margin-bottom:24px;
}

/* 인터뷰 대표 이미지 */
.article-interview .article-main-visual{
  height:400px;
  margin-bottom:40px;
}

.article-interview .article-main-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

/* 인터뷰 본문 영역 */
.interview-layout{
  position:relative;
  display:grid;
  grid-template-columns:170px 1fr;
  gap:70px;
  padding:62px 0 120px;
}

.interview-profile{
  position:sticky;
  top:240px;
  align-self:start;
}

.interview-profile img{
  width:150px;
  height:190px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:18px;
}


.interview-profile.type2 img{
  width:100%;
  height:auto;
 
  border-radius:12px;
  
}


.interview-profile{
  text-align:left;
}

.interview-profile img{
  border-radius:16px;
  overflow:hidden;
}

.interview-profile p{
  margin-top:6px;
  font-size:15px;
  line-height:1.5;
}

.qa-block{
  margin-bottom:62px;
}

.qa-block h2{
  font-size:24px;
  margin-bottom:22px;
}

.interview-content .article-image{
  max-width:760px;
  margin:60px 0 70px;
}

.interview-content .article-image img{
 
  object-fit:cover;
}

/* ================= COMPONENTS ================= */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:2px 16px;
  background:var(--color-accent);
  color:#fff;
  font-size:24px;
  font-weight:800;
}

.badge span{
  width:24px;
  height:24px;
  border-radius:50%;
  background:#fff;
  color:var(--color-accent);
  display:flex;
  align-items:center;
  justify-content:center;
}

.quote-box{
  position:relative;
  width:100%;
  max-width:1600px;
  margin:80px auto;
  padding:40px 80px 40px;
  background:#f4f4f4;
  border-radius:40px;
  text-align:center;
}

.quote-content{
  max-width:1000px;
  margin:0 auto;
}

.quote-content h3{
  font-size:34px;
  font-weight:800;
  line-height:1.4;
  margin-bottom:36px;
}

.quote-content p{
  font-size:20px;
  line-height:1.75;
  font-weight:600;
  word-break:keep-all;
}

.quote-content p + p{
  margin-top:18px;
}

.quote-mark{
  position:absolute;
  color:rgba(0,0,0,.16);
  font-family:Arial, sans-serif;
  font-size:150px;
  font-weight:700;
  line-height:1;
}

.quote-left{
  top:-28px;
  left:28px;
}

.quote-right{
  right:42px;
 
}

.profile-quote{
  display:flex;
  align-items:center;
  gap:60px;
  width:100%;
  max-width:1200px;
  margin:20px auto;
  padding:20px 40px;
  background:#f4f4f4;
  border-radius:28px;
}

.profile-person{
  width:120px;
  flex-shrink:0;
  text-align:center;
}

.profile-person img{
  width:100px;
  height:100px;
  object-fit:cover;
  border-radius:100px;
  margin:0 auto 12px;
}

.profile-person p{
  font-size:15px;
  font-weight:600;
}

.profile-text{
  flex:1;
  font-size:20px;
  font-weight:600;
  line-height:1.5;
  text-align:center;
  word-break:keep-all;
}

.article-image-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
  width:100%;
  max-width:1200px;
  margin:80px auto;
}

.article-image-grid figure{
  margin:0;
  overflow:hidden;
  border-radius:20px;
}

.article-image-grid img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
}


/* ================= RESPONSIVE ADD-ON ================= */
/* PC 스타일은 유지하고, 아래 해상도에서만 재배치 */

@media (max-width: 1280px){

  html{
    scroll-padding-top:110px;
  }

  .header-inner{
    height:120px;
  }

  .logo img{
    height:64px;
  }

  .gnb{
    right:72px;
    gap:34px;
  }

  .gnb > li > a{
    font-size:16px;
  }

  .sitemap{
    top:110px;
  }

  .main-title{
    height:120px;
    margin-top:130px;
  }

  .main-title h2{
    font-size:44px;
  }

  .hero-wrap{
    grid-template-columns:38% 62%;
    height:600px;
  }

  .hero-text{
    padding:60px 46px 60px 80px;
  }

  .hero-category strong{
    font-size:30px;
  }

  .hero-category span{
    font-size:16px;
  }

  .hero-text-slider{
    min-height:310px;
  }

  .hero-text-item h3{
    font-size:48px;
  }

  .hero-sub{
    font-size:21px;
  }

  .hero-link-btn,
  .hero-link-text{
    width:160px;
    height:52px;
    font-size:16px;
  }

  .story-content-renewal{
    height:540px;
  }

  .story-content-renewal::before{
    width:34%;
    min-width:320px;
  }

  .story-panel{
    left:48px;
    top:44px;
    width:230px;
  }

  .story-content-renewal .story-btn{
    height:50px;
    padding:16px 20px;
  }

  .story-content-renewal .story-btn strong{
    font-size:17px;
  }

  .story-content-renewal .story-copy{
    left:58px;
    bottom:60px;
    width:330px;
  }

  .story-content-renewal .story-copy h3{
    font-size:32px;
  }

  .story-content-renewal .story-copy p{
    font-size:16px;
  }

  .grid-box{
    max-width:1180px;
    gap:30px;
  }

  .card img{
    height:320px;
  }

  .photo-box{
    width:300px;
    min-width:300px;
  }

}

@media (max-width: 1024px){

  section{
    padding:48px 0;
  }

  .container{
    width:92%;
  }

  .header-inner{
    height:92px;
  }

  .logo img{
    height:54px;
  }

  .gnb{
    display:none;
  }

  .menu-btn{
    right:28px;
  }

  .sitemap{
    top:92px;
    padding:36px 0;
  }

  .sitemap-inner{
    grid-template-columns:repeat(2,1fr);
    gap:34px;
  }

  .main-title{
    height:105px;
    margin-top:110px;
  }

  .main-title h2{
    font-size:36px;
  }

  .hero-wrap{
    grid-template-columns:1fr;
    height:auto;
  }

  .hero-text{
    order:2;
    min-height:440px;
    padding:56px 8%;
  }

  .hero-image{
    order:1;
    height:520px;
  }

  .hero-category{
    margin-bottom:34px;
  }

  .hero-category strong{
    font-size:32px;
  }

  .hero-text-slider{
    min-height:260px;
  }

  .hero-text-item h3{
    font-size:48px;
    max-width:680px;
  }

  .hero-control{
    margin-top:20px;
  }

  .scroll-guide{
    display:none;
  }

  .sub-category{
    height:auto;
    margin-bottom:36px;
  }

  .sub-category strong{
    font-size:34px;
  }

  .sub-category span{
    font-size:18px;
  }

  .story-content-renewal{
    height:auto;
    min-height:620px;
    border-radius:20px;
  }

  .story-content-renewal::before{
    width:52%;
    min-width:0;
    background:linear-gradient(
      90deg,
      rgba(0,52,1,.74) 0%,
      rgba(0,52,1,.52) 45%,
      rgba(0,52,1,0) 100%
    );
  }

  .story-content-renewal .story-bg{
    position:absolute;
  }

  .story-panel{
    left:40px;
    top:40px;
    width:230px;
  }

  .story-content-renewal .story-copy{
    left:40px;
    bottom:48px;
    width:340px;
  }

  .story-content-renewal .story-copy h3{
    font-size:34px;
  }

  .grid-box{
    grid-template-columns:repeat(2,1fr);
    max-width:92%;
  }

  .card img{
    height:300px;
  }

  .photo-slider{
    gap:28px;
  }

  .photo-box{
    width:calc(50% - 14px);
    min-width:0;
  }

  .footer-inner{
    flex-direction:column;
    text-align:center;
  }

  .article-page{
    padding-top:92px;
  }

}

@media (max-width: 768px){

  html{
    scroll-padding-top:76px;
  }

  .header-inner{
    height:76px;
  }

  .logo img{
    height:44px;
  }

  .menu-btn{
    right:30px;
    top:30px;
    width:28px;
  }

  .sitemap{
    top:76px;
    height:calc(100vh - 76px);
    overflow-y:auto;
  }

  .sitemap-inner{
    grid-template-columns:1fr;
    gap:24px;
  }

  .sitemap-col h3{
    font-size:30px;
    margin-bottom:16px;
  }

  .sitemap-col a{
    font-size:20px;
    font-weight: 600;
    margin-bottom: 26px;
  }

  .main-title{
    height:auto;
    min-height:96px;
    margin-top:86px;
    padding:28px 24px 24px;
  }

  .main-title h2{
    font-size:30px;
    line-height:1.3;
    word-break:keep-all;
  }

  .hero-image{
    height:360px;
  }

  .hero-text{
    min-height:420px;
    padding:44px 7%;
  }

  .hero-category{
    margin-bottom:28px;
  }

  .hero-category strong{
    font-size:28px;
  }

  .hero-category span{
    font-size:15px;
  }

  .hero-sub{
    font-size:18px;
    margin-bottom:16px;
  }

  .hero-text-slider{
    min-height:245px;
  }

  .hero-text-item h3{
    font-size:38px;
    line-height:1.18;
  }

  .hero-author{
    margin-top:18px;
    font-size:15px;
  }

  .hero-link-btn,
  .hero-link-text{
    width:145px;
    height:48px;
    margin-top:18px;
    font-size:15px;
  }

  .hero-control{
    gap:18px;
  }

  .hero-control button{
    width:48px;
    height:48px;
  }

  .hero-control span{
    font-size:17px;
    width:34px;
  }

  .we-section{
    padding:46px 0 54px;
  }

  .story-content-renewal{
    width:92%;
    min-height:560px;
    border-radius:18px;
  }

  .story-content-renewal::before{
    width:100%;
    background:linear-gradient(
      90deg,
      rgba(0,52,1,.76) 0%,
      rgba(0,52,1,.48) 58%,
      rgba(0,52,1,.12) 100%
    );
  }

  .story-content-renewal::after{
    background:linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.22) 100%);
  }

  .story-panel{
    left:24px;
    top:28px;
    width:220px;
  }

  .story-content-renewal .story-menu{
    gap:8px;
  }

  .story-content-renewal .story-btn{
    height:46px;
    padding:0 16px;
  }

  .story-content-renewal .story-btn span{
    width:28px;
    font-size:13px;
  }

  .story-content-renewal .story-btn strong{
    font-size:16px;
  }

  .story-content-renewal .story-copy{
    left:24px;
    right:24px;
    bottom:34px;
    width:auto;
  }

  .story-content-renewal .story-copy h3{
    font-size:30px;
    line-height:1.2;
  }

  .story-content-renewal .story-copy p{
    max-width:100%;
    font-size:15px;
    margin-top:14px;
  }

  .story-link{
    width:130px;
    height:44px;
    margin-top:20px;
    font-size:14px;
  }

  .sub-category{
    gap:8px;
    margin-bottom:28px;
  }

  .sub-category strong{
    font-size:30px;
  }

  .sub-category span{
    font-size:16px;
  }

  .grid-box{
    grid-template-columns:1fr;
    gap:34px;
    width:92%;
    margin-top:30px;
  }

  .card img{
    height:320px;
  }

  .card-body h4{
    font-size:20px;
  }

  .photo-slider{
    width:92%;
    margin:0 auto;
  }

  .photo-box{
    width:100%;
  }

  .event-btn{
    width:200px;
    padding:16px;
    font-size:17px;
  }

  footer{
    padding:40px 0;
  }

  .footer-copy{
    font-size:14px;
    line-height:1.6;
  }

  .top-btn{
    width:54px;
    height:54px;
    font-size:26px;
  }

  .article-inner,
  .article-inner.wide,
  .article-inner.narrow{
    width:90%;
  }

  .article-hero{
    padding:48px 0 40px;
  }

  .article-hero h1{
    font-size:32px;
  }

  .article-desc{
    font-size:15px;
  }

  .article-main-visual{
    height:300px;
  }

  .interview-layout{
    display:block;
    padding:42px 0 80px;
  }

  .interview-profile{
    position:static;
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:36px;
  }

  .interview-profile img{
    width:96px;
    height:120px;
    margin:0;
  }

  .quote-box{
    margin:56px auto;
    padding:54px 28px 46px;
    border-radius:28px;
  }

  .quote-content h3{
    font-size:24px;
  }

  .quote-content p{
    font-size:17px;
  }




  
  .profile-quote{
    display:block;
    padding:28px;
  }

  .profile-person{
    margin:0 auto 18px;
  }

  .profile-text{
    font-size:18px;
  }

  .article-image-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

}

@media (max-width: 480px){

  .container{
    width:92%;
  }

  .main-title h2{
    font-size:24px;
  }

  .hero-image{
    height:300px;
  }

  .hero-text{
    min-height:390px;
    padding:38px 6%;
  }

  .hero-category strong{
    font-size:24px;
  }

  .hero-category span{
    font-size:14px;
  }

  .hero-text-slider{
    min-height:230px;
  }

  .hero-text-item h3{
    font-size:32px;
    letter-spacing:-1.2px;
  }

  .hero-sub{
    font-size:16px;
  }

  .hero-link-btn,
  .hero-link-text{
    width:132px;
    height:44px;
    font-size:14px;
  }

  .story-content-renewal{
    min-height:520px;
  }

  .story-panel{
    left:18px;
    top:22px;
    width:190px;
  }

  .story-content-renewal .story-btn{
    height:42px;
    padding:0 14px;
  }

  .story-content-renewal .story-btn span{
    width:24px;
    font-size:12px;
  }

  .story-content-renewal .story-btn strong{
    font-size:14px;
  }

  .story-content-renewal .story-copy{
    left:18px;
    right:18px;
    bottom:28px;
  }

  .story-content-renewal .story-copy h3{
    font-size:26px;
  }

  .story-content-renewal .story-copy p{
    font-size:14px;
  }

  .sub-category strong{
    font-size:26px;
  }

  .sub-category span{
    font-size:14px;
  }

  .card img{
    height:260px;
  }

  .photo-box{
    padding:12px 12px 26px;
  }

  .article-hero h1{
    font-size:28px;
  }

  .article-main-visual{
    height:240px;
  }

  .article-block h2,
  .qa-block h2{
    font-size:22px;
  }

  .article-block p,
  .qa-block p{
    font-size:15px;
  }

}

/* ================= MOBILE HERO FINAL FIX ================= */
/* 중복된 모바일 hero-control 코드 정리본 */
@media (max-width:768px){

  .hero-wrap{
    height:auto;
    display:flex;
    flex-direction:column;
  }

  .hero-image{
    order:1;
    height:260px;
  }

  .hero-text{
    order:2;
    min-height:auto;
    padding:36px 22px 40px;
  }

  .hero-category{
    margin-bottom:24px;
  }

  .hero-category strong{
    font-size:28px;
  }

  .hero-category span{
    font-size:15px;
  }

  .hero-sub{
    font-size:18px;
    margin-bottom:16px;
  }

  .hero-text-slider{
    min-height:210px;
  }

  .hero-text-item h3{
    font-size:32px;
    line-height:1.2;
    letter-spacing:-1.2px;
  }

  .hero-author{
    margin-top:16px;
    font-size:14px;
  }

  .hero-link-btn,
  .hero-link-text{
    display:inline-flex;
    width:144px;
    height:48px;
    margin-top:18px;
    margin-bottom:0;
    font-size:14px;
  }

  .hero-control{
    position:static;
    display:flex !important;
    align-items:center;
    gap:18px;
    margin-top:28px;
    transform:none;
    color:#fff;
  }

  .hero-control button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
  }

  .hero-control span{
    display:block;
    width:auto;
    min-width:36px;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#fff;
  }

  .scroll-guide{
    display:none;
  }
}

@media (max-width:480px){

  .main-title h2{
    font-size:24px;
  }

  .hero-image{
    height:240px;
  }

  .hero-text{
    padding:34px 22px 38px;
  }

  .hero-text-slider{
    min-height:205px;
  }

  .hero-text-item h3{
    font-size:30px;
  }

  .hero-control{
    margin-top:24px;
  }
}

/* 서브 */

.article-hero-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  height:calc(100vh - 194px);
  min-height:700px;
  padding:0;
  margin-bottom: 60px;
}
.article-hero-image{
  height:100%;
  overflow:hidden;
}

.article-hero-image img{
  width:100%;
  height:100%;
   object-fit:cover;
  object-position:center center;
}
.article-hero-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 8% 120px;
}

.article-hero-text h1{
  font-size:60px;
  line-height:1.25;
  letter-spacing:-1.5px;
  font-weight:800;
  margin-bottom:50px;
}

.article-hero-text .article-desc{
  max-width:620px;
  font-size:18px;
  line-height:1.8;
  margin-bottom:22px;
}

.article-hero-text .article-writer{
  font-size:15px;
  font-weight:700;
}

.hero-scroll{
    position:absolute;
    bottom:90px;
    right:180px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    opacity:.8;
    transition:.3s;
}

.hero-scroll:hover{
    opacity:1;
}

.hero-scroll span{
    font-size:12px;
    letter-spacing:3px;
    color:#999;
}

.hero-scroll i{
    width:24px;
    height:24px;
    border-left:2px solid #111;
    border-bottom:2px solid #111;
    transform:rotate(-45deg);
    animation:scrollArrow 1.5s infinite;
}

@keyframes scrollArrow{
    0%{transform:translateY(0) rotate(-45deg);}
    50%{transform:translateY(8px) rotate(-45deg);}
    100%{transform:translateY(0) rotate(-45deg);}
}


.hero-scroll svg{
    animation:scrollMove 1.8s infinite;
}

.article-kicker{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-bottom:30px;
    font-size:17px;
    font-weight:700;
    color:#39a845;
}

.article-kicker::before{
    content:"";
    width:40px;
    height:2px;
    background:#39a845;
}



@keyframes scrollMove{
    0%{
        transform:translateY(0);
        opacity:0;
    }
    30%{
        opacity:1;
    }
    100%{
        transform:translateY(12px);
        opacity:0;
    }
}


.article-block h2{
  position:relative;
  padding-top:22px;
  font-size:30px;
  font-weight:800;
  line-height:1.35;
}

.article-block h2::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:52px;
  height:4px;
  background:var(--color-accent);
  border-radius:999px;
}

.level-block h2{ padding-top: 10px;}

.level-block h2::before{
    content:none;
}


.image-center{
    text-align:center;
     margin:80px auto;
}

.image-center img{
    width:100%;
    max-width:800px;
    height:auto;
    display:block;
    margin:0 auto;
   
}


.image-center-big img{
    max-width:880px;
    width:1000px;    
    height:auto;
    display:block;
    margin:0 auto;
    
}


/* 인터뷰 Q&A 본문 데코 */
.article-interview .qa-block{
  position:relative;
  margin-bottom:86px;
  padding-left:46px;
}

.article-interview .qa-block h2{
  position:relative;
  font-size:26px;
  line-height:1.45;
  font-weight:700;
  letter-spacing:-1px;
  margin-bottom:22px;
}

.article-interview .qa-block h2::before{
  content:"Q";
  position:absolute;
  left:-46px;
  top:2px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--color-accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
  opacity:.85;
   transform:scale(.9);
}

.article-interview .qa-block h2{
  color:#111;
}

.article-interview .qa-block p{
  max-width:920px;
  font-size:18px;
  line-height:1.95;
  color:#333;
}


.interview-image{
    max-width:820px;
    margin:70px auto;
}

.interview-image img{
    width:100%;
    display:block;
    border-radius:30px;
}


.interview-image figcaption{
    margin-top:14px;
    font-size:13px;
    color:#888;
    line-height:1.6;
    letter-spacing:-0.02em;
}


.article-interview .qa-block{
  margin-bottom:92px;
}

.article-interview .qa-block h2{
  margin-bottom:26px;
}


.article-interview .qa-block p{
  max-width:920px;
  font-size:18px;
  line-height:2.05;
  color:#333;
  letter-spacing:-0.02em;
}



.article-interview .qa-block.profile-story h2{
    position:relative;
    padding-left:22px;
    padding-bottom:18px;
    border-bottom:1px solid #e5e5e5;
}

.article-interview .qa-block.profile-story h2::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;           /* 위치 조정 */
    width:3px;
    height:24px;
    border-radius:999px;
    background:var(--color-accent);
}

@media (max-width:768px){
  .image-center-big img{
    max-width:420px;
  }
  .article-interview .qa-block{
    padding-left:0;
    margin-bottom:52px;
  }

  .article-interview .qa-block h2{
    padding-left:46px;
    font-size:22px;
    line-height:1.45;
  }

  .article-interview .qa-block h2::before{
    left:0;
    top:0;
    width:32px;
    height:32px;
    font-size:17px;
  }

  .article-interview .qa-block p{
    font-size:16px;
    line-height:1.85;
  }
}



@media (max-width:768px){
  .hero-scroll{
    display:none;
}

  .article-hero-split{
    display:flex;
    flex-direction:column;
    height:auto;
  }

  .article-hero-image{
    height:280px;
  }

  .article-hero-text{
    padding:46px 24px 50px;
  }

  .article-hero-text h1{
    font-size:32px;
  }

  .article-hero-text .article-desc{
    font-size:16px;
    line-height:1.8;
    max-width:90%;
}


}



@media (max-width:768px){

  .article-interview .article-hero{
    padding:26px 24px 32px;
  }

  .article-interview .article-hero h1{
    font-size:34px;
    line-height:1.2;
    letter-spacing:-1.5px;
  }

  .article-interview .article-subtitle{
    font-size:16px;
    margin:18px 0 22px;
  }

  .article-interview .article-desc{
    font-size:16px;
    line-height:1.8;
    max-width:88%;
    margin:0 auto;
  }

  .article-interview .article-writer{
    font-size:14px;
    margin-top:20px;
  }

  .article-interview .article-main-visual{
    height:320px;
  }

  .article-interview .article-main-visual img{
    object-position:center center;
  }

}


@media (max-width:768px){

  .interview-profile{
    display:none;
  }

}


.hero-text-item{
  opacity:0;
  pointer-events:none;
}

.hero-text-item.active{
  opacity:1;
  pointer-events:auto;
}

.story-copy{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  z-index:1;
}

.story-copy.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  z-index:20;
}

.story-link{
  position:relative;
  z-index:30;
}

.gnb li{
  position:relative;
  padding-bottom:20px; /* 메뉴와 하위메뉴 사이 hover 영역 확보 */
}

.submenu{
  position:absolute;
  top:42px; /* 기존 28px보다 아래로 */
  left:50%;
  transform:translateX(-50%) translateY(8px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  display:block; /* display:none 쓰지 않기 */
  transition:.25s ease;
  background:#ffffff;
  border:2px solid #ddd;
  padding:15px;
  min-width:150px;
  z-index:2000;
}

.gnb li:hover .submenu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

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


/* PC */
.mo-br{
  display:none;
}

/* 모바일 */
@media (max-width:768px){
  .mo-br{
    display:block;
  }
}


.youtube-wrap{
    position:relative;
    width:100%;
    max-width:900px;
    margin:60px auto;
    aspect-ratio:16/9;
    overflow:hidden;
    border-radius:20px;
}

.youtube-wrap iframe{
    width:100%;
    height:100%;
    border:0;
}


.article-daytitle{

color:#333;}





.article-interview .article-hero.hero-type-a{
  padding:40px 0 60px;
}



.interview-layout.article-inner{
    max-width:1100px;
    margin:0 auto;
}


.card{
    overflow:hidden;
    border-radius:20px;
    transition:transform .35s ease, box-shadow .35s ease;
}

.card img{
    display:block;
    width:100%;
    transition:transform .45s ease;
}

.card-link:hover .card{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.card-link:hover .card img{
    transform:scale(1.08);
}


.photo-thumb{
    overflow:hidden;
    border-radius:inherit;   /* 기존 이미지 라운드 유지 */
}

.photo-thumb img{
    display:block;
    width:100%;
    transition:transform .45s ease;
}

.photo-box:hover .photo-thumb img{
    transform:scale(1.08);
}


.submenu a{
    display:block;
    padding:10px 16px;
    font-size:18px;
    font-weight:600;
    color:#222;
    position:relative;
    transition:.25s ease;
    white-space:nowrap;      /* 줄바꿈 방지 */
}

.submenu a::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:0;
    height:14px;
    background:#39a845;
    transition:.25s;
}

.submenu a:hover{
    color:#39a845;
    transform:translateX(6px);   /* padding 대신 이동 */
}

.submenu a:hover::before{
    width:4px;
}


.news-img{
      margin: 20px 0 42px;
}



/* Event board title bar */
.event-page-title-bar{
  position:fixed; 
  left:0;
  right:0;
  width:100%;
  height:74px;
  background:#ffffff;
  display:flex;
  align-items:center;
  z-index:100;
  border-bottom: 1px solid #e5e5e5;
}

.event-page-title-inner{
  width:90%;
  max-width:1600px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:14px;
}

.event-page-title-inner strong{
  font-size:32px;
  font-weight:900;
}

.event-page-title-inner span{
  font-size:16px;
  font-weight:700;
}

@media(max-width:1024px){
  .event-page-title-bar{
    margin-top:92px;
  }
}

@media(max-width:768px){
  .event-page-title-bar{
    height:64px;
    margin-top:76px;
  }

  .event-page-title-inner strong{
    font-size:26px;
  }
}


