html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
img{width:100%;}
ul.nonelist {list-style-type: none; padding: 0px; margin: 0;}
ul.nonelist li {
  position: relative;
  padding-left: 1.2em;
}
ul.nonelist li::before {
  content: '-';
  position: absolute;
  left: 0;
  font-weight: bold;
}



table {
border-collapse: collapse;border-spacing: 0;width: 100%;}

a:link {text-decoration:none;}
a {color:unset;}


:root{
     --border-color:rgb(194, 194, 194);
     --background-color:#F0F1F2;
     --colormain: #c4c1bc;
     --colorsub1: #06ffff;

}

body{
  font-family: 'Roboto', sans-serif;
  position: relative;
  min-height: 100vh;
  background-image: linear-gradient(#131522, #12161f);
}

main {
  padding: 200px 0 100px 0;
  max-width: 1280px;
  margin: 0 auto;
}
section {
  text-align: center;
  padding: 0 16px;
}




  
/* 메뉴 바*/
.main_box2 {
  position: fixed;
  height: 119px;
  padding: 60px 20px 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}

.innermainbox2 {
  display: flex;
  justify-content: space-between;
  max-width: 1630px;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  border-bottom: 1px solid #c3c0bb;
}

.logobox {
  display: flex;
  align-items: flex-end;
}

.logobox a.navbar-brand {
  margin: 0px;
  padding: 0px;
  display: block;
  max-width: 300px;
}

.navbox {
  display: flex;
  justify-content: flex-end;
}

.main_box2 .main_menubox {
  text-align: center;
  position: relative;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_box2 .main_menubox:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 25%;
  height: 50%;
  border-right: 2px solid var(--colormain);
}
.main_box2 .main_menubox:last-child:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 25%;
  height: 50%;
  border-right: 2px solid var(--colormain);
}

.main_box2 .main_menubox a span {
  display: block;
  text-align: center;
  text-transform: capitalize;
  padding: 5px 5px 5px 0px;
  font-family: 'Roboto';
  font-size: 1.25rem;
  color: var(--colormain);
  font-weight: 700;
  letter-spacing: 1px;
}

/* Active state (ex: cur_on1, cur_on2 등) */
.main_box2 .main_menubox.cur_on a span {
  color: #ffd000;
}
/*.main_box2 .main_menubox.cur_on2 a span {
  color: #ff2400;
}
.main_box2 .main_menubox.cur_on3 a span {
  color: #ffd000;
}
.main_box2 .main_menubox.cur_on4 a span {
  color: #03b61c;
}
.main_box2 .main_menubox.cur_on5 a span {
  color: #b100f3;
}
.main_box2 .main_menubox.cur_on7 a span {
  color: #ffd000;
}*/

/* Hover/active effect */
.main_box2 .main_menubox:hover > a, .main_box2 .main_menubox:active > a, .main_box2 .nav-link:hover,
.main_box2 .main_menubox:hover > span, .main_box2 .main_menubox:active > span, .main_box2 .nav-link:active {
  color: #f0e94c;
  font-size: 1.1em;
}

/* 반응형 - 메뉴 숨기고 햄버거 노출 */
.main_box2 .menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  padding-top: 15px;
}
.main_box2 .menu-btn .line {
  width: 34px;
  background: #fff;
  height: 2px;
  margin: 5px 0;
}

@media (max-width: 1140px) {
  .main_box2 {
    height: 52px;
    padding: 30px 20px 0;
  }
  .main_box2 .menu-btn {
    display: flex;
  }
  .main_box2 .main_menubox {
    display: none;
  }
}

@media (max-width: 688px) {
  .main_box2 {
    height: 32px;
    padding: 10px 20px 0;
  }
}

@media (max-width: 450px) {
  .main_box2 {
    height: 32px;
    padding: 10px 20px 0;
  }
  .logobox a.navbar-brand {
    max-width: 200px;
  }
  .main_box2 .menu-btn {width: 28px;height: 44px;}
  .main_box2 .menu-btn .line {width: 28px; margin: 4px 0;}
}

/* 스크롤 시 스타일 변화 */
.main_box2.scroll {
  transition: all 0.3s ease-in-out;
  height: 75px;
  padding: 9px 20px 9px;
}
.main_box2.scroll:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000913;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.main_box2.scroll .innermainbox2 {
  border-bottom: 0;
}








