:root{
  --bg:         #f4f8fc;
  --bg-alt:     #e9f1fa;
  --bg-card:    #ffffff;
  --line:       #d7e4f0;
  --text:       #16324a;
  --muted:      #5d7b94;
  --accent:     #1f6fd6; 
  --accent-dim: #c9e0f7;
  --signal:     #0d4f9c;
  --radius:     6px;
  --maxw:       1180px;

  --f-display: "Outfit", "Inter", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, sans-serif;
  --f-mono:    "Inter", system-ui, sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--f-body);
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}

header.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(244,248,252,0.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:var(--f-display);
  font-weight:600; font-size:1.1rem;
  letter-spacing:0.01em;
  color:var(--signal);
}
.brand .tag{
  font-family:var(--f-body);
  font-weight:600;
  font-size:0.65rem;
  color:var(--accent);
  background:var(--accent-dim);
  padding:3px 7px;
  border-radius:var(--radius);
}
nav.main-nav ul{
  display:flex; gap:28px; list-style:none; margin:0; padding:0;
}
nav.main-nav a{
  font-size:0.94rem; color:var(--muted); font-weight:500;
  position:relative; padding:4px 0;
}
nav.main-nav a:hover, nav.main-nav a.active{ color:var(--signal); }
nav.main-nav a.active::after{
  content:""; position:absolute; left:0; bottom:-2px;
  width:100%; height:2px; background:var(--accent);
}
.nav-toggle{display:none;}

@media (max-width:760px){
  nav.main-nav{
    position:fixed; inset:64px 0 0 0;
    background:var(--bg); padding:24px;
    display:none; flex-direction:column;
  }
  nav.main-nav.open{display:flex;}
  nav.main-nav ul{flex-direction:column; gap:18px;}
  .nav-toggle{
    display:block; background:#fff; border:1px solid var(--line);
    color:var(--signal); padding:6px 10px; border-radius:var(--radius);
    font-weight:600; cursor:pointer;
  }
}

.hero{
  padding:96px 0 64px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at 80% 0%, rgba(31,111,214,0.08), transparent 60%);
}
.hero .eyebrow{
  font-family:var(--f-body); color:var(--accent); font-weight:600;
  font-size:0.82rem; letter-spacing:0.08em; text-transform:uppercase;
}
.hero h1{
  font-family:var(--f-display);
  font-size:clamp(2.4rem, 6vw, 4.4rem);
  line-height:1.05; margin:14px 0 18px;
  max-width:820px;
  color:var(--signal);
}
.hero p.lead{
  color:var(--muted); max-width:620px; font-size:1.05rem;
}
.hero .cta-row{display:flex; gap:14px; margin-top:28px; flex-wrap:wrap;}
.btn{
  display:inline-block; padding:13px 24px;
  border-radius:var(--radius); font-size:0.94rem; font-weight:600;
  border:1px solid transparent;
}
.btn-primary{background:var(--accent); color:#ffffff;}
.btn-primary:hover{background:var(--signal);}
.btn-ghost{border-color:var(--line); color:var(--text); background:#fff;}
.btn-ghost:hover{border-color:var(--accent); color:var(--accent);}

section{padding:64px 0;}
section + section{border-top:1px solid var(--line);}
.section-head{margin-bottom:36px;}
.section-head .eyebrow{
  font-family:var(--f-body); color:var(--accent); font-weight:600;
  font-size:0.8rem; letter-spacing:0.08em; text-transform:uppercase;
}
.section-head h2{
  font-family:var(--f-display); font-size:1.9rem; margin:8px 0 0;
  color:var(--signal);
}

.grid{display:grid; gap:20px;}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}
@media (max-width:900px){.grid-3,.grid-2{grid-template-columns:1fr;}}

.card{
  background:var(--bg-card); border:1px solid var(--line);
  border-radius:var(--radius); padding:24px;
  box-shadow:0 1px 3px rgba(22,50,74,0.04);
}
.card h3{font-family:var(--f-display); margin:0 0 8px; font-size:1.1rem; color:var(--signal);}
.card p{color:var(--muted); font-size:0.92rem; margin:0;}

.stat-row{display:flex; gap:36px; flex-wrap:wrap; margin-top:8px;}
.stat .num{font-family:var(--f-display); font-size:2.1rem; color:var(--accent); font-weight:700;}
.stat .label{color:var(--muted); font-size:0.85rem;}

.gallery-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
@media (max-width:760px){.gallery-grid{grid-template-columns:repeat(2,1fr);}}
.gallery-item{
  aspect-ratio:4/3; overflow:hidden; border-radius:var(--radius);
  border:1px solid var(--line); background:var(--bg-alt);
}
.gallery-item img{width:100%; height:100%; object-fit:cover;}

#news-list{display:flex; flex-direction:column; gap:0;}
.news-item{
  display:grid; grid-template-columns:140px 1fr; gap:24px;
  padding:22px 0; border-top:1px solid var(--line);
}
.news-item:first-child{border-top:none;}
.news-item time{
  font-family:var(--f-body); color:var(--accent); font-size:0.84rem; font-weight:600;
}
.news-item h3{margin:0 0 6px; font-family:var(--f-display); font-size:1.15rem; color:var(--signal);}
.news-item p{color:var(--muted); margin:0; font-size:0.94rem;}
.news-item .badge{
  display:inline-block; margin-top:8px; font-weight:600;
  font-size:0.72rem; color:var(--accent); border:1px solid var(--accent-dim);
  background:var(--accent-dim);
  padding:3px 8px; border-radius:var(--radius);
}
@media (max-width:600px){.news-item{grid-template-columns:1fr;}}
.empty-state{color:var(--muted); font-size:0.95rem;}

.sponsor-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
@media (max-width:900px){.sponsor-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:600px){.sponsor-grid{grid-template-columns:repeat(2,1fr);}}
.sponsor-logo{
  background:var(--bg-card); border:1px solid var(--line);
  border-radius:var(--radius); padding:24px;
  display:flex; align-items:center; justify-content:center;
  min-height:110px; color:var(--muted); font-size:0.85rem;
  box-shadow:0 1px 3px rgba(22,50,74,0.04);
}
.sponsor-logo img{max-height:60px; width:auto; object-fit:contain;}

.team-block{margin-bottom:48px;}
.team-block h3{
  font-family:var(--f-body); color:var(--accent); font-weight:600; font-size:0.85rem;
  text-transform:uppercase; letter-spacing:0.08em; margin-bottom:18px;
}
.team-members{display:flex; flex-wrap:wrap; gap:20px;}
.member-card{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  width:140px; text-align:center;
}
.member-photo{
  width:120px; height:120px; border-radius:var(--radius);
  overflow:hidden; background:var(--bg-alt); border:1px solid var(--line);
}
.member-photo img{width:100%; height:100%; object-fit:cover;}
.member-name{font-size:0.9rem; font-weight:500; color:var(--text);}
.member-card.lead .member-photo{border-color:var(--accent); border-width:2px;}
.member-card.lead .member-name{color:var(--signal); font-weight:600;}

footer.site-footer{
  border-top:1px solid var(--line); padding:40px 0; margin-top:40px;
}
.footer-row{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:16px;
}
.footer-row .muted{color:var(--muted); font-size:0.85rem;}
.footer-links{display:flex; gap:18px;}
.footer-links a{color:var(--muted); font-size:0.85rem;}
.footer-links a:hover{color:var(--accent);}


.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: center;
  justify-items: center;
}

