/* ===== Base ===== */
:root{
  --teal:#00A8B5;
  --teal-dark:#008c97;
  --navy:#0E2A47;
  --ink:#0F2740;
  --muted:#6b7a8a;
  --bg:#F4F6F9;
  --card:#ffffff;
  --line:#e6ebf1;
  --container-max:1200px;
  --hero-slide-overflow:300px;
  --shadow-header-text:0 1px 2px rgba(0,0,0,.55),0 2px 10px rgba(0,0,0,.4),0 0 1px rgba(0,0,0,.5);
  --shadow-header-text-lg:0 1px 3px rgba(0,0,0,.6),0 3px 14px rgba(0,0,0,.45),0 0 1px rgba(0,0,0,.55);
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{font-family:"Poppins",serif,system-ui,-apple-system,sans-serif;color:var(--ink);background:var(--bg);line-height:1.55;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* ===== Buttons ===== */
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 22px;border-radius:6px;font-weight:600;font-size:13px;letter-spacing:.4px;cursor:pointer;border:0;transition:all .2s ease}
.btn-primary{background:var(--teal);color:#fff}
.btn-primary:hover{background:var(--teal-dark)}
.btn-ghost{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.6)}
.btn-ghost:hover{background:rgba(255,255,255,.12)}
.btn-ghost-light{background:#fff;color:var(--ink);border:1px solid var(--line)}

/* ===== Header (hero üzerinde — ana site referansı) ===== */
.site-header--hero{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background:transparent;
  box-shadow:none;
}
.site-header--hero .header-inner{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 24px 16px;
  max-width:1200px;
  margin:0 auto;
}
.logo{display:flex;align-items:center;gap:14px}
.logo img{height:52px;width:auto;object-fit:contain}
.logo--hero img{height:74px;width:auto}
.logo--hero .logo-text{display:flex;flex-direction:column;gap:6px;line-height:1.15;color:#fff;max-width:min(320px,46vw)}
.logo-line--faculty{letter-spacing:.02em}
.logo-line--uni{
  font-family:"Cinzel","Palatino Linotype",Palatino,"Times New Roman",serif;
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
  line-height:1.12;
  font-size:clamp(15px,1.5vw,18px);
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#fff;
  -webkit-font-smoothing:antialiased;
}
.logo-uni-line{display:block}
.logo-uni-line--sub{
  font-size:inherit;
  font-weight:600;
  letter-spacing:inherit;
  line-height:inherit;
  align-self:center;
}
.logo-line--faculty{
  font-size:clamp(12px,1.2vw,15px);
  font-weight:700;
  line-height:1.25;
  color:var(--teal);
}
.logo--hero .logo-line--uni{
  text-shadow:var(--shadow-header-text-lg);
}
.logo--footer{
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.logo--footer img{height:74px;width:auto;object-fit:contain}
.logo--footer .logo-text{display:flex;flex-direction:column;gap:6px;line-height:1.15;max-width:min(360px,100%)}
.logo--footer .logo-line--uni{
  color:rgba(232,240,247,.96);
}
.logo--footer .logo-line--faculty{
  color:var(--teal);
}
.main-nav{flex:1;min-width:0}
.main-nav--hero ul{
  display:flex;
  flex-wrap:nowrap;
  gap:clamp(4px,0.65vw,10px);
  justify-content:flex-end;
  margin:0;
  padding:0;
}
.main-nav--hero a{
  color:#fff;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:3px;
  padding:8px 2px;
  border-bottom:2px solid transparent;
  text-shadow:var(--shadow-header-text);
  transition:color .2s,border-color .2s,opacity .2s,text-shadow .2s;
  white-space:nowrap;
}
.main-nav--hero a:hover{
  color:var(--teal);
  border-bottom-color:var(--teal);
  text-shadow:0 1px 2px rgba(0,0,0,.5),0 2px 12px rgba(0,0,0,.35);
}
.main-nav--hero .caret{font-size:8px;opacity:.75;margin-left:0}
.icon-btn{background:transparent;border:0;cursor:pointer;padding:6px;display:flex;align-items:center;justify-content:center;color:var(--ink)}
.icon-btn svg{display:block}
.caret{font-size:9px;opacity:.6}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:min(92vh,720px);
  color:#fff;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:88px;
  /* JS: aktif slayt görselinin sol kenarı + fade genişliği (px) */
  --hero-img-left:40%;
  --hero-fade:min(280px, 28vw);
}
.hero-slides{
  position:absolute;
  inset:0;
  z-index:0;
  background:var(--navy);
}
.hero-slides-container{
  position:absolute;
  inset:0;
  height:100%;
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
}
.hero-slide{
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  /* Baştaki gibi: yüksekliğe sığdır, en-boy koru, sağa yasla — cover ile zorlama */
  background-size:auto 100%;
  background-position:right center;
  opacity:0;
  transition:opacity .75s ease;
  z-index:0;
}
.hero-slide.is-active{opacity:1;z-index:1}
/* Gradient görselin bittiği yerden (sol kenar) başlar — --hero-img-left JS ile set edilir */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    var(--navy) 0%,
    var(--navy) var(--hero-img-left),
    rgba(14,42,71,.88) calc(var(--hero-img-left) + var(--hero-fade) * .22),
    rgba(14,42,71,.55) calc(var(--hero-img-left) + var(--hero-fade) * .48),
    rgba(14,42,71,.22) calc(var(--hero-img-left) + var(--hero-fade) * .72),
    rgba(14,42,71,0) calc(var(--hero-img-left) + var(--hero-fade))
  );
}
.hero-content{position:relative;z-index:3;padding:clamp(32px,6vw,72px) 24px clamp(100px,14vw,130px);max-width:1200px;width:100%}
.hero-eyebrow{
  display:block;
  color:var(--teal);
  font-size:clamp(18px,2.2vw,30px);
  font-weight:500;
  letter-spacing:.04em;
  line-height:1.3;
  margin-bottom:20px;
  max-width:52rem;
  text-shadow:0 1px 12px rgba(0,0,0,.45);
}
.hero h1{
  font-family:"Poppins",serif,system-ui,sans-serif;
  font-size:clamp(32px,4.6vw,52px);
  line-height:1.15;
  font-weight:700;
  letter-spacing:-.02em;
  margin-bottom:22px;
  max-width:18ch;
}
.hero-lead{max-width:440px;font-size:15px;line-height:1.65;color:rgba(255,255,255,.95);margin-bottom:32px}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:48px}
.hero-pager{display:flex;align-items:center;gap:10px;font-size:13px;font-weight:600;color:rgba(255,255,255,.9);flex-wrap:wrap}
.hero-pager-btn{
  background:none;
  border:0;
  padding:2px 0;
  margin:0;
  font:inherit;
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,.9);
  cursor:pointer;
  letter-spacing:.06em;
  transition:color .2s,transform .15s;
}
.hero-pager-btn:hover{color:#fff}
.hero-pager-btn:focus-visible{outline:2px solid var(--teal);outline-offset:3px;border-radius:2px}
.hero-pager-btn.active{color:var(--teal);font-size:15px;font-weight:800}
.hero-pager .dash{display:inline-block;width:18px;height:1px;background:rgba(255,255,255,.45);flex-shrink:0}

/* ===== Stats (hero altına süzülen kart) ===== */
.stats-wrapper{margin-top:-50px;position:relative;z-index:15;padding-bottom:8px}
.stats-card{background:#fff;border-radius:16px;box-shadow:0 24px 60px -24px rgba(0,25,45,.35),0 0 1px rgba(0,25,45,.06);padding:26px 32px;display:grid;grid-template-columns:repeat(4,1fr);gap:24px 28px}
.stat{display:flex;align-items:center;gap:16px}
.stat-icon{width:48px;height:48px;border-radius:50%;background:linear-gradient(145deg,#e6f7f8 0%,#cef0f2 100%);color:var(--teal);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.stat-icon i{font-size:1.12rem;line-height:1}
.stat-value{font-size:22px;font-weight:800;color:#2a3542;letter-spacing:-.02em;line-height:1.15}
.stat-label{font-size:11.5px;color:var(--muted);margin-top:2px;line-height:1.35;font-weight:500}

/* ===== Sections ===== */
.section{padding:70px 0}
.section-soft{background:#fff}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:38px;flex-wrap:wrap;gap:12px}
.section-title{font-size:18px;font-weight:700;letter-spacing:2px;display:flex;align-items:center;gap:14px;text-transform:uppercase;color:var(--ink)}
.section-title .bar{width:38px;height:3px;background:var(--teal);border-radius:2px}
.section-link{color:var(--teal);font-size:13px;font-weight:600}

/* ===== Features ===== */
.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.feature{
  background:#fff;
  border-radius:14px;
  box-shadow:0 8px 28px -16px rgba(0,25,45,.16),0 0 1px rgba(0,25,45,.06);
  padding:24px 22px 26px;
}
.feature-icon{width:46px;height:46px;border-radius:8px;background:#eaf8f8;color:var(--teal);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.feature-icon i{font-size:1.12rem;line-height:1}
.feature h4{font-size:15px;margin-bottom:8px;color:var(--ink)}
.feature p{font-size:13px;color:var(--muted);line-height:1.65}

/* ===== Departments ===== */
.dept-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.dept-card{
  position:relative;
  height:280px;
  border-radius:10px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  color:#fff;
  display:flex;
  align-items:flex-end;
  cursor:pointer;
  transition:transform .3s,box-shadow .3s;
  text-decoration:none;
}
.dept-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(13,23,48,.25)}
.dept-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(14,42,71,.15) 0%,rgba(14,42,71,.88) 55%,rgba(14,42,71,.95) 100%);pointer-events:none}
.dept-content{
  position:relative;
  z-index:1;
  padding:16px 16px 18px;
  width:100%;
  display:flex;
  flex-direction:column;
  min-height:0;
}
.dept-icon{
  width:30px;
  height:30px;
  border-radius:6px;
  background:rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  color:#fff;
  flex-shrink:0;
}
.dept-icon i{font-size:0.88rem;line-height:1}
.dept-content h3{
  font-size:13.5px;
  font-weight:700;
  margin-bottom:6px;
  line-height:1.3;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.dept-content p{
  font-size:11px;
  opacity:.88;
  margin-bottom:10px;
  line-height:1.45;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.dept-arrow{
  display:inline-flex;
  width:30px;
  height:30px;
  align-items:center;
  justify-content:center;
  background:var(--teal);
  border-radius:6px;
  font-size:14px;
  flex-shrink:0;
  margin-top:auto;
  color:#fff;
}

/* ===== About Banner ===== */
.about-banner{position:relative;height:300px;border-radius:12px;overflow:hidden;background-size:cover;background-position:center;display:flex;align-items:center;padding:0 60px;color:var(--ink)}
.about-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(244,246,249,.95) 0%,rgba(244,246,249,.75) 45%,rgba(244,246,249,0) 100%)}
.about-text{position:relative;max-width:480px}
.about-text h2{font-size:32px;font-weight:700;margin-bottom:14px;line-height:1.2}
.about-text p{color:var(--muted);margin-bottom:22px;font-size:14px}

/* ===== Two col panels ===== */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.panel{background:#fff;border-radius:10px;padding:28px 30px;border:1px solid var(--line)}
.panel-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}
.panel-head h3{font-size:17px;font-weight:700}
.news-list li,.events-list li{display:flex;gap:18px;padding:16px 0;border-bottom:1px solid var(--line)}
.news-list li:last-child,.events-list li:last-child{border-bottom:0}
.date{display:flex;flex-direction:column;align-items:center;justify-content:center;min-width:42px;color:var(--teal);position:relative}
.date .day{font-size:18px;font-weight:800;line-height:1}
.date .mon{font-size:10px;font-weight:600;letter-spacing:1px;margin-top:2px}
.news-list h5,.events-list h5{font-size:13.5px;font-weight:600;margin-bottom:4px;color:var(--ink)}
.news-list h5 a{color:inherit;transition:color .2s}
.news-list h5 a:hover{color:var(--teal)}
.news-list p,.events-list p{font-size:12px;color:var(--muted)}

/* ===== Academic ===== */
.academic-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.academic-card{background:#fff;border-radius:12px;border:1px solid var(--line);text-align:center;transition:transform .2s,box-shadow .2s;padding-bottom:8px}
.academic-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(13,23,48,.12)}
.academic-photo{width:132px;height:132px;border-radius:50%;background-size:cover;background-position:center top;margin:22px auto 8px;border:4px solid #fff;box-shadow:0 4px 16px rgba(13,23,48,.14),0 0 0 1px var(--line)}
.academic-info{padding:6px 12px 14px}
.academic-info strong{font-size:11px;color:var(--muted);font-weight:500;display:block;margin-bottom:2px}
.academic-info h5{font-size:13.5px;font-weight:700;margin-bottom:4px}
.academic-info span{font-size:11px;color:var(--muted);display:block;margin-bottom:10px}
.academic-icons{display:flex;justify-content:center;gap:14px;color:var(--muted);font-size:11px;border-top:1px solid var(--line);padding-top:10px}

/* ===== Yönetim kadro — academic-staff ile aynı (çerçevesiz) ===== */
.fac-kadro-section{
  max-width:1200px;margin:0 auto;padding:26px 24px 72px;
}
.abu-unit-kadro{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:32px 24px;
}
.abu-unit-kadro .kadro-card{
  border:none;border-radius:0;background:transparent;overflow:visible;
  display:block;text-decoration:none;color:inherit;
}
.abu-unit-kadro .kadro-card:hover{transform:none;box-shadow:none}
.abu-unit-kadro .kadro-photo{
  width:200px;height:200px;max-width:100%;aspect-ratio:1/1;
  margin:0 auto;border-radius:50%;overflow:hidden;
}
.abu-unit-kadro .kadro-photo img{
  width:100%;height:100%;object-fit:cover;object-position:top center;border-radius:50%;
}
.abu-unit-kadro .kadro-photo__ph{
  width:100%;height:100%;background:#e8eef5;display:flex;align-items:center;
  justify-content:center;color:#8aa0b5;font-size:28px;border-radius:50%;
}
.abu-unit-kadro .card-body{padding:14px 8px 0;text-align:center}
.abu-unit-kadro .kadro-ad{
  font-size:14.5px;font-weight:700;color:var(--navy);margin:0 0 4px;line-height:1.35;
}
.abu-unit-kadro .kadro-unvan{font-size:12.5px;color:var(--teal);font-weight:600}
.abu-unit-kadro--dense{grid-template-columns:repeat(4,minmax(0,1fr))}
@media(max-width:1100px){.abu-unit-kadro--dense{grid-template-columns:repeat(3,1fr)}}
@media(max-width:900px){
  .abu-unit-kadro{grid-template-columns:repeat(2,1fr)}
  .abu-unit-kadro--dense{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .abu-unit-kadro,.abu-unit-kadro--dense{grid-template-columns:1fr}
}

/* ===== Footer ===== */
.site-footer{background:var(--navy);color:#cdd7e2;padding:60px 0 0;margin-top:60px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1.2fr 1.3fr 1fr;gap:30px;padding-bottom:40px}
.site-footer p{font-size:13px;line-height:1.7;color:#9aaabb;margin-bottom:20px}
.site-footer h6{color:#fff;font-size:13px;font-weight:700;letter-spacing:1.5px;margin-bottom:18px;text-transform:uppercase}
.foot-links li{font-size:13px;padding:6px 0;color:#9aaabb;cursor:pointer;transition:color .2s}
.foot-links li:hover{color:var(--teal)}
.socials{display:flex;gap:10px}
.socials a,.socials span{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;font-size:12px;color:#cdd7e2;text-decoration:none;transition:background .2s,color .2s}
.socials a:hover,.socials span:hover{background:var(--teal);color:#fff}
.foot-links a{color:inherit;text-decoration:none;transition:color .2s}
.foot-links a:hover{color:var(--teal)}
.foot-extra{opacity:.85}
.map-card{height:140px;border-radius:8px;overflow:hidden;position:relative;background:#1a3a5c}
.map-bg{position:absolute;inset:0;background:url('https://api.mapbox.com/styles/v1/mapbox/dark-v10/static/30.7133,36.8841,12,0/300x200?access_token=pk.placeholder') center/cover;opacity:.4}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:22px 24px;border-top:1px solid rgba(255,255,255,.08);font-size:12px;color:#7d8c9d}

/* ===== Inner pages (haber detay vb.) ===== */
.site-header--inner{
  position:relative;
  z-index:50;
  background:var(--navy);
  box-shadow:none;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.site-header--inner .header-inner{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 24px 12px;
  max-width:min(1040px,100%);
  margin:0 auto;
}
.page-sub .page-masthead > .container,
.page-sub .article-wrap > .container,
.page-sub .article-related > .container{
  max-width:min(1040px,100%);
}
.logo--inner img{height:62px;width:auto}
.logo--inner .logo-text{color:#fff;max-width:min(280px,42vw)}
.logo--inner .logo-line--uni{
  color:#fff;
  text-shadow:var(--shadow-header-text-lg);
}
.main-nav--inner ul{
  display:flex;
  flex-wrap:nowrap;
  gap:clamp(3px,0.55vw,8px);
  justify-content:flex-end;
  margin:0;
  padding:0;
}
.main-nav--inner a{
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:3px;
  padding:6px 2px;
  border-bottom:2px solid transparent;
  text-shadow:var(--shadow-header-text);
  transition:color .2s,border-color .2s,text-shadow .2s;
  white-space:nowrap;
}
.main-nav--inner a:hover{
  color:var(--teal);
  border-bottom-color:var(--teal);
  text-shadow:0 1px 2px rgba(0,0,0,.5),0 2px 12px rgba(0,0,0,.35);
}
.main-nav--inner .caret{font-size:8px;opacity:.75;margin-left:0}

.page-masthead{
  background:var(--navy);
  color:#fff;
  padding:20px 0 48px;
  position:relative;
}
.page-masthead .container{position:relative;z-index:1}
.page-masthead-label{
  color:var(--teal);
  font-size:12px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.breadcrumb{
  font-size:12px;
  color:rgba(255,255,255,.62);
  margin-bottom:20px;
  line-height:1.5;
}
.breadcrumb a{
  color:rgba(255,255,255,.88);
  transition:color .2s;
}
.breadcrumb a:hover{color:var(--teal)}
.page-masthead h1{
  font-family:"Poppins",system-ui,sans-serif;
  font-size:24px;
  font-weight:700;
  line-height:1.18;
  letter-spacing:-.02em;
  max-width:100%;
}
.page-masthead-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  margin-top:22px;
  font-size:13px;
  color:rgba(255,255,255,.78);
}
.page-masthead-meta i{color:var(--teal);opacity:.95}

.article-wrap{padding:48px 0 72px}
.article-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) min(100%,300px);
  gap:clamp(28px,4vw,40px);
  align-items:start;
}
.article-main{
  background:var(--card);
  border-radius:12px;
  border:1px solid var(--line);
  padding:clamp(24px,3.5vw,40px);
  box-shadow:0 18px 50px -28px rgba(0,25,45,.2);
}
.article-lead{
  font-size:17px;
  line-height:1.65;
  color:var(--muted);
  margin-bottom:26px;
  font-weight:500;
}
.article-figure{margin:0 0 28px;border-radius:10px;overflow:hidden}
.article-figure img{
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}
.article-figure figcaption{
  font-size:12px;
  color:var(--muted);
  margin-top:10px;
  line-height:1.45;
}
.article-prose{font-size:15px;line-height:1.75;color:var(--ink)}
.article-prose p{margin-bottom:1.25em}
.article-prose h2{
  font-size:19px;
  font-weight:700;
  margin:1.75em 0 .65em;
  color:var(--ink);
  letter-spacing:-.01em;
}
.article-list{
  margin:0 0 1.25em 1.1em;
  list-style:disc;
  color:var(--ink);
}
.article-list li{margin-bottom:.5em;padding-left:4px}
.article-quote{
  border-left:4px solid var(--teal);
  padding:8px 0 8px 20px;
  margin:28px 0;
  font-size:16px;
  line-height:1.65;
  color:var(--ink);
  background:linear-gradient(90deg,rgba(0,168,181,.06) 0%,transparent 100%);
  border-radius:0 8px 8px 0;
}
.article-quote cite{
  display:block;
  margin-top:12px;
  font-size:13px;
  font-style:normal;
  font-weight:600;
  color:var(--muted);
}
.article-share{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid var(--line);
}
.article-share-label{
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin-right:4px;
}
.article-share-btn{
  width:38px;height:38px;
  border-radius:8px;
  border:1px solid var(--line);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  background:#fff;
  transition:background .2s,color .2s,border-color .2s;
}
.article-share-btn:hover{
  background:rgba(0,168,181,.1);
  border-color:var(--teal);
  color:var(--teal-dark);
}
.article-back{margin-top:20px}
.article-back .section-link{display:inline-flex;align-items:center;gap:10px}

.article-sidebar{display:flex;flex-direction:column;gap:20px;position:sticky;top:24px}
.sidebar-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:10px;
  padding:22px 22px 24px;
}
.sidebar-title{
  font-size:14px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink);
  margin-bottom:14px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.sidebar-links li{padding:8px 0;border-bottom:1px solid var(--line);font-size:13.5px}
.sidebar-links li:last-child{border-bottom:0}
.sidebar-links a{color:var(--muted);transition:color .2s}
.sidebar-links a:hover{color:var(--teal)}
.sidebar-text{font-size:13px;color:var(--muted);line-height:1.55;margin-bottom:8px}
.sidebar-text:last-child{margin-bottom:0}

.article-related{padding-top:56px;padding-bottom:72px}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.related-card{
  display:flex;
  flex-direction:column;
  background:var(--card);
  border-radius:10px;
  overflow:hidden;
  border:1px solid var(--line);
  transition:transform .25s ease,box-shadow .25s ease;
}
.related-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px -24px rgba(0,25,45,.25);
}
.related-photo{
  height:140px;
  background-size:cover;
  background-position:center;
}
.related-body{padding:18px 18px 20px}
.related-body time{
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--teal);
}
.related-body h3{
  font-size:15px;
  font-weight:700;
  line-height:1.3;
  margin:10px 0 8px;
  color:var(--ink);
}
.related-body p{font-size:12.5px;color:var(--muted);line-height:1.55;margin:0}

/* ===== Responsive ===== */
@media (max-width:1024px){
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .dept-grid{grid-template-columns:repeat(3,1fr)}
  .academic-grid{grid-template-columns:repeat(3,1fr)}
  .stats-card{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .article-layout{grid-template-columns:1fr}
  .article-sidebar{position:static;flex-direction:row;flex-wrap:wrap}
  .article-sidebar .sidebar-card{flex:1;min-width:240px}
  .related-grid{grid-template-columns:1fr}
  .main-nav--inner{display:none}
  .site-header--inner .header-inner{flex-wrap:wrap}
  .logo--inner img{height:52px}
  .logo--inner .logo-line--uni{font-size:clamp(12px,2.8vw,14px);letter-spacing:.12em}
  .main-nav--inner a{font-size:10.5px;letter-spacing:.04em}
  .main-nav--hero{display:none}
  .site-header--hero .header-inner{flex-wrap:wrap;justify-content:space-between;gap:12px}
  .logo--hero img{height:58px}
  .logo--hero .logo-line--uni{font-size:clamp(12px,2.8vw,14px);letter-spacing:.12em}
  .main-nav--hero a{font-size:10.5px;letter-spacing:.04em}
  .hero h1{font-size:42px}
  .hero-eyebrow{font-size:clamp(16px,1.9vw,22px)}
  .hero-slide{
    background-position:right center;
  }
}
@media (max-width:640px){
  .hero h1{font-size:32px}
  .hero-eyebrow{font-size:clamp(15px,4.4vw,20px)}
  .hero-slide{
    background-position:right center;
  }
  .page-masthead{padding:22px 0 40px}
  .article-sidebar{flex-direction:column}
  .two-col{grid-template-columns:1fr}
  .dept-grid,.academic-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .logo--footer{flex-wrap:wrap}
  .logo--footer img{height:58px}
  .about-banner{padding:0 24px;height:auto;padding-top:30px;padding-bottom:30px}
}

/* === Hero: fakülte adı (eyebrow) + tagline (h1) AYNI font/renk/boyut ===
   Kullanıcı isteği (2026-07-05): "DIŞ HEKİMLİĞİ FAKÜLTESİ" ile "Geleceği Tasarlayan Bir Fakülte"
   aynı font, renk ve büyüklükte olsun → ikisi de ORTA (~30px, beyaz). Tüm breakpoint'leri ezer. */
.hero .hero-eyebrow,
.hero h1 {
  font-family: "Poppins", system-ui, sans-serif !important;
  font-size: clamp(20px, 2.4vw, 30px) !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: .01em !important;
  line-height: 1.3 !important;
  max-width: 34ch;
}
.hero .hero-eyebrow { margin-bottom: 10px !important; text-shadow: 0 1px 12px rgba(0,0,0,.45); }