/*footer*/
.modern-footer {
  background: #23272f;
  color: #dbe0e6;
  min-width: 1280px;
  width: 100%;
  padding: 48px 0 0 0;
  /*font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', Arial, sans-serif;*/
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 32px 32px;
  gap: 40px;
}
.footer-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255,255,255,0.01);
  border-radius: 16px;
  padding: 24px 20px 24px 24px;
  min-height: 120px;
  box-shadow: 0 2px 16px 0 rgba(40,44,60,0.05);
}
.footer-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #45b7fb;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.footer-desc {
  font-size: 1rem;
  color: #dbe0e6;
  line-height: 1.7;
  font-weight: 500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}
.footer-label {
  min-width: 50px;
  font-weight: 500;
  color: #8bbdd6;
  margin-right: 8px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.98rem;
  color: #7b8495;
  padding: 24px 0;
  border-top: 1px solid #353a45;
  letter-spacing: 0.03em;
  margin-top: 16px;
  background: #23272f;
}

/* 반응형 */
@media (max-width: 1400px) {
  .footer-content {
    max-width: 100vw;
    padding: 0 12px 32px 12px;
  }
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* 스크롤 버튼 */
.scroll-btn {
  position: fixed;
  right: 32px;
  z-index: 50;
  transition: opacity 0.2s;
  width:30px;
}
#scroll-to-bottom { bottom: 32px; pointer-events: none; left:50%; right:unset; transform:translateX(-50%); }
#scroll-to-bottom.scroll{ opacity: 0;}
#scroll-to-top { bottom: 88px; display: none; }
.scroll-btn img, .scroll-btn button { background: none; border: none; padding: 0; }
.scroll-btn button svg { display: block; }







/*default*/



  
#default main{
  
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;


  animation: fadein 5s;
  -moz-animation: fadein 5s; /* Firefox */
  -webkit-animation: fadein 5s; /* Safari and Chrome */
  -o-animation: fadein 5s; /* Opera */
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;


}



@keyframes fadein {
    0% {
        background-image: url(../img/Main202509.jpg);
    }
    50% {
        background-image: url(../img/Main202509_w.jpg);
    }
    100% {
        background-image: url(../img/Main202509.jpg);
    }..

}

.intro{
    max-width: 1000px;
    color: #fff;
    font-size: 2rem;
    padding: 30px;
    line-height: 1.2;
    font-family: roboto;
    margin:0 auto;
}






.bgafter{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:950px;
}


@media(max-width: 1700px){

.bgafter{

  height:750px;
}
 
}

@media(max-width: 1500px){

.bgafter{

  height:620px;
}
 
}




.animate__fadeOut {
 animation-iteration-count: infinite;
 animation-duration: 5s;
 /*animation-delay: 0s;*/
}















.bodyty1{
  position: relative;
  /*min-height: 100vh;*/
  /* background-image:linear-gradient(#850037, #240000 ); */
}



.maintitle{
  padding-top: 26%; 
  width: 56%; 
  max-width: 900px; 
  margin:   0 auto 0 7.5%;  
  margin-bottom: 6.7%; 
  display: block;
  z-index: 8;
}






.df_sec_title{
  display: flex;
  /*height: 44px;*/
  justify-content: space-between;
  align-items: center;
}
.df_sec_title .left_indexbox{
  display: flex;
}

.df_sec_title .left_indexbox .index_box{
  width: 15px;
  background-color: #e8bfcb;
}


.df_sec_title .left_indexbox .sub_box{
  padding-left:23px;
  font-size: 2.25rem;
  color: #fff;
}


.df_sec_title .right_sub{
  font-size: 1.25rem;
  text-align: right;
  line-height: 1.4em;
}


.overview{  
/*  background-image: url(../img/overview_bg.png);*/
  background-size: 100%;
  margin-top: 30px;
}




