:root{--green:#2e7d32;--green2:#43a047;--navy:#1a1a2e;--dark:#212121;--text:#333;--bg:#f5f6fa;--shadow:0 4px 18px rgba(0,0,0,.10);}
*{box-sizing:border-box;margin:0;padding:0;}
body{font-family:"Roboto",sans-serif;color:var(--text);background:var(--bg);}
a{text-decoration:none;color:inherit;}
img{max-width:100%;}

/* NAVBAR */
#navbar{position:fixed;top:0;width:100%;z-index:1000;background:rgba(26,26,46,.93);backdrop-filter:blur(6px);transition:background .3s;}
.nav-inner{max-width:1250px; margin:auto; display:flex; align-items:center; justify-content:space-between; padding:0 24px; height:62px;}
.nav-logo{display:flex;align-items:center;gap:8px;font-family:"Montserrat",sans-serif;font-size:1.3rem;color:#fff;font-weight:900;}
.nav-logo img{height:38px;width:38px;object-fit:contain;}
.nav-links{list-style:none;display:flex;gap:2px;}
.nav-links a{color:#ccc;padding:6px 11px;border-radius:4px;font-size:.85rem;transition:background .2s,color .2s;}
.nav-links a:hover,.nav-links a.active{background:var(--green);color:#fff;}
.hamburger{display:none;background:none;border:none;color:#fff;font-size:1.4rem;cursor:pointer;}

/* ── HERO CAROUSEL ── */
.hero-carousel{position:relative;height:100vh;min-height:520px;overflow:hidden;}
.carousel-track{display:flex;width:100%;height:100%;transition:transform .8s cubic-bezier(.77,0,.175,1);}
.carousel-slide{flex:0 0 100%;background-size:cover;background-position:center;background-color:#0d1b2a;}
.carousel-overlay{position:absolute;inset:0;background:rgba(0,0,0,.50);pointer-events:none;}
.hero-content{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;
  justify-content:center;text-align:center;color:#fff;padding:0 20px;z-index:2;}
.hero-logo-wrap{margin-bottom:1rem;}
.hero-logo{height:90px;filter:drop-shadow(0 2px 12px rgba(0,0,0,.5));}
.hero-title{font-family:"Montserrat",sans-serif;font-size:clamp(3rem,8vw,5.5rem);font-weight:900;
  letter-spacing:2px;text-shadow:0 2px 20px rgba(0,0,0,.6);}
.hero-sub{font-size:clamp(1rem,2.5vw,1.5rem);margin:.4rem 0;opacity:.9;}
.hero-kor{font-size:clamp(.85rem,2vw,1.1rem);opacity:.75;margin-bottom:2rem;}
.hero-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}
.hero-btn{display:inline-block;background:var(--green);color:#fff;padding:12px 30px;
  border-radius:30px;font-size:.95rem;font-weight:700;transition:background .2s,transform .2s;}
.hero-btn:hover{background:var(--green2);transform:translateY(-2px);}
.hero-btn-outline{background:transparent;border:2px solid #fff;color:#fff;}
.hero-btn-outline:hover{background:#fff;color:var(--green);}
/* carousel controls */
.carousel-controls{position:absolute;bottom:28px;left:0;width:100%;display:flex;
  align-items:center;justify-content:center;gap:16px;z-index:3;}
.carousel-btn{background:rgba(255,255,255,.20);border:none;color:#fff;
  width:40px;height:40px;border-radius:50%;font-size:1rem;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;}
.carousel-btn:hover{background:rgba(255,255,255,.40);}
.carousel-dots{display:flex;gap:8px;}
.carousel-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.45);
  border:none;cursor:pointer;transition:background .2s,transform .2s;}
.carousel-dot.active{background:#fff;transform:scale(1.2);}

/* PAGE HERO */
.page-hero{position:relative;background-color:#1b3a2d;background-size:cover;background-position:center;
  color:#fff;text-align:center;padding:120px 24px 60px;}
.page-hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.55);}
.page-hero-content{position:relative;z-index:1;}
.page-hero h1{font-family:"Montserrat",sans-serif;font-size:2.4rem;}
.page-hero p{opacity:.8;margin-top:.5rem;}
.page-hero-sm{padding:100px 24px 44px;}

/* CONTAINER */
.container{max-width:1100px;margin:0 auto;padding:60px 24px;}

/* WELCOME */
.welcome{display:flex;gap:44px;align-items:center;}
.welcome-logo img{width:120px;}
.welcome-text h2{font-size:1.5rem;color:var(--dark);margin-bottom:1rem;line-height:1.4;}
.welcome-text p{line-height:1.9;margin-bottom:.8rem;color:#555;}
.btn-primary{display:inline-block;margin-top:1rem;background:var(--green);color:#fff;
  padding:10px 24px;border-radius:6px;font-weight:700;transition:background .2s;}
.btn-primary:hover{background:var(--green2);}

/* SECTION TITLE */
.section-title{font-size:1.75rem;font-family:"Montserrat",sans-serif;color:var(--dark);
  margin-bottom:2rem;text-align:center;}
.section-title::after{content:"";display:block;width:56px;height:4px;background:var(--green);margin:.5rem auto 0;}

/* CARDS */
.highlights{background:#fff;}
.highlights .container{padding:60px 24px;}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:22px;}
.card{background:var(--bg);border-radius:12px;padding:30px 22px;box-shadow:var(--shadow);
  text-align:center;transition:transform .2s;}
.card:hover{transform:translateY(-4px);}
.card-icon{font-size:2.2rem;color:var(--green);margin-bottom:.9rem;}
.card h3{margin-bottom:.4rem;font-size:1rem;color:var(--dark);}
.card p{font-size:.88rem;color:#666;line-height:1.6;}

/* NEWS */
.news-preview{background:var(--bg);}
.news-list{list-style:none;margin-bottom:1.5rem;}
.news-list li{border-bottom:1px solid #e0e0e0;}
.news-list li a{display:flex;align-items:center;gap:10px;padding:13px 0;
  color:var(--text);font-size:.93rem;transition:color .2s;}
.news-list li a:hover{color:var(--green);}
.news-tag{display:inline-block;padding:2px 10px;border-radius:12px;font-size:.72rem;font-weight:700;white-space:nowrap;}
.news-tag.notice{background:#1565c0;color:#fff;}
.news-tag.award{background:#e65100;color:#fff;}
.news-tag.interview{background:#6a1b9a;color:#fff;}
.news-date{font-size:.78rem;color:#888;white-space:nowrap;}
.btn-outline{display:inline-block;border:2px solid var(--green);color:var(--green);
  padding:8px 22px;border-radius:6px;font-weight:700;transition:.2s;}
.btn-outline:hover{background:var(--green);color:#fff;}
.news-cards-wrap{display:flex;flex-direction:column;gap:18px;max-width:860px;margin:auto;}
.news-card{display:flex;gap:20px;background:#fff;border-radius:12px;padding:20px;
  box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s;color:var(--text);}
.news-card:hover{transform:translateY(-3px);box-shadow:0 8px 28px rgba(0,0,0,.13);}
.news-card-img{flex-shrink:0;width:80px;height:80px;border-radius:10px;
  background:linear-gradient(135deg,#fff,#fff);
  display:flex;align-items:center;justify-content:center;font-size:2rem;color:var(--green);}
.news-card-body h3{font-size:1rem;margin:.4rem 0;line-height:1.5;}
.news-card-body p{font-size:.85rem;color:#666;line-height:1.5;}
.news-card-meta{display:flex;align-items:center;gap:8px;margin-bottom:2px;}
.news-date-sm{font-size:.78rem;color:#999;}
.article-body{max-width :0 auto; margin: 0 auto;line-height:1.9;color:#444;font-size:.97rem;}
.article-body p{margin-bottom:1.2rem;}
.article-body h2,.article-body h3{color:var(--dark);margin-bottom:.8rem;}
.article-body ul{padding-left:1.4rem;margin-bottom:1rem;}
.article-body li{margin-bottom:.4rem;}
.news-inner-img{flex:0 0 100%;background:none;}

/* PROFESSOR */
.prof-wrap{display:flex; gap:48px; align-items:flex-start; flex-wrap:wrap; max-width:860px; margin:0;}
.prof-info{flex: 1; min-width: 250px;}
.prof-photo{flex: 0 0 220px;}
.prof-photo img{width:100%; height: auto; max-width:220px; border-radius:14px;box-shadow:0 4px 20px rgba(0,0,0,.15);}
.prof-name{font-size:1.8rem;margin-bottom:.3rem;}
.prof-name span{font-size:1.1rem;color:#666;font-weight:400;margin-left:.5rem;}
.prof-title{color:var(--green);font-weight:700;margin-bottom:.3rem;}
.prof-dept{color:#666;font-size:.9rem;margin-bottom:1rem;line-height:1.6;}
.prof-contact a{color:var(--green);}
.prof-contact p{margin:.3rem 0;}
.prof-scholar-link{display:inline-flex;align-items:center;gap:6px;margin-top:8px;}
.prof-section{max-width : 860px; margin-top:1.5rem; padding-top: 1.5rem; border-top: 1px solid #ddd;}
.prof-section h3{font-size:1rem;color:var(--dark);border-left:3px solid var(--green);
  padding-left:10px;margin-bottom:.6rem;}
.prof-section ul{padding-left:1.2rem;color:#555;line-height:2;}

/* MEMBERS */
.member-section-title{font-size:1.4rem;color:var(--dark);border-bottom:2px solid var(--green);
  padding-bottom:.4rem;margin:2.5rem 0 1.2rem;}
.member-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:18px;margin-bottom:1rem;}
.member-card{display:flex;align-items:flex-start;gap:18px;background:#fff;border-radius:12px;padding:18px;box-shadow:0 2px 10px rgba(0,0,0,.07);}
.member-photo img{width:116px;height:148px;border-radius:12px;object-fit:cover;flex-shrink:0;}
.member-no-photo{width:116px;height:148px;border-radius:12px;background:#e8f5e9;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;color:var(--green);font-size:2rem;}
.member-role{font-size:.72rem;color:var(--green);font-weight:700;background:#e8f5e9;
  padding:2px 8px;border-radius:10px;display:inline-block;margin-bottom:.3rem;}
.member-info h3{font-size:.98rem;margin-bottom:.3rem;}
.member-info h3 em{font-style:normal;font-size:.78rem;color:#888;margin-left:.3rem;}
.member-info p{font-size:.8rem;color:#666;}
.member-info a{color:var(--green);}
.member-note{font-size:.75rem;color:#999;margin-top:.2rem;}
.alumni-wrap{display:grid;grid-template-columns:1fr 1fr;gap:32px;max-width:900px;}
.alumni-col h4{color:var(--dark);margin-bottom:.8rem;font-size:.95rem;}
.alumni-col ul{padding-left:1.2rem;color:#555;line-height:2.1;font-size:.88rem;}

/* PUBLICATIONS */
.pub-year-block{margin-bottom:2.5rem;}
.pub-year{font-size:1.3rem;color:var(--dark);border-left:4px solid var(--green);
  padding-left:14px;margin-bottom:1rem;}
.pub-list{padding-left:1.4rem;}
.pub-list li{line-height:1.8;margin-bottom:.9rem;color:#444;font-size:.92rem;}

/* RESEARCH */
.research-intro{max-width:800px;margin:0 auto 3rem;line-height:1.9;color:#555;}
.research-intro p{margin-bottom:1rem;}
.research-area{display:flex;gap:28px;background:#fff;border-radius:14px;padding:32px;
  box-shadow:var(--shadow);margin-bottom:28px;}
.research-area.reverse{flex-direction : row-reverse;}
.research-area-text h2{font-size:1.3rem;color:var(--dark);margin-bottom:.8rem;}
.research-area-text p{line-height:1.8;color:#555;margin-bottom:.8rem;font-size:.93rem;}
.research-papers{margin-top:1rem;font-size:.87rem;}
.research-papers ul{padding-left:1.2rem;color:#666;line-height:1.9;margin-top:.4rem;}
.research-gallery{display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 1.5rem;}
.research-items{text-align: cenclearter; flex: 0 0 260px;}
.research-items img{width:100%; aspect-ratio: 1/1; object-fit: cover; border-radius:14px;box-shadow:0 4px 20px rgba(0,0,0,.15);}
.research-items p{font-size: 12px; color: #666; margin-top: 6px; line-height: 1.4;}

/* OPPORTUNITIES */
.opp-logo{margin:0 auto 2rem;text-align:center;}
.opp-logo img{height:100px;width:auto;}
.opp-text{font-size:1rem;color:#444;line-height:2;margin-bottom:2.5rem;}
.opp-boxes{display:grid;grid-template-columns:1fr 1fr;gap:20px;max-width:700px;margin:0 auto 2.5rem;}
.opp-box{background:#fff;border-radius:12px;padding:28px;box-shadow:var(--shadow);text-align:center;}
.opp-box i{font-size:2rem;color:var(--green);margin-bottom:.8rem;}
.opp-box h3{margin-bottom:.5rem;font-size:1rem;}
.opp-box p{font-size:.87rem;color:#666;line-height:1.7;}
.opp-contact{background:#e8f5e9;border-radius:12px;padding:24px;max-width:400px;margin:0 auto;}
.opp-contact a{color:var(--green);font-size:1.1rem;font-weight:700;display:block;margin-top:.4rem;}

/* FOOTER */
footer{background:var(--navy);color:#ccc;padding:40px 0 16px;}
.footer-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;}
.footer-inner a{color:#aaa;}
.footer-inner a:hover{color:#fff;}
.footer-links{display:flex;gap:16px;font-size:1.4rem;}
.footer-copy{text-align:center;margin-top:22px;font-size:.78rem;color:#555;}

/* RESPONSIVE */
@media(max-width:900px){.alumni-wrap{grid-template-columns:1fr;}.opp-boxes{grid-template-columns:1fr;}}
@media(max-width:768px){
  .hamburger{display:block;}
  .nav-links{display:none;flex-direction:column;position:absolute;top:62px;left:0;
    width:100%;background:rgba(26,26,46,.97);padding:16px;}
  .nav-links.open{display:flex;}
  .welcome{flex-direction:column;text-align:center;}
  .prof-wrap{flex-direction:column;}
  .research-area{flex-direction:column;}
  .footer-inner{flex-direction:column;text-align:center;}
}

/* ── EVENT CARD GRID ── */
.events-section {padding-top: 60px; padding-bottom: 70px;}
.event-card-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto;}
.event-card {background: #fff; border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; transition: transform .2s, box-shadow .2s;}
.event-card:hover {transform: translateY(-4px);}
.event-card-title {font-size: 1.05rem; color: var(--dark); padding: 18px 18px 10px; margin: 0; text-align: center;}

/* ── EVENT CARD CAROUSEL ── */
.event-card-carousel {position: relative; width: 250px; height: 175px; margin: 0 auto 14px; overflow: hidden; border-radius: 12px; background: #0d1b2a;}
.event-card-carousel-track { display: flex; width: 100%; height: 100%; transition: transform .4s ease;}

.event-card-carousel-slide {flex: 0 0 100%; height: 100%; background-size: cover; background-position: center; background-color: #0d1b2a;}
.event-card-carousel-slide img {width: 100%; height: 100%; object-fit: cover; display: block;}

.event-card-carousel-btn {position: absolute; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border: none; border-radius: 50%; background: rgba(0, 0, 0, .38); color: #fff; font-size: .75rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 2;}

.event-card-carousel-btn:hover { background: rgba(0, 0, 0, .62);}
.event-card-carousel-prev { left: 8px;}

.event-card-carousel-next {right: 8px;}

.event-card-carousel-dots { position: absolute; left: 0; right: 0; bottom: 8px; display: flex; justify-content: center; gap: 6px; z-index: 2;}

.event-card-carousel-dot {width: 7px; height: 7px; border: none; border-radius: 50%; background: rgba(255, 255, 255, .5); cursor: pointer; padding: 0;}

.event-card-carousel-dot.active { background: #fff; transform: scale(1.15);}

.event-card-desc {padding: 0 18px 20px; margin: 0; font-size: .88rem; color: #666; line-height: 1.6; text-align: center;}

/* 모바일에서는 카드 내부 carousel이 화면보다 커지지 않게 */
@media (max-width: 360px) {
  .event-card-carousel {width: 100%; height: 175px; border-radius: 0;}
}

/* HOME PAGE POLISH */
.home-page{
  background:#f7f4ed;
  color:#5f5f5d;
  font-family:"Malgun Gothic","맑은 고딕","Apple SD Gothic Neo","Noto Sans KR",
    system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:400;
  line-height:1.7;
}
.home-page h1,
.home-page h2,
.home-page h3,
.home-page strong{
  color:#1c1c1c;
  font-weight:600;
}
.home-page #navbar{
  background:rgba(247,244,237,.94);
  border-bottom:1px solid rgba(28,28,28,.08);
}
.home-page .nav-logo{
  color:#1c1c1c;
  font-family:inherit;
  font-weight:600;
}
.home-page .nav-links a{
  color:#5f5f5d;
  border-radius:9999px;
}
.home-page .nav-links a:hover,
.home-page .nav-links a.active{
  background:#1c1c1c;
  color:#fcfbf8;
}
.home-page .hamburger{color:#1c1c1c;}
.home-page .hero-carousel{
  min-height:640px;
}
.home-page .carousel-overlay{
  background:linear-gradient(180deg,rgba(28,28,28,.48),rgba(28,28,28,.58));
}
.home-page .hero-content{
  color:#fcfbf8;
  padding-top:62px;
}
.home-page .hero-title{
  color:#fcfbf8;
  font-family:inherit;
  font-size:clamp(3rem,6vw,3.75rem);
  font-weight:600;
  letter-spacing:-.03em;
  text-shadow:none;
}
.home-page .hero-sub{
  font-size:clamp(1rem,2vw,1.25rem);
  line-height:1.6;
}
.home-page .hero-kor{
  color:rgba(252,251,248,.82);
  font-size:clamp(.95rem,1.7vw,1.08rem);
  line-height:1.7;
}
.home-page .hero-btn,
.home-page .btn-primary{
  background:#1c1c1c;
  color:#fcfbf8;
  border:1px solid #1c1c1c;
  box-shadow:rgba(255,255,255,.2) 0 .5px 0 0 inset,
    rgba(0,0,0,.2) 0 0 0 .5px inset,
    rgba(0,0,0,.05) 0 1px 2px 0;
  font-weight:600;
}
.home-page .hero-btn{
  padding:12px 28px;
}
.home-page .hero-btn:hover,
.home-page .btn-primary:hover{
  background:#1c1c1c;
  opacity:.82;
  transform:none;
}
.home-page .hero-btn-outline,
.home-page .btn-outline{
  background:transparent;
  color:#1c1c1c;
  border:1px solid rgba(28,28,28,.4);
  box-shadow:none;
}
.home-page .hero-btn-outline{
  color:#fcfbf8;
  border-color:rgba(252,251,248,.7);
}
.home-page .hero-btn-outline:hover{
  background:rgba(252,251,248,.08);
  color:#fcfbf8;
  opacity:.82;
}
.home-page .carousel-btn{
  background:rgba(252,251,248,.14);
  border:1px solid rgba(252,251,248,.28);
}
.home-page .carousel-btn:hover{background:rgba(252,251,248,.24);}
.home-page .container{
  padding-top:84px;
  padding-bottom:84px;
}
.home-page .welcome{
  gap:52px;
}
.home-page .welcome-text h2{
  font-size:clamp(1.8rem,3vw,2.4rem);
  line-height:1.3;
  letter-spacing:-.02em;
}
.home-page .welcome-text p{
  color:#5f5f5d;
  font-size:1.05rem;
  line-height:1.9;
}
.home-page .highlights{
  background:#f7f4ed;
}
.home-page .highlights .container{
  padding-top:84px;
  padding-bottom:84px;
}
.home-page .section-title{
  color:#1c1c1c;
  font-family:inherit;
  font-size:clamp(2rem,3vw,2.5rem);
  font-weight:600;
  letter-spacing:-.02em;
  margin-bottom:2.25rem;
}
.home-page .section-title::after{
  width:48px;
  height:2px;
  background:#1c1c1c;
  margin-top:.7rem;
}
.home-page .cards{
  gap:20px;
}
.home-page .card{
  background:#fcfbf8;
  border:1px solid #eceae4;
  border-radius:16px;
  box-shadow:none;
  padding:30px 24px;
}
.home-page .card:hover{
  transform:none;
  border-color:rgba(28,28,28,.18);
}
.home-page .card-icon{
  color:#1c1c1c;
}
.home-page .card h3{
  font-size:1.08rem;
}
.home-page .card p{
  color:#5f5f5d;
  font-size:1rem;
}
.home-page .news-preview{
  background:#f7f4ed;
}
.home-page .news-list{
  border:1px solid #eceae4;
  border-radius:16px;
  overflow:hidden;
  background:#fcfbf8;
}
.home-page .news-list li{
  border-bottom:1px solid #eceae4;
}
.home-page .news-list li:last-child{
  border-bottom:none;
}
.home-page .news-list li a{
  min-height:56px;
  padding:16px 18px;
  color:#5f5f5d;
  font-size:1rem;
}
.home-page .news-list li a:hover{
  color:#1c1c1c;
}
.home-page .news-tag{
  background:#1c1c1c;
  color:#fcfbf8;
  font-weight:600;
}
.home-page .news-tag.notice,
.home-page .news-tag.award,
.home-page .news-tag.interview{
  background:#1c1c1c;
  color:#fcfbf8;
}
.home-page .news-date{
  color:#5f5f5d;
}
.home-page .btn-outline:hover{
  background:transparent;
  color:#1c1c1c;
  border-color:#1c1c1c;
  opacity:.82;
}
.home-page footer{
  background:#1c1c1c;
  color:rgba(252,251,248,.8);
}
.home-page .footer-inner a,
.home-page .footer-links a{
  color:rgba(252,251,248,.8);
}
.home-page .footer-inner a:hover,
.home-page .footer-links a:hover{
  color:#fcfbf8;
}
.home-page .footer-copy{
  color:rgba(252,251,248,.56);
}
@media(max-width:768px){
  .home-page .nav-links{
    background:rgba(247,244,237,.98);
    border-bottom:1px solid #eceae4;
  }
  .home-page .hero-carousel{
    min-height:560px;
  }
  .home-page .hero-title{
    font-size:clamp(2.25rem,10vw,3rem);
    letter-spacing:-.02em;
  }
  .home-page .container,
  .home-page .highlights .container{
    padding-top:56px;
    padding-bottom:56px;
  }
  .home-page .welcome{
    gap:28px;
  }
  .home-page .welcome-text p{
    font-size:1rem;
  }
  .home-page .news-list li a{
    align-items:flex-start;
    flex-wrap:wrap;
    gap:8px;
  }
}

/* SITE-WIDE WARM POLISH */
body{
  background:#fbfaf6;
  color:#1c1c1c;
  font-family:"Malgun Gothic","맑은 고딕","Apple SD Gothic Neo","Noto Sans KR",
    system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:400;
  line-height:1.7;
}
h1,h2,h3,h4,strong{
  color:#111111;
  font-weight:600;
}
#navbar{
  background:rgba(251,250,246,.94) !important;
  border-bottom:1px solid rgba(28,28,28,.08);
}
.nav-logo{
  color:#1c1c1c;
  font-family:inherit;
  font-weight:600;
}
.nav-links a{
  color:#1c1c1c;
  border-radius:9999px;
}
.nav-links a:hover,
.nav-links a.active{
  background:#1c1c1c;
  color:#fcfbf8;
}
.hamburger{color:#1c1c1c;}
.container{
  max-width:1160px;
  padding-top:80px;
  padding-bottom:80px;
}
.page-hero{
  margin-top:62px;
  background:#fbfaf6 !important;
  background-image:none !important;
  color:#1c1c1c;
  padding:56px 24px 28px;
  border-bottom:1px solid #eceae4;
}
.page-hero-overlay{
  display:none;
}
.page-hero h1{
  font-family:inherit;
  font-size:clamp(2rem,3vw,2.7rem);
  font-weight:600;
  letter-spacing:-.02em;
}
.page-hero p{
  color:#5f5f5d;
  opacity:1;
  margin-top:.45rem;
}
.page-hero-sm{
  padding:48px 24px 24px;
}
.btn-primary,
.hero-btn{
  background:#1c1c1c;
  color:#fcfbf8;
  border:1px solid #1c1c1c;
  box-shadow:rgba(255,255,255,.2) 0 .5px 0 0 inset,
    rgba(0,0,0,.2) 0 0 0 .5px inset,
    rgba(0,0,0,.05) 0 1px 2px 0;
  font-weight:600;
}
.btn-primary:hover,
.hero-btn:hover{
  background:#1c1c1c;
  opacity:.82;
  transform:none;
}
.btn-outline,
.hero-btn-outline{
  background:transparent;
  color:#1c1c1c;
  border:1px solid rgba(28,28,28,.4);
  box-shadow:none;
}
.btn-outline:hover{
  background:transparent;
  color:#1c1c1c;
  border-color:#1c1c1c;
  opacity:.82;
}
.section-title{
  color:#1c1c1c;
  font-family:inherit;
  font-size:clamp(2rem,3vw,2.5rem);
  font-weight:600;
  letter-spacing:-.02em;
}
.section-title::after{
  width:48px;
  height:2px;
  background:#1c1c1c;
}
.highlights,
.news-preview{
  background:#fbfaf6;
}
.card,
.news-card,
.member-card,
.research-area,
.opp-box,
.event-card{
  background:#fcfbf8;
  border:1px solid #eceae4;
  box-shadow:none;
}
.card:hover,
.news-card:hover,
.event-card:hover{
  transform:none;
  box-shadow:none;
  border-color:rgba(28,28,28,.18);
}
.card-icon,
.prof-title,
.prof-contact a,
.member-info a,
.opp-box i,
.opp-contact a{
  color:#1c1c1c;
}
.news-card-body p,
.article-body,
.article-body p,
.research-intro,
.research-area-text p,
.research-papers ul,
.opp-box p,
.opp-text,
.member-info p,
.prof-dept,
.prof-section ul,
.alumni-col ul,
.pub-list li{
  color:#1c1c1c;
}
.news-card-img,
.member-no-photo,
.opp-contact{
  background:#fbfaf6;
}
.member-role{
  background:#fbfaf6;
  color:#1c1c1c;
  border:1px solid #eceae4;
}
.member-section-title{
  border-bottom-color:#1c1c1c;
}
.pub-year,
.prof-section h3{
  border-color:#1c1c1c;
}
.news-tag.notice,
.news-tag.award,
.news-tag.interview{
  background:#1c1c1c;
  color:#fcfbf8;
}
.news-list{
  border:1px solid #eceae4;
  border-radius:16px;
  overflow:hidden;
  background:#fcfbf8;
}
.news-list li{
  border-bottom:1px solid #eceae4;
}
.news-list li:last-child{
  border-bottom:none;
}
.news-list li a{
  min-height:56px;
  padding:16px 18px;
  color:#1c1c1c;
}
.news-list li a:hover{
  color:#1c1c1c;
}
.container a[href*="scholar.google.com"]{
  color:#1c1c1c !important;
  font-weight:600 !important;
}
footer{
  background:#1c1c1c;
  color:rgba(252,251,248,.8);
}
footer strong{
  color:#fcfbf8;
}
.footer-inner a,
.footer-links a{
  color:rgba(252,251,248,.8);
}
.footer-inner a:hover,
.footer-links a:hover{
  color:#fcfbf8;
}
.footer-copy{
  color:rgba(252,251,248,.56);
}
.home-page header.hero-carousel{
  height:min(480px,52vh) !important;
  min-height:420px !important;
  max-height:500px;
}
@media(max-width:768px){
  .nav-links{
    background:rgba(251,250,246,.98);
    border-bottom:1px solid #eceae4;
  }
  .container{
    padding-top:56px;
    padding-bottom:56px;
  }
  .page-hero{
    padding:40px 20px 22px;
  }
  .home-page header.hero-carousel{
    height:min(340px,46vh) !important;
    min-height:280px !important;
  }
  .news-card{
    flex-direction:column;
  }
  .research-area.reverse{
    flex-direction:column;
  }
}

/* READABILITY + EVENT IMAGE REFINEMENTS */
.home-page{
  background:#fbfaf6;
  color:#1c1c1c;
}
.home-page .highlights,
.home-page .news-preview{
  background:#fbfaf6;
}
.home-page .welcome-text p,
.home-page .card p,
.home-page .news-list li a{
  color:#1c1c1c;
}
.news-date,
.news-date-sm,
.member-note,
.event-card-desc{
  color:#5f5f5d;
}
.event-card{
  padding-bottom:16px;
}
.event-card-title{
  color:#111111;
}
.event-card-carousel{
  width:calc(100% - 36px);
  height:auto;
  aspect-ratio:4 / 3;
  margin:0 18px;
  border-radius:12px;
  background:#1c1c1c;
  cursor:pointer;
}
.event-card-carousel::after{
  content:"View photos";
  position:absolute;
  inset:auto 12px 12px auto;
  padding:5px 10px;
  border-radius:9999px;
  background:rgba(28,28,28,.72);
  color:#fcfbf8;
  font-size:.75rem;
  opacity:0;
  transition:opacity .2s;
  pointer-events:none;
}
.event-card-carousel:hover::after{
  opacity:1;
}
.event-card-carousel-track{
  display:block;
  height:100%;
  transform:none !important;
  transition:none;
}
.event-card-carousel-slide{
  height:100%;
}
.event-card-carousel-slide:not(:first-child),
.event-card-carousel-btn,
.event-card-carousel-dots{
  display:none !important;
}
.event-card-carousel-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  cursor:zoom-in;
  transition:transform .25s,opacity .25s;
}
.event-card-carousel:hover .event-card-carousel-slide:first-child img{
  transform:scale(1.03);
  opacity:.94;
}
.image-lightbox{
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(17,17,17,.8);
}
.image-lightbox.open{
  display:flex;
}
.image-lightbox-panel{
  width:min(1100px,92vw);
  max-height:88vh;
  overflow:auto;
  border-radius:16px;
  background:#fbfaf6;
  border:1px solid rgba(252,251,248,.2);
}
.image-lightbox-header{
  position:sticky;
  top:0;
  z-index:1;
  padding:20px 24px 16px;
  background:#fbfaf6;
  border-bottom:1px solid #eceae4;
}
.image-lightbox-title{
  margin:0;
  color:#111111;
  font-size:1.35rem;
}
.image-lightbox-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
  padding:20px 24px 24px;
}
.image-lightbox-gallery img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  background:#fcfbf8;
}
.image-lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  width:40px;
  height:40px;
  border:1px solid rgba(252,251,248,.35);
  border-radius:9999px;
  background:rgba(28,28,28,.72);
  color:#fcfbf8;
  font-size:1.35rem;
  line-height:1;
  cursor:pointer;
}
body.lightbox-open{
  overflow:hidden;
}
@media(max-width:768px){
  .event-card-carousel{
    width:calc(100% - 28px);
    margin:0 14px;
  }
}

/* STATIC HOME HERO */
.home-static-hero{
  background:#fbfaf6;
  padding-top:104px;
  padding-bottom:56px;
}
.home-static-hero .container{
  padding-top:0;
  padding-bottom:0;
}
.home-hero-copy{
  max-width:780px;
  margin:0 auto 28px;
  text-align:center;
}
.home-hero-copy h1{
  margin-bottom:.5rem;
  color:#111111;
  font-size:clamp(32px,4vw,46px);
  line-height:1.1;
  letter-spacing:-.03em;
}
.home-hero-subtitle,
.home-hero-kor{
  color:#1c1c1c;
}
.home-hero-subtitle{
  font-size:clamp(1rem,2vw,1.25rem);
  margin-bottom:.35rem;
}
.home-hero-kor{
  font-size:clamp(.95rem,1.6vw,1.08rem);
}
.home-hero-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:1.4rem;
}
.home-static-hero .hero-btn,
.home-static-hero .hero-btn-outline{
  background:#1c1c1c;
  color:#fcfbf8;
  border:1px solid #1c1c1c;
  box-shadow:rgba(255,255,255,.2) 0 .5px 0 0 inset,
    rgba(0,0,0,.2) 0 0 0 .5px inset,
    rgba(0,0,0,.05) 0 1px 2px 0;
}
.home-static-hero .hero-btn-outline:hover{
  background:#1c1c1c;
  color:#fcfbf8;
}
.home-hero-image-frame{
  width:70%;
  max-width:70%;
  margin-left:auto;
  margin-right:auto;
  height:auto;
  overflow:hidden;
  border:1px solid #eceae4;
  border-radius:16px;
}
.home-hero-image{
  width:100%;
  height:auto;
  display:block;
}
@media(max-width:768px){
  .home-static-hero{
    padding-top:72px;
    padding-bottom:36px;
  }
  .home-hero-copy{
    margin-bottom:22px;
  }
  .home-hero-image-frame{
    width:100%;
    max-width:100%;
    border-radius:12px;
  }
}

/* FINAL PAGE REFINEMENTS */
.prof-wrap{
  gap:52px;
  max-width:980px;
  margin:0;
}
.prof-photo{
  flex:0 0 330px;
}
.prof-photo img{
  max-width:330px;
  width:100%;
  height:auto;
  box-shadow:none;
}
.member-role{
  background:none;
  color:#1c1c1c;
  border:none;
  border-radius:0;
  padding:0;
  font-size:13px;
  line-height:1.2;
  font-weight:600;
  margin-bottom:.35rem;
}
.image-lightbox-panel{
  width:min(96vw,1400px);
}
.image-lightbox-gallery{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.image-lightbox-gallery img{
  width:100%;
  height:auto;
  object-fit:contain;
}
@media(max-width:768px){
  .prof-wrap{
    gap:28px;
  }
  .member-card{
    align-items:flex-start;
  }
  .member-photo img,
  .member-no-photo{
    width:min(116px,32vw);
    height:auto;
    aspect-ratio:29 / 37;
  }
  .prof-photo{
    flex:0 0 auto;
    width:min(100%,330px);
  }
}