@media (max-width: 768px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
}

.sponsor-logo {
  display: flex;
  align-items: center;     
  justify-content: center;  
  height: 140px;
  width: 100%;
  padding: 16px; 
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;     
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sponsor-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  justify-items: center;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .team-members {
    grid-template-columns: 1fr;
  }
}

.member-card {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.member-photo {
  width: 260px;
  height: 260px;
  margin: 0 auto 20px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.member-card:hover .member-photo img {
  transform: scale(1.05);
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.site-footer {
  padding: 60px 0 30px;
  background-color: #0b0f19;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.footer-section p {
  font-size: 0.95rem;
  color: #a0aec0;
  line-height: 1.6;
}

.footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .footer-menu-links {
    align-items: center;
  }
}

.footer-menu-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu-links a:hover {
  color: #fff;
}

.social-logos {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .social-logos {
    justify-content: center;
  }
}

.social-logos a {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.social-logos svg {
  width: 100%;
  height: 100%;
  fill: #a0aec0;
  transition: fill 0.3s ease, transform 0.2s ease;
}

.social-logos a:hover svg {
  transform: scale(1.1);
}

.social-logos a[aria-label="LinkedIn"]:hover svg {
  fill: #0077b5;
}

.social-logos a[aria-label="Instagram"]:hover svg {
  fill: #e1306c;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom .muted {
  font-size: 0.85rem;
  color: #718096;
}

.featured-news {
  margin-bottom: 60px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #111827;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.split-image {
  width: 100%;
  height: 100%;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.split-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.2;
}

.split-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #a0aec0;
  margin-bottom: 16px;
}

.split-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
  
  .split-image img {
    min-height: 300px;
  }
  
  .split-text {
    padding: 32px;
  }
}

.news-item {
  display: flex;
  gap: 40px; 
  margin-bottom: 50px;
  align-items: center; 
  background: transparent;
  border: none;
  padding: 0;
}

.news-image {
  flex: 0 0 320px;
  width: 320px; 
  aspect-ratio: 1 / 1; 
  position: relative;
  z-index: 1;
}

.news-image .main-img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.6));
}

.news-item:hover .news-image .main-img {
  transform: scale(1.05) translateY(-8px); 
}

.news-content {
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
  background-color: #0b0f19;
  padding: 40px; 
  border-radius: 20px; 
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.news-content .row-bg-blur {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  object-fit: cover;
  filter: blur(50px) opacity(0.14); 
  z-index: 0; 
  pointer-events: none; 
}

.news-content time,
.news-content h3,
.news-content p,
.news-content .badge {
  position: relative;
  z-index: 1;
}

.news-content time {
  display: block;
  font-size: 0.95rem;
  color: #3b82f6; 
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-content h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.3;
}

.news-content p {
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.news-content .badge {
  align-self: flex-start;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .news-item {
    flex-direction: column; 
    gap: 32px;
  }
  .news-image {
    width: 100%; 
    max-width: 260px; 
    margin: 0 auto; 
  }
  .news-content {
    padding: 32px 24px;
    align-items: center; 
    text-align: center;
    width: 100%;
  }
  .news-content .badge {
    align-self: center; 
  }
}

.member-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.member-linkedin svg {
  width: 18px;
  height: 18px;
  fill: #a0aec0;
  transition: fill 0.3s ease;
}

.member-linkedin:hover svg {
  fill: #fff; 
}