.timetablebox{max-width: 1020px; margin: 0 auto; color: #fff}
.timetablebox .timetableboxflex{display: flex; text-align: left; font-size: 1.4rem; line-height: 1.5; margin-bottom: 20px;}
.timetablebox .timetableboxflex strong{font-weight: 600;}
.timetablebox p{padding: 0 0 10px 22px; color:#fff; margin-top: 100px; font-size: 2rem;}
.timetablebox .timetableboxflex .time{font-size:  1.4em; width: 230px; color: #fff; border-right: 1px solid #e8bfcb; padding: 3px 20px;font-family: 'Great Vibes', cursive; letter-spacing: 0.125rem;}
.timetablebox .timetableboxflex table{width: calc(100% - 230px); margin: 0 auto;}
/*.timetablebox .timetableboxflex table tr td:nth-child(1){text-align: left; padding-left: 40px; width: 250px;}*/
.timetablebox .timetableboxflex table tr td.td_1{font-size: 1.1em; /*background-color: rgba(243, 237, 237, .15);*/ padding: 0.4rem 0 0.25rem 1rem; color: #06a4a4; }
.td_2_1{width: 20px;}
.td_2_2{width: 120px; font-weight: 700; font-size: 1em;text-align: right;color: #e8bfcb; padding-right: 20px;}
.td_2_3{width: calc(100% - 142px); font-size: 1em; color:#fff;}
.td_2_3 span.realspan{width: 60px; display: inline-block; }
.td_2_3 span.nullspan{width: 0;}
.td_2_3 span.speakerspan b{font-weight: 700;}
.td_w4{font-size: 1.1em; color: #fff}

.timetablebox p{
  text-align: center;
  background-color: #2e8084;
  font-size: 2rem;
  font-weight: 600;
  padding: 10px 0;
  margin: 100px auto 30px;
  color: #fff;
}

.cursor_p{cursor: pointer;}
.speakerbox.w19{width: 19%;}
.speakerbox.w24{width: 24%;}
.speakerbox .sub_title{text-align: center; font-size: 1.6rem; padding:10px 0 16px; font-weight: 700;}









@media(max-width: 1480px){
  .maintitle{
    padding-top: 28%; 
  }



  .df_sec_title .left_indexbox .sub_box{
    padding-left:23px;
    font-size: 1.5rem;
    width: 130px;
  }

  .df_sec_title .right_sub{
    font-size: 1rem;
    text-align: right;
  }






}




@media(max-width: 999px){

  .maintitle{
    padding-top: 22%; 
  }


  .df_sec_title{
    display: block;
  }
  .df_sec_title .left_indexbox{
    display: flex;
    margin-bottom: 10px;
  }


  .df_sec_title .left_indexbox .sub_box{
    padding-left:23px;
    font-size: 1.5rem;
  }

  .df_sec_title .right_sub{
    font-size: 1rem;
    text-align: left;
  }


  .overview{  

    margin-top: 30px;
  }

}








@media(max-width: 778px){

  .maintitle{
    padding-top: 20%; 
  }

}






@media(max-width: 688px){
  main{
    background-image: url(../img/bg1m.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    padding-top: 23%;
  }

  .maintitle{
    padding-top:2%; 
    width: 80%;  
    margin: 0 auto;

  }


  .df_sec_title .right_sub{
    font-size: 0.8rem;
  }


  .overview{  
    display: none;
  }

  .overviewm{  
    display: block;
  }


  .timetablebox{
    display: none;
  }
 .timetableboxm{
    display: block;
  }


}


.scrollbtn {
  transform: translate(200px);
}

@media (max-width: 670px){
  .scrollbtn {
    transform: translate(80px);
  }
}


.intro-bgbox {
  position: absolute;
  top: 167px;
  left:50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300px; /* 이미지 크기에 맞춤 */
  overflow: hidden;
}

.intro-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0; top: 0;
  z-index: 1;
}

/* 자연스럽게 텍스트가 이미지에 스며드는 오버레이 배경 */
.intro-overlay {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 2;
  background: linear-gradient(120deg, rgba(10,30,70,0.80) 45%, rgba(16,36,80,0.40) 85%, rgba(16,36,80,0.01) 100%);
  /* 그라데이션으로 자연스러운 흐름 */
  pointer-events: none; /* 아래 요소 클릭 방지 X */
}

.intro-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 36px 0 34px 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* 배경 그림자/테두리 제거, 오버레이로만 처리 */
}


.intro-text {
  color: #e6f6fe;
  font-size: 1.35rem;
  line-height: 1.9;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0,12,30,0.10);
  padding-right: 9vw;
  padding-left: 5vw;
  word-break: keep-all;
}

/* 작은 화면에서도 깨지지 않게 */
@media (max-width: 1500px) {
  .intro-content { max-width: 98vw; width: 98vw; min-width: 0; }
}






  .video-responsive {
  position: relative;
  width: 100%;
  /* 16:9 비율 → 9 / 16 = 0.5625 → 56.25% */
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 90px;
}

.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
























/*live*/




#live .df_sec{
  padding: 80px 16px;
  width: 100%;
  max-width: 1358px;
  margin: 0 auto;
  color: #fff;
}



#live .titlebar {
  margin: 180px auto 96px;
  height: 40px;
  display: flex;
  align-items: center;
}
#live .titlebar .bar_side {
  background-image: url(../../img/titlebar.svg);
  background-repeat: repeat;
  width: 50%;
  height: 3px;
}
#live .titlebar .title {
  padding: 0 25px;
  font-family: 'Roboto';
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  line-height: 40px;
  margin: 0 auto;
}


.chairman {
  display: flex;
  justify-content: space-around;
}
.chairmanbox {
  width: 45%;
  max-width: 270px;
}
figure img {
  display: block;
}
.chairman .profile {
  background-color: #652323;
  font-size: 1.0rem;
  padding: 0.8rem 0 0.4rem;
  text-align: center;
  letter-spacing: -1.2px;
  font-family: 'Roboto Condensed';
  word-break: keep-all;
}
.chairman .profile .name {
  font-size: 1.6rem;
}
.chairman .profile span {
  display: block;
  padding: 3px 0;
}


.member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0 0 0;
}
.member-list .chairmanbox{max-width: 200px;}
.member-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* 하단 버튼 정렬! */
  background: #1a202c;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0002;
  padding: 30px 16px 22px 16px;
  width: 320px;
  text-align: center;
  position: relative;
  transition: box-shadow .16s, transform .16s;
  cursor: pointer;
  border: 2px solid #1b998d;
  min-height: 540px; /* 필요시 카드 최소 높이 고정! */
}

.member-card-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.view-more-btn {
  background: #1b998d;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 7px 24px;
  font-weight: 600;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background .15s;
  align-self: center;
  display:  block;
  margin: 15px auto 0;
}

.view-more-btn:hover {
  background: #176974;
  color: #fff;
}


.member-card:hover { box-shadow: 0 10px 28px #124b6a22; transform: translateY(-4px) scale(1.01);}
.member-photo {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #fff;
  margin-bottom: 12px;
  background: #f2f2f2;
}
.member-photo-big {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
  border: 4px solid #ffe287;
  margin-bottom: 18px;
  background: #f2f2f2;
}
.member-name { font-weight: bold; color: #ffe287; font-size: 1.18rem; margin-bottom:10px;}
.member-affiliation { font-size: .98rem; color: #abeada; margin-bottom: 10px;}


#member-modal-bg {
  display:none; position:fixed; top:0; left:0; width:100vw; height:100vh;
  background:rgba(30,34,44,0.75); z-index:9999; align-items:center; justify-content:center;
}
#member-modal {
  background: #23293c;
  color: #fff;
  border-radius: 22px;
  padding: 44px 32px 36px 32px;
  max-width: 620px; /* 기존 420 → 620 */
  width: 96vw;
  min-width: 0;
  position: relative;
  box-shadow: 0 4px 28px #1b998d70;
  text-align: center;
  animation: fadeInModal .24s;
}




@keyframes fadeInModal { from { opacity: 0; transform: scale(.93);} to { opacity: 1; transform: scale(1);} }
.member-photo-big { width:240px; height:320px; object-fit:cover; border-radius: 10px; border: 4px solid #ffe287; margin-bottom: 18px;}
.modal-close {
  position:absolute; top:18px; right:20px; background:none; border:none; color:#fff; font-size:2.1rem; cursor:pointer; transition: color .15s;
}
.modal-close:hover { color: #ffe287;}
#modal-name { font-weight:bold; font-size: 1.35rem; margin-bottom:3px; color: #ffe287;}
#modal-affiliation { font-size: 1.05rem; color: #abeada; margin-bottom: 18px;}
#modal-careers { text-align:left; margin: 0 auto 0 auto; padding: 0 0 0 22px;}
#modal-careers li { margin-bottom: 4px; line-height: 1.5;}

.chairman .profile {height: 110px;}

@media (max-width:600px){
  .member-card { width: 95vw; }
  .member-photo, .member-photo-big { width: 90vw; height: 120vw; max-width:300px; max-height:400px;}
}











/*memebers*/


.members {
  max-width: 1400px;
  min-width: 1280px;
  margin: 0 auto;
  padding-bottom: 80px;
}

#members .title_box {
  width: 100%;
  padding: 56px 0 12px;
  font-weight: 900;
  color: #fff;
  font-size: 2.6rem;
  text-align: center;
  border-bottom: 2px solid #29e67a;
  letter-spacing: 2px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#members .title_box span {
  color: #29e67a;
  font-size: 3.5rem;
  margin: 0 10px;
}
#members .title_disc {
  color: #21d6e5;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 36px 0 42px;
  text-align: center;
  line-height: 1.7;
  word-break: keep-all;
}

#members .d-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.gubun_box {
  flex: 1 1 0%;
  background: linear-gradient(120deg, #141d2b 65%, #283950 100%);
  border-radius: 22px;
  box-shadow: 0 4px 22px 0 rgba(24,40,67,0.08), 0 1.5px 0 0 #29e67a inset;
  padding: 32px 20px 32px 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.gubun_box:hover {
  box-shadow: 0 8px 40px 0 rgba(24,40,67,0.18), 0 2px 0 0 #29e67a inset;
  transform: translateY(-4px) scale(1.025);
}

.gubun1_1 {
  width: 100%;
  font-size: 1.15rem;
  color: #b0e3d6;
  font-weight: 700;
  text-align: center;
  padding-bottom: 2px;
  letter-spacing: 1px;
}
.gubun1_1 span {
  color: #67e9ff;
  font-size: 1.33rem;
  display: block;
  font-weight: 800;
  margin-top: 3px;
}

.gb_title {
  width: 100%;
  font-size: 1rem;
  color: #29e67a;
  font-weight: 700;
  text-align: center;
  margin: 12px 0 4px 0;
  letter-spacing: .02em;
  text-transform: uppercase;
  opacity: 0.9;
  letter-spacing: 0.04em;
}

.gubun1_2, .gubun1_3 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.gubun1_2 .gb_speaker {
  display: block;
  width: 100%;
  background: none;
  color:#21d6e5;
  font-size: 1.14rem;
  font-weight: 800;
  text-align: center;
  /*border-bottom: 1px solid #38416a;*/
  padding: 13px 0 3px 0;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
  transition: background .12s;
  border-radius: 7px 7px 0 0;
  position: relative;
}

.gubun1_2 .gb_speaker.leader {
  background: linear-gradient(90deg, #152b46 30%, #22c97c 100%);
  color: #fff;
  font-weight: 900;
  border-bottom: 2.5px solid #29e67a;
  border-radius: 9px 9px 0 0;
  box-shadow: 0 2px 10px 0 rgba(35,218,135,0.13);
}

.gubun1_3 .bg_pos {
  display: block;
  color: #e1edff;
  font-size: 1.01rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
  min-height: 38px;
  line-height: 1.5;
  padding: 2px 0 16px 0;
  border-bottom: 1px dashed #2f8eb7;
  margin-bottom: 8px;
  word-break: keep-all;
  letter-spacing: 0.01em;
}

.gubun1_2:last-of-type .gb_speaker,
.gubun1_3:last-of-type .bg_pos {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}












/*resoursec*/
  #resources .noti_box{
    max-width:600px;margin:0 auto 20px auto;text-align:center;
  }
   #resources .noti_con{
    background:rgba(44,51,61,0.85);
    color:#ffe287;
    font-size:1.07rem;
    padding:10px 24px 8px 24px;
    border-radius:12px;
    display:inline-block;
    font-weight:500;
    letter-spacing:0.01em;
  }
 

  #resources .report-year {
    font-size: 2rem;
    color: #1b998d;
    font-weight: 700;
    margin: 50px 0 25px 0;
    letter-spacing: 0.1em;
  }
  #resources .title {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 24px 0 32px 0;
    color: #fff;
  }
  #resources .report-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 32px;
  }
  #resources .report-card {
    background: rgba(28,40,57, 0.9);
    border: 2.5px solid #1b998d;
    border-radius: 30px;
    width: 200px;
    min-width: 140px;
    max-width: 90vw;
    margin: 0;
    box-shadow: 0 4px 18px 0 rgba(10,32,75,0.08);
    transition: transform .15s, box-shadow .15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 12px 20px 12px;
    position: relative;
  }
  #resources .report-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px 0 rgba(20,100,180,0.14);
    background: rgba(20,55,115, 0.95);
  }
  #resources .report-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #fff;
  }
  #resources .report-desc {
    font-size: 1.01rem;
    color: #85e3c5;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
  }
  #resources .report-download {
    width: 56px;
    height: 56px;
    background: #1b998d;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    padding: 12px;
    border: none;
    transition: background .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 5px rgba(0,0,0,0.06);
    position: absolute;
    bottom: -22px; left: 50%; transform: translateX(-50%);
  }
  #resources .report-card:hover .report-download {
    background: #086972;
    color: #fff;
  }
  @media (max-width:900px) {
  #resources  .report-list { gap: 12px;}
  #resources   .report-card { padding: 22px 4px 18px 4px;}
  #resources   .title { font-size: 2rem;}
  }
  @media (max-width:540px) {
  #resources   .report-list { flex-direction: column; gap: 18px;}
  #resources   .report-card { width: 90vw;}
  }