/* ==========================================================================
   EBYÜ Ana Sayfa — 2026
   --------------------------------------------------------------------------
   Kurumsal kimlik: Ultramarin lacivert #001C54 (Pantone 295 C) ve
   altın yaldız #D0A53D (Pantone 7407 C). Kılavuz gereği bu ikisi dışında
   marka rengi kullanılmaz; kırmızı yalnızca canlı yayın göstergesidir.

   Altın kuralı: altın, beyaz zeminde metin olarak kullanılmaz (kontrast
   2,45:1 ile AA'yı karşılamaz). Altın yapısaldır: başlık altı çizgisi,
   etkin görsel çerçevesi, ilerleme çubuğu ve lacivert zeminde etiket
   metni (6,5:1). Dekoratif altın degrade yoktur.

   Tipografi: tek aile — Archivo (değişken; genişlik ve kalınlık eksenli).
   Gövde 100 genişlik / 400; başlıklar 80 genişlik / 800. Kimlik kılavuzunun
   Helvetica Neue Bold (kurum adı) ve DIN Pro Medium (dar, endüstriyel)
   isteği tek dosyayla, genişlik ekseni üzerinden karşılanır.

   Yapı: köşe yarıçapı yok, gölge yok. Hiyerarşi saç teli çizgiler ve
   boşlukla kurulur.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Simgeler (design tokens)
   -------------------------------------------------------------------------- */
:root {
	/* Marka */
	--eb-navy: #001c54;
	--eb-navy-deep: #000f2c;
	--eb-navy-mid: #0b2a66;
	--eb-navy-soft: #17356f;
	--eb-gold: #d0a53d;
	--eb-gold-deep: #8a6a1f;
	--eb-live: #ff0000;

	/* Yüzey ve metin */
	--eb-paper: #ffffff;
	--eb-mist: #edf1f7;
	--eb-mist-2: #f6f8fc;
	--eb-ink: #0a1633;
	--eb-ink-70: #414d6b;
	--eb-ink-55: #565f78;
	--eb-rule: #cfd8e6;
	--eb-rule-soft: #e3e9f2;
	--eb-on-navy-70: rgba(255, 255, 255, 0.74);
	--eb-on-navy-50: rgba(255, 255, 255, 0.5);
	--eb-on-navy-line: rgba(255, 255, 255, 0.2);

	/* Ölçüler */
	--eb-wrap: 1320px;
	--eb-gut: clamp(18px, 4vw, 40px);
	--eb-sec: clamp(48px, 6vw, 88px);

	/* Tipografi */
	--eb-font: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--eb-t-xxs: 11px;
	--eb-t-xs: 12.5px;
	--eb-t-sm: 14px;
	--eb-t-base: 16px;
	--eb-t-md: 17px;
	--eb-t-lg: clamp(18px, 1.35vw, 20px);
	--eb-t-xl: clamp(21px, 1.9vw, 25px);
	--eb-t-2xl: clamp(25px, 2.6vw, 33px);
	--eb-t-hero: clamp(29px, 4.3vw, 55px);
	--eb-t-stat: clamp(28px, 3.4vw, 44px);

	/* Hareket */
	--eb-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--eb-fade: 900ms;
	--eb-ken: 8.5s;

	--eb-head-h: 118px;
	--eb-head-solid-h: 82px;
}

/* --------------------------------------------------------------------------
   2. Temel
   -------------------------------------------------------------------------- */
.eb-home {
	margin: 0;
	background: var(--eb-paper);
	color: var(--eb-ink);
	font-family: var(--eb-font);
	font-size: var(--eb-t-base);
	font-weight: 400;
	line-height: 1.55;
	font-stretch: 100%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
	scrollbar-gutter: stable;
}

/* Sıfırlamalar :where() içinde tutulur: özgüllükleri sıfırdır, böylece
   bileşen kuralları (ör. lacivert zeminde beyaz metin) her zaman kazanır.
   Düz ".eb-home a" yazılırsa özgüllük 0,1,1 olur ve tek sınıflı bileşen
   renklerini ezer. */
:where(.eb-home) *,
:where(.eb-home) *::before,
:where(.eb-home) *::after {
	box-sizing: border-box;
}

:where(.eb-home) img {
	max-width: 100%;
	height: auto;
	display: block;
}

:where(.eb-home) a {
	color: inherit;
	text-decoration: none;
}

:where(.eb-home) p {
	margin: 0;
}

:where(.eb-home) :is(ul, ol, dl) {
	margin: 0;
	padding: 0;
	list-style: none;
}

:where(.eb-home) :is(h1, h2, h3, dt, dd, figure, blockquote, fieldset) {
	margin: 0;
	padding: 0;
}

:where(.eb-home) button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

:where(.eb-home) fieldset {
	border: 0;
}

.eb-wrap {
	width: 100%;
	max-width: var(--eb-wrap);
	margin-inline: auto;
	padding-inline: var(--eb-gut);
}

.eb-sr {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* Odak: her yerde görünür, ince ve yüksek kontrastlı */
.eb-home :focus-visible {
	outline: 3px solid var(--eb-gold);
	outline-offset: 2px;
}

.eb-hero :focus-visible,
.eb-head :focus-visible,
.eb-annb :focus-visible,
.eb-srch :focus-visible,
.eb-qp__lead :focus-visible,
.eb-mbar :focus-visible,
.eb-stats :focus-visible,
.eb-foot :focus-visible {
	outline-color: #fff;
}

.eb-i {
	width: 20px;
	height: 20px;
	flex: none;
	stroke-width: 1.75;
}

.eb-i--sm {
	width: 17px;
	height: 17px;
}

.eb-i--xs {
	width: 14px;
	height: 14px;
}

/* Atlama bağlantıları */
.eb-skip__link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 999;
	transform: translateY(-160%);
	background: var(--eb-navy);
	color: #fff;
	padding: 10px 16px;
	font-size: var(--eb-t-sm);
	font-weight: 600;
	border-bottom: 2px solid var(--eb-gold);
	transition: transform 140ms var(--eb-ease);
}

.eb-skip__link:focus {
	transform: translateY(0);
}

/* Görsel bulunmayan yazılar için marka deseni (bal peteği) */
.eb-noimg {
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--eb-navy);
	background-image:
		radial-gradient(circle at 50% 50%, rgba(208, 165, 61, 0.24) 0 2px, transparent 2px),
		linear-gradient(160deg, var(--eb-navy-mid), var(--eb-navy-deep));
	background-size: 22px 22px, 100% 100%;
}

/* Bölüm başlığı: solda başlık, sağda "tümü", altında saç teli çizgi */
.eb-shead {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 12px;
	margin-bottom: 26px;
	border-bottom: 1px solid var(--eb-rule);
	position: relative;
}

.eb-shead::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 76px;
	height: 3px;
	background: var(--eb-gold);
}

.eb-shead__h {
	font-size: var(--eb-t-xl);
	font-weight: 700;
	font-stretch: 88%;
	letter-spacing: -0.012em;
	line-height: 1.2;
	color: var(--eb-navy);
}

.eb-shead__all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--eb-t-sm);
	font-weight: 600;
	color: var(--eb-ink-70);
	white-space: nowrap;
	border-bottom: 1px solid transparent;
}

.eb-shead__all:hover {
	color: var(--eb-navy);
	border-bottom-color: var(--eb-gold);
}

.eb-empty {
	color: var(--eb-ink-55);
	font-size: var(--eb-t-sm);
	padding: 22px 0;
	border-top: 1px solid var(--eb-rule-soft);
}

.eb-date {
	display: block;
	font-size: var(--eb-t-xs);
	font-weight: 600;
	font-stretch: 92%;
	letter-spacing: 0.02em;
	color: var(--eb-ink-55);
	font-variant-numeric: tabular-nums;
}

/* Düğmeler */
.eb-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 20px;
	font-size: var(--eb-t-sm);
	font-weight: 650;
	border-radius: 2px;
	transition: background-color 140ms var(--eb-ease), color 140ms var(--eb-ease), border-color 140ms var(--eb-ease);
}

.eb-btn--solid {
	background: var(--eb-navy);
	color: #fff;
}

.eb-btn--solid:hover {
	background: var(--eb-navy-mid);
}

.eb-btn--line {
	border: 1px solid var(--eb-rule);
	color: var(--eb-navy);
}

.eb-btn--line:hover {
	border-color: var(--eb-navy);
	background: var(--eb-mist-2);
}

.eb-btn--sm {
	padding: 9px 14px;
	font-size: var(--eb-t-xs);
}

/* Gün/ay kutusu */
.eb-daybox {
	flex: none;
	width: 52px;
	text-align: center;
	border-right: 1px solid var(--eb-rule);
	padding-right: 12px;
	font-variant-numeric: tabular-nums;
}

.eb-daybox__d {
	display: block;
	font-size: 22px;
	font-weight: 700;
	font-stretch: 84%;
	line-height: 1.05;
	color: var(--eb-navy);
}

.eb-daybox__m {
	display: block;
	font-size: var(--eb-t-xxs);
	font-weight: 650;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--eb-ink-55);
}

.eb-daybox--lg {
	width: 68px;
	padding-right: 18px;
}

.eb-daybox--lg .eb-daybox__d {
	font-size: 30px;
}

.eb-daybox__y {
	display: block;
	font-size: var(--eb-t-xxs);
	color: var(--eb-ink-55);
	margin-top: 2px;
}

/* --------------------------------------------------------------------------
   4. Başlık ve mega menü
   -------------------------------------------------------------------------- */
.eb-head {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--eb-navy);
	border-bottom: 3px solid var(--eb-gold);
	transition: background-color 240ms var(--eb-ease);
}

/* Hero üzerinde saydam başlar */
.eb-head[data-eb-transparent="1"]:not(.is-solid):not(.has-open) {
	background: transparent;
	border-bottom-color: rgba(208, 165, 61, 0.5);
}

.eb-head[data-eb-transparent="1"]:not(.is-solid):not(.has-open)::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 15, 44, 0.88) 0%, rgba(0, 15, 44, 0.55) 62%, rgba(0, 15, 44, 0.08) 100%);
	pointer-events: none;
}

.eb-head__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 34px);
	min-height: var(--eb-head-h);
}

/* Marka */
.eb-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
	padding-right: 6px;
}

.eb-brand__mark {
	width: 44px;
	height: 44px;
	flex: none;
	filter: brightness(0) invert(1);
}

.eb-brand__text {
	display: block;
	color: #fff;
	line-height: 1.12;
	font-stretch: 86%;
}

.eb-brand__l1 {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.005em;
}

.eb-brand__l2 {
	display: block;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--eb-on-navy-70);
	letter-spacing: 0.11em;
}

/* Ana gezinme */
.eb-nav {
	margin-left: auto;
}

.eb-nav__list {
	display: flex;
	align-items: center;
}

.eb-nav__item {
	position: relative;
}

.eb-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 0 clamp(9px, 1vw, 15px);
	height: var(--eb-head-h);
	color: #fff;
	font-size: 14.5px;
	font-weight: 650;
	font-stretch: 92%;
	letter-spacing: 0.004em;
	white-space: nowrap;
	position: relative;
}

.eb-nav__link::after {
	content: "";
	position: absolute;
	left: clamp(9px, 1vw, 15px);
	right: clamp(9px, 1vw, 15px);
	bottom: 14px;
	height: 2px;
	background: var(--eb-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms var(--eb-ease);
}

.eb-nav__link:hover::after,
.eb-nav__link[aria-expanded="true"]::after {
	transform: scaleX(1);
}

.eb-nav__chev {
	opacity: 0.6;
	transition: transform 180ms var(--eb-ease);
}

.eb-nav__link[aria-expanded="true"] .eb-nav__chev {
	transform: rotate(180deg);
}

/* Mega panel */
.eb-mega {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	max-width: 100vw;
	background: #fff;
	border-bottom: 1px solid var(--eb-rule);
	box-shadow: 0 18px 36px -24px rgba(0, 28, 84, 0.45);
}

.eb-mega__inner {
	display: grid;
	grid-template-columns: 232px 1fr;
	gap: clamp(24px, 3vw, 56px);
	padding-block: 34px 38px;
}

.eb-mega__lead {
	border-right: 1px solid var(--eb-rule-soft);
	padding-right: 24px;
}

.eb-mega__title {
	font-size: var(--eb-t-lg);
	font-weight: 700;
	font-stretch: 86%;
	color: var(--eb-navy);
	line-height: 1.2;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--eb-gold);
	display: inline-block;
}

.eb-mega__all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-size: var(--eb-t-sm);
	font-weight: 600;
	color: var(--eb-ink-70);
}

.eb-mega__all:hover {
	color: var(--eb-navy);
}

.eb-mega__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: clamp(18px, 2.4vw, 40px);
}

.eb-mega__colhead {
	font-size: var(--eb-t-xs);
	font-weight: 700;
	letter-spacing: 0.005em;
	color: var(--eb-gold-deep);
	padding-bottom: 9px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--eb-rule-soft);
}

.eb-mega__links li + li {
	margin-top: 1px;
}

.eb-mega__links a {
	display: block;
	padding: 5px 0;
	font-size: var(--eb-t-sm);
	color: var(--eb-ink-70);
	line-height: 1.4;
	border-left: 2px solid transparent;
	padding-left: 0;
	transition: color 120ms var(--eb-ease), padding-left 160ms var(--eb-ease), border-color 120ms var(--eb-ease);
}

.eb-mega__links a:hover {
	color: var(--eb-navy);
	border-left-color: var(--eb-gold);
	padding-left: 9px;
}

/* Başlık eylemleri */
.eb-head__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: none;
}

.eb-iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: #fff;
	border: 1px solid var(--eb-on-navy-line);
	border-radius: 2px;
	transition: background-color 140ms var(--eb-ease), border-color 140ms var(--eb-ease);
}

.eb-iconbtn:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.45);
}

.eb-livebtn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 38px;
	padding: 0 14px;
	color: #fff;
	font-size: var(--eb-t-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid var(--eb-on-navy-line);
	border-radius: 2px;
}

.eb-livebtn:hover {
	background: rgba(255, 255, 255, 0.12);
}

.eb-livebtn__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--eb-live);
	box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.24);
	animation: ebPulse 2.2s ease-in-out infinite;
}

@keyframes ebPulse {
	50% {
		box-shadow: 0 0 0 6px rgba(255, 0, 0, 0);
	}
}

.eb-burger {
	display: none;
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.eb-hero {
	position: relative;
	margin-top: calc(-1 * var(--eb-head-h) - 3px);
	min-height: 620px;
	height: 100vh;
	max-height: 940px;
	overflow: hidden;
	background: var(--eb-navy-deep);
	isolation: isolate;
}

@supports (height: 100svh) {
	.eb-hero {
		height: 100svh;
	}
}

.eb-hero__stage {
	position: absolute;
	inset: 0;
}

.eb-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--eb-fade) var(--eb-ease), visibility 0s linear var(--eb-fade);
}

.eb-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity var(--eb-fade) var(--eb-ease), visibility 0s;
}

.eb-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.eb-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.008);
}

/* Yavaş yaklaşma: tek orkestre hareket */
.eb-hero__slide.is-active .eb-hero__media img {
	animation: ebKen var(--eb-ken) linear forwards;
}

@keyframes ebKen {
	from {
		transform: scale(1.008);
	}
	to {
		transform: scale(1.075);
	}
}

.eb-hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(0, 15, 44, 0.7) 0, rgba(0, 15, 44, 0.34) 96px, rgba(0, 15, 44, 0) 210px),
		linear-gradient(to top, rgba(0, 15, 44, 0.88) 0%, rgba(0, 15, 44, 0.52) 22%, rgba(0, 15, 44, 0.06) 52%, rgba(0, 15, 44, 0) 74%),
		linear-gradient(to right, rgba(0, 15, 44, 0.52) 0%, rgba(0, 15, 44, 0) 50%);
}

.eb-hero__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: clamp(122px, 15vh, 176px);
	color: #fff;
}

.eb-hero__title {
	max-width: 21ch;
	font-size: var(--eb-t-hero);
	font-weight: 800;
	font-stretch: 80%;
	line-height: 1.04;
	letter-spacing: -0.016em;
	text-wrap: balance;
	opacity: 0;
	transform: translateY(14px);
}

.eb-hero__caption {
	max-width: 46ch;
	margin-top: 14px;
	font-size: var(--eb-t-md);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.45;
	opacity: 0;
	transform: translateY(14px);
}

.eb-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 26px;
	padding: 13px 22px;
	background: var(--eb-gold);
	color: var(--eb-navy-deep);
	font-size: var(--eb-t-sm);
	font-weight: 700;
	border-radius: 2px;
	opacity: 0;
	transform: translateY(14px);
	transition: background-color 160ms var(--eb-ease);
}

.eb-hero__cta:hover {
	background: #e0b752;
}

.eb-hero__slide.is-active .eb-hero__title,
.eb-hero__slide.is-active .eb-hero__caption,
.eb-hero__slide.is-active .eb-hero__cta {
	animation: ebRise 760ms var(--eb-ease) forwards;
}

.eb-hero__slide.is-active .eb-hero__caption {
	animation-delay: 90ms;
}

.eb-hero__slide.is-active .eb-hero__cta {
	animation-delay: 170ms;
}

@keyframes ebRise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Altıgen görsel seçici — amblemdeki bal peteği geometrisi */
.eb-hero__thumbs {
	position: absolute;
	right: clamp(14px, 2.4vw, 40px);
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 11px;
	z-index: 3;
}

.eb-hero__thumbs > li {
	line-height: 0;
	border-radius: 2px;
}

.eb-hero__thumbs > li:focus-within {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.eb-hero__thumb {
	--eb-hex: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	display: block;
	width: 52px;
	height: 58px;
	padding: 0;
	clip-path: var(--eb-hex);
	background: rgba(255, 255, 255, 0.55);
	transition: width 260ms var(--eb-ease), height 260ms var(--eb-ease), padding 200ms var(--eb-ease), background-color 200ms var(--eb-ease);
}

.eb-hero__thumb:hover {
	background: #fff;
	padding: 2px;
}

.eb-hero__thumbin {
	display: block;
	width: 100%;
	height: 100%;
	clip-path: var(--eb-hex);
	overflow: hidden;
	background: var(--eb-navy-mid);
}

.eb-hero__thumbin img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.72) brightness(0.82);
	transition: filter 240ms var(--eb-ease);
}

.eb-hero__thumb:hover .eb-hero__thumbin img {
	filter: none;
}

.eb-hero__thumb[aria-selected="true"] {
	width: 66px;
	height: 74px;
	padding: 3px;
	background: var(--eb-gold);
}

.eb-hero__thumb[aria-selected="true"] .eb-hero__thumbin img {
	filter: none;
}

/* İlerleme çubukları ve duraklat */
.eb-hero__foot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: clamp(56px, 7vh, 78px);
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 3;
}

.eb-hero__bars {
	display: flex;
	gap: 7px;
}

.eb-hero__bar {
	position: relative;
	width: 42px;
	height: 3px;
	background: rgba(255, 255, 255, 0.32);
	overflow: hidden;
}

.eb-hero__bar i {
	position: absolute;
	inset: 0;
	background: var(--eb-gold);
	transform: scaleX(0);
	transform-origin: left;
}

.eb-hero__bar.is-active i {
	animation: ebBar var(--eb-bar-dur, 7500ms) linear forwards;
}

.eb-hero.is-paused .eb-hero__bar.is-active i {
	animation-play-state: paused;
}

.eb-hero.is-paused .eb-hero__slide.is-active .eb-hero__media img {
	animation-play-state: paused;
}

@keyframes ebBar {
	to {
		transform: scaleX(1);
	}
}

.eb-hero__bar.is-done i {
	transform: scaleX(1);
}

.eb-hero__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 2px;
}

.eb-hero__toggle:hover {
	background: rgba(255, 255, 255, 0.14);
}

.eb-hero__iplay {
	display: none;
}

.eb-hero.is-paused .eb-hero__iplay {
	display: block;
}

.eb-hero.is-paused .eb-hero__ipause {
	display: none;
}

/* Kaydırma ipucu */
.eb-hero__scroll {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 16px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	color: rgba(255, 255, 255, 0.72);
	font-size: var(--eb-t-xxs);
	font-weight: 600;
	letter-spacing: 0.12em;
	z-index: 3;
}

.eb-hero__scroll:hover {
	color: #fff;
}

.eb-hero__scroll .eb-i {
	animation: ebNudge 2.4s var(--eb-ease) infinite;
}

@keyframes ebNudge {
	0%, 70%, 100% {
		transform: translateY(0);
	}
	82% {
		transform: translateY(4px);
	}
}

/* --------------------------------------------------------------------------
   8. Rektörün mesajı
   -------------------------------------------------------------------------- */
.eb-rector {
	background: var(--eb-mist);
	border-block: 1px solid var(--eb-rule);
	padding-block: var(--eb-sec);
}

.eb-rector__grid {
	display: grid;
	grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
	gap: clamp(26px, 4vw, 64px);
	align-items: center;
}

.eb-rector__portrait {
	position: relative;
	background: #fff;
	border-bottom: 3px solid var(--eb-gold);
}

.eb-rector__portrait img {
	width: 100%;
	aspect-ratio: 82 / 100;
	object-fit: cover;
	object-position: 50% 12%;
}

.eb-rector__h {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--eb-rule);
	position: relative;
}

.eb-rector__h::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 76px;
	height: 3px;
	background: var(--eb-gold);
}

.eb-rector__quote p {
	max-width: 62ch;
	font-size: var(--eb-t-lg);
	font-weight: 400;
	line-height: 1.62;
	color: var(--eb-ink);
}

.eb-rector__who {
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid var(--eb-rule);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.eb-rector__role {
	font-size: var(--eb-t-xxs);
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--eb-ink-55);
}

.eb-rector__name {
	font-size: var(--eb-t-lg);
	font-weight: 700;
	font-stretch: 88%;
	color: var(--eb-navy);
	letter-spacing: -0.008em;
}

.eb-rector .eb-btn {
	margin-top: 22px;
	background: #fff;
}

/* --------------------------------------------------------------------------
   9. Akademik birimler
   -------------------------------------------------------------------------- */
.eb-units {
	padding-block: var(--eb-sec);
}

.eb-tally {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	border-top: 1px solid var(--eb-rule);
	border-bottom: 1px solid var(--eb-rule);
	margin-bottom: 40px;
}

.eb-tally__item + .eb-tally__item {
	border-left: 1px solid var(--eb-rule-soft);
}

.eb-tally__item a {
	display: block;
	padding: 20px 16px;
	transition: background-color 160ms var(--eb-ease);
}

.eb-tally__item a:hover {
	background: var(--eb-mist-2);
}

.eb-tally__n {
	display: block;
	font-size: clamp(26px, 2.6vw, 34px);
	font-weight: 800;
	font-stretch: 78%;
	line-height: 1;
	color: var(--eb-navy);
	font-variant-numeric: tabular-nums;
}

.eb-tally__t {
	display: block;
	margin-top: 6px;
	font-size: var(--eb-t-xs);
	font-weight: 550;
	color: var(--eb-ink-70);
	line-height: 1.3;
}

.eb-units__grid {
	display: grid;
	grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
	gap: clamp(26px, 4vw, 60px);
}

.eb-units__head {
	font-size: var(--eb-t-xs);
	font-weight: 700;
	letter-spacing: 0.005em;
	color: var(--eb-gold-deep);
	padding-bottom: 9px;
	margin-bottom: 6px;
	border-bottom: 1px solid var(--eb-rule);
}

.eb-links--3 {
	columns: 3;
	column-gap: clamp(18px, 2.2vw, 34px);
}

.eb-links li {
	break-inside: avoid;
	border-bottom: 1px solid var(--eb-rule-soft);
}

.eb-links a {
	display: block;
	padding: 11px 0;
	font-size: var(--eb-t-sm);
	font-weight: 500;
	color: var(--eb-ink-70);
	line-height: 1.35;
	border-left: 2px solid transparent;
	transition: color 130ms var(--eb-ease), padding-left 170ms var(--eb-ease), border-color 130ms var(--eb-ease);
}

.eb-links a:hover {
	color: var(--eb-navy);
	border-left-color: var(--eb-gold);
	padding-left: 9px;
}

/* --------------------------------------------------------------------------
   11. Sayılarla EBYÜ
   -------------------------------------------------------------------------- */
.eb-stats {
	background: var(--eb-navy);
	color: #fff;
	padding-block: clamp(38px, 4.6vw, 62px);
}

.eb-stats__h {
	font-size: var(--eb-t-xxs);
	font-weight: 700;
	letter-spacing: 0.01em;
	font-size: var(--eb-t-xs);
	color: var(--eb-gold);
	padding-bottom: 14px;
	margin-bottom: 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.eb-stats__list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 26px 20px;
}

.eb-stats__n {
	font-size: var(--eb-t-stat);
	font-weight: 800;
	font-stretch: 76%;
	line-height: 1;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

.eb-stats__t {
	margin-top: 8px;
	font-size: var(--eb-t-xs);
	font-weight: 550;
	line-height: 1.35;
	color: var(--eb-gold);
}

/* --------------------------------------------------------------------------
   12. Paydaş kurumlar
   -------------------------------------------------------------------------- */
.eb-partners {
	padding-block: clamp(34px, 4vw, 54px);
	border-bottom: 1px solid var(--eb-rule);
}

.eb-partners__h {
	font-size: var(--eb-t-xxs);
	font-weight: 700;
	letter-spacing: 0.01em;
	font-size: var(--eb-t-xs);
	color: var(--eb-ink-55);
	margin-bottom: 22px;
}

.eb-partners__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(22px, 3.4vw, 52px);
}

.eb-partners__link {
	display: block;
	opacity: 0.72;
	transition: opacity 180ms var(--eb-ease);
}

.eb-partners__link:hover {
	opacity: 1;
}

.eb-partners__link img {
	height: var(--eb-logo-h, 30px);
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

/* --------------------------------------------------------------------------
   13. Alt bilgi
   -------------------------------------------------------------------------- */
.eb-foot {
	background: var(--eb-navy-deep);
	color: var(--eb-on-navy-70);
	font-size: var(--eb-t-sm);
}

.eb-foot__top {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: clamp(26px, 3.4vw, 56px);
	padding-block: clamp(40px, 5vw, 66px);
}

.eb-foot__mark {
	width: 50px;
	height: 50px;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.eb-foot__name {
	margin-top: 14px;
	font-size: var(--eb-t-md);
	font-weight: 700;
	font-stretch: 86%;
	color: #fff;
	line-height: 1.25;
}

.eb-foot__slogan {
	margin-top: 4px;
	font-size: var(--eb-t-sm);
	color: var(--eb-gold);
}

.eb-foot__contact {
	margin-top: 24px;
	display: grid;
	gap: 12px;
	max-width: 42ch;
}

.eb-foot__contact li {
	display: grid;
	gap: 2px;
}

.eb-foot__lbl {
	font-size: var(--eb-t-xxs);
	font-weight: 700;
	letter-spacing: 0.005em;
	color: var(--eb-on-navy-50);
}

.eb-foot__contact a:hover {
	color: #fff;
	text-decoration: underline;
}

.eb-foot__colhead {
	font-size: var(--eb-t-xxs);
	font-weight: 700;
	letter-spacing: 0.005em;
	color: #fff;
	padding-bottom: 11px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.eb-foot__col ul li + li {
	margin-top: 2px;
}

.eb-foot__col ul a {
	display: block;
	padding: 5px 0;
	line-height: 1.4;
	border-left: 2px solid transparent;
	transition: color 130ms var(--eb-ease), padding-left 160ms var(--eb-ease), border-color 130ms var(--eb-ease);
}

.eb-foot__col ul a:hover {
	color: #fff;
	border-left-color: var(--eb-gold);
	padding-left: 9px;
}

.eb-social {
	display: flex;
	gap: 8px;
}

.eb-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	color: #fff;
	transition: background-color 150ms var(--eb-ease), border-color 150ms var(--eb-ease);
}

.eb-social a:hover {
	background: var(--eb-gold);
	border-color: var(--eb-gold);
	color: var(--eb-navy-deep);
}

.eb-foot__kvkk {
	display: inline-block;
	margin-top: 22px;
	font-size: var(--eb-t-xs);
	border-bottom: 1px solid rgba(255, 255, 255, 0.28);
	padding-bottom: 2px;
}

.eb-foot__kvkk:hover {
	color: #fff;
	border-bottom-color: var(--eb-gold);
}

.eb-foot__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.eb-foot__barin {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-block: 16px;
}

.eb-foot__copy {
	font-size: var(--eb-t-xs);
	color: var(--eb-on-navy-50);
}

.eb-totop {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	color: #fff;
}

.eb-totop:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   14. Katmanlar (arama, hızlı erişim, erişilebilirlik, mobil menü)
   -------------------------------------------------------------------------- */
.eb-panel {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(12px, 5vh, 72px) var(--eb-gut);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.eb-panel[hidden] {
	display: none;
}

.eb-panel__scrim {
	position: fixed;
	inset: 0;
	background: rgba(0, 12, 36, 0.62);
	backdrop-filter: blur(2px);
	animation: ebFadeIn 200ms var(--eb-ease);
}

@keyframes ebFadeIn {
	from {
		opacity: 0;
	}
}

.eb-panel__box {
	position: relative;
	width: 100%;
	max-width: 620px;
	background: #fff;
	border-top: 3px solid var(--eb-gold);
	box-shadow: 0 30px 70px -30px rgba(0, 12, 36, 0.6);
	animation: ebPanelIn 260ms var(--eb-ease);
}

.eb-panel__box--wide {
	max-width: 1080px;
}

@keyframes ebPanelIn {
	from {
		opacity: 0;
		transform: translateY(-12px);
	}
}

.eb-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px clamp(18px, 3vw, 30px);
	border-bottom: 1px solid var(--eb-rule);
}

.eb-panel__h {
	font-size: var(--eb-t-lg);
	font-weight: 700;
	font-stretch: 88%;
	color: var(--eb-navy);
}

.eb-panel__x {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--eb-rule);
	border-radius: 2px;
	color: var(--eb-ink-70);
}

.eb-panel__x:hover {
	background: var(--eb-mist);
	color: var(--eb-navy);
}

/* Arama */

/* Erişilebilirlik paneli */
.eb-a11y__intro {
	padding: 16px clamp(18px, 3vw, 30px) 0;
	font-size: var(--eb-t-xs);
	color: var(--eb-ink-55);
}

.eb-a11y {
	padding: 14px clamp(18px, 3vw, 30px) clamp(18px, 3vw, 30px);
}

.eb-a11y__row {
	padding-block: 14px;
	border-bottom: 1px solid var(--eb-rule-soft);
}

.eb-a11y__lbl {
	display: block;
	font-size: var(--eb-t-xs);
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--eb-ink-55);
	margin-bottom: 10px;
}

.eb-seg {
	display: flex;
	border: 1px solid var(--eb-rule);
	border-radius: 2px;
	overflow: hidden;
}

.eb-seg__btn {
	flex: 1;
	padding: 11px 8px;
	font-size: var(--eb-t-sm);
	font-weight: 600;
	color: var(--eb-ink-70);
	background: #fff;
	transition: background-color 140ms var(--eb-ease), color 140ms var(--eb-ease);
}

.eb-seg__btn + .eb-seg__btn {
	border-left: 1px solid var(--eb-rule);
}

.eb-seg__btn:hover {
	background: var(--eb-mist);
}

.eb-seg__btn[aria-checked="true"] {
	background: var(--eb-navy);
	color: #fff;
}

.eb-switch {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	text-align: left;
}

.eb-switch__track {
	flex: none;
	position: relative;
	width: 46px;
	height: 26px;
	border-radius: 13px;
	background: #c2ccdd;
	transition: background-color 180ms var(--eb-ease);
}

.eb-switch__knob {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	transition: transform 180ms var(--eb-ease);
}

.eb-switch[aria-checked="true"] .eb-switch__track {
	background: var(--eb-navy);
}

.eb-switch[aria-checked="true"] .eb-switch__knob {
	transform: translateX(20px);
}

.eb-switch__text {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: var(--eb-t-sm);
	font-weight: 550;
	color: var(--eb-ink);
}

.eb-switch__text .eb-i {
	color: var(--eb-ink-55);
}

.eb-a11y__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 18px;
}

.eb-a11y__unit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--eb-t-xs);
	font-weight: 600;
	color: var(--eb-ink-70);
	border-bottom: 1px solid var(--eb-rule);
	padding-bottom: 2px;
}

.eb-a11y__unit:hover {
	color: var(--eb-navy);
	border-bottom-color: var(--eb-gold);
}

/* Mobil menü */
.eb-panel--drawer {
	padding: 0;
	align-items: stretch;
	justify-content: flex-end;
}

.eb-drawer {
	max-width: 460px;
	min-height: 100%;
	border-top: 0;
	border-left: 3px solid var(--eb-gold);
	animation: ebDrawerIn 260ms var(--eb-ease);
	display: flex;
	flex-direction: column;
}

@keyframes ebDrawerIn {
	from {
		transform: translateX(28px);
		opacity: 0;
	}
}

.eb-drawer__brand {
	font-size: var(--eb-t-sm);
	font-weight: 700;
	font-stretch: 88%;
	color: var(--eb-navy);
	line-height: 1.25;
	max-width: 22ch;
}

.eb-drawer__nav {
	flex: 1;
	overflow-y: auto;
	padding-bottom: 30px;
}

.eb-acc__item {
	border-bottom: 1px solid var(--eb-rule-soft);
}

.eb-acc__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 16px clamp(18px, 5vw, 26px);
	font-size: var(--eb-t-md);
	font-weight: 650;
	font-stretch: 92%;
	color: var(--eb-navy);
	text-align: left;
}

.eb-acc__chev {
	color: var(--eb-ink-55);
	transition: transform 200ms var(--eb-ease);
}

.eb-acc__btn[aria-expanded="true"] .eb-acc__chev {
	transform: rotate(180deg);
}

.eb-acc__body {
	padding: 0 clamp(18px, 5vw, 26px) 18px;
	background: var(--eb-mist-2);
}

.eb-acc__colhead {
	font-size: var(--eb-t-xs);
	font-weight: 700;
	letter-spacing: 0.005em;
	color: var(--eb-gold-deep);
	padding-top: 16px;
	padding-bottom: 8px;
}

.eb-acc__links a {
	display: block;
	padding: 9px 0;
	font-size: var(--eb-t-sm);
	color: var(--eb-ink-70);
	border-bottom: 1px solid var(--eb-rule-soft);
}

.eb-acc__links a:hover {
	color: var(--eb-navy);
}

.eb-acc__all {
	display: inline-block;
	margin-top: 14px;
	font-size: var(--eb-t-sm);
	font-weight: 650;
	color: var(--eb-navy);
	border-bottom: 2px solid var(--eb-gold);
	padding-bottom: 2px;
}

.eb-drawer__live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 22px clamp(18px, 5vw, 26px) 0;
	padding: 11px 16px;
	background: var(--eb-navy);
	color: #fff;
	font-size: var(--eb-t-xs);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 2px;
}

.eb-drawer__aud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 22px clamp(18px, 5vw, 26px) 0;
}

.eb-drawer__aud a {
	display: inline-block;
	padding: 8px 13px;
	font-size: var(--eb-t-xs);
	font-weight: 600;
	color: var(--eb-navy);
	border: 1px solid var(--eb-rule);
	border-radius: 2px;
}

.eb-drawer__aud a:hover {
	background: var(--eb-navy);
	color: #fff;
	border-color: var(--eb-navy);
}

.eb-home.eb-locked {
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   15. Duyarlı düzen
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
	.eb-nav__link {
		font-size: 12.5px;
		letter-spacing: 0.04em;
		padding-inline: 9px;
	}

	.eb-quick__list {
		grid-template-columns: repeat(5, 1fr);
	}

	.eb-quick__item:nth-child(6) .eb-quick__link,
	.eb-quick__item:nth-child(n + 6) .eb-quick__link {
		border-top: 1px solid rgba(255, 255, 255, 0.11);
	}

	.eb-quick__item:nth-child(6) .eb-quick__link {
		border-left: 0;
	}

	.eb-stats__list,
	.eb-tally {
		grid-template-columns: repeat(3, 1fr);
	}

	.eb-tally__item:nth-child(4) {
		border-left: 0;
	}

	.eb-tally__item:nth-child(n + 4) a {
		border-top: 1px solid var(--eb-rule-soft);
	}
}

@media (max-width: 1000px) {
	.eb-nav,
	.eb-hero__scroll {
		display: none;
	}

	.eb-burger {
		display: inline-flex;
	}

	.eb-head__actions {
		margin-left: auto;
	}

	.eb-feed__grid,
	.eb-units__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.eb-feed__side {
		padding-top: 8px;
	}

	.eb-links--3 {
		columns: 2;
	}

	.eb-rector__grid {
		grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
		align-items: start;
	}

	.eb-foot__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	:root {
		--eb-head-h: 62px;
	}

	.eb-top__aud {
		display: none;
	}

	.eb-top__inner {
		justify-content: flex-end;
	}

	.eb-top__tool span:not(.eb-sr) {
		display: none;
	}

	.eb-top__tool {
		padding-inline: 14px;
	}

	.eb-lang__cur {
		display: inline !important;
	}

	.eb-brand__mark {
		width: 38px;
		height: 38px;
	}

	.eb-brand__l1,
	.eb-brand__l2 {
		font-size: 11.5px;
	}

	.eb-brand__text {
		max-width: 15ch;
	}

	/* Başlık satırı 390 piksele sığmıyordu: canlı yayın düğmesi mobilde
	   gizlenir ve menünün içine taşınır, böylece menü düğmesi görünür kalır. */
	.eb-livebtn {
		display: none;
	}

	.eb-head__inner {
		gap: 10px;
	}

	.eb-head__actions {
		gap: 6px;
	}

	.eb-hero {
		/* Not: burada aspect-ratio kullanılmıyor. min-height ile birlikte
		   oran, yüksekliği değil GENİŞLİĞİ belirliyor (540 x 3/4 = 405px) ve
		   sayfa yatay olarak kayıyordu. */
		min-height: 560px;
		height: 86svh;
		max-height: 760px;
	}

	.eb-hero__body {
		bottom: clamp(104px, 16vh, 150px);
	}

	.eb-hero__thumbs {
		right: 10px;
		gap: 7px;
	}

	.eb-hero__thumb {
		width: 34px;
		height: 38px;
	}

	.eb-hero__thumb[aria-selected="true"] {
		width: 44px;
		height: 50px;
		padding: 2px;
	}

	.eb-hero__caption {
		font-size: var(--eb-t-sm);
	}

	.eb-quick__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.eb-quick__link {
		min-height: 66px;
		border-top: 1px solid rgba(255, 255, 255, 0.11);
	}

	.eb-quick__item:nth-child(odd) .eb-quick__link {
		border-left: 0;
	}

	.eb-news {
		grid-template-columns: minmax(0, 1fr);
	}

	.eb-stats__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.eb-tally {
		grid-template-columns: repeat(2, 1fr);
	}

	.eb-tally__item:nth-child(odd) {
		border-left: 0;
	}

	.eb-tally__item:nth-child(n + 3) a {
		border-top: 1px solid var(--eb-rule-soft);
	}

	.eb-rector__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.eb-rector__portrait {
		max-width: 240px;
	}

	.eb-links--3 {
		columns: 1;
	}

	.eb-foot__top {
		grid-template-columns: minmax(0, 1fr);
	}

	.eb-ev {
		align-items: flex-start;
	}

	.eb-ev__arrow {
		display: none;
	}

	.eb-shead {
		margin-bottom: 20px;
	}
}

@media (max-width: 460px) {
	.eb-lead__title {
		font-size: var(--eb-t-xl);
	}

	.eb-news__media {
		width: 76px;
	}

	.eb-daybox {
		width: 46px;
		padding-right: 10px;
	}
}

/* --------------------------------------------------------------------------
   16. Erişilebilirlik tercihleri (panelden ayarlanır, tarayıcıda saklanır)
   -------------------------------------------------------------------------- */
/* Yazı boyutu. Kök font-size değiştirmek işe yaramıyordu: stil sayfasındaki
   ölçüler piksel. Bunun yerine içerik alanı orantılı yakınlaştırılır; ızgaralar
   akışkan olduğu için sayfa yeniden dizilir, yatay kayma olmaz. Başlık ve
   katmanlar yakınlaştırılmaz (yapışkan/sabit konumları bozulmasın). */
html.eb-size-1 .eb-main,
html.eb-size-1 .eb-foot {
	zoom: 1.14;
}

html.eb-size-2 .eb-main,
html.eb-size-2 .eb-foot {
	zoom: 1.3;
}

html.eb-underline .eb-home a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Metin aralığı (WCAG 1.4.12'ye yakın). Önceki kural yalnızca p/li'ye
   uygulandığı için kart başlıklarında (span) hiçbir şey değişmiyordu. */
html.eb-spacing .eb-main :is(p, li, a, span, dd, dt, h2, h3, time, button),
html.eb-spacing .eb-foot :is(p, li, a, span) {
	line-height: 1.75 !important;
	letter-spacing: 0.05em !important;
	word-spacing: 0.14em !important;
}

html.eb-spacing .eb-main p {
	margin-bottom: 1.2em;
}

/* Yüksek kontrast: saf siyah/beyaz zemin, kalın kenarlar, altın yalnız koyu zeminde */
html.eb-contrast .eb-home {
	--eb-ink: #000000;
	--eb-ink-70: #000000;
	--eb-ink-55: #1a1a1a;
	--eb-rule: #000000;
	--eb-rule-soft: #4a4a4a;
	--eb-mist: #ffffff;
	--eb-mist-2: #ffffff;
	--eb-navy: #000d2b;
	--eb-navy-deep: #000000;
	--eb-navy-mid: #001c54;
	--eb-gold-deep: #5b4409;
	--eb-on-navy-70: #ffffff;
	--eb-on-navy-50: #e6e6e6;
	--eb-on-navy-line: rgba(255, 255, 255, 0.6);
}

html.eb-contrast .eb-hero__scrim {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 40%, rgba(0, 0, 0, 0.5) 100%);
}

html.eb-contrast .eb-lead__title,
html.eb-contrast .eb-ann__title,
html.eb-contrast .eb-news__title,
html.eb-contrast .eb-ev__title {
	color: #000;
}

html.eb-contrast .eb-home a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

html.eb-contrast .eb-partners__link {
	opacity: 1;
}

html.eb-contrast .eb-hero__thumbin img,
html.eb-contrast .eb-home img {
	filter: none;
}

/* Hareket azaltma: kullanıcı tercihi ya da panel anahtarı */
@media (prefers-reduced-motion: reduce) {
	.eb-home *,
	.eb-home *::before,
	.eb-home *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}

	.eb-hero__slide.is-active .eb-hero__media img {
		animation: none;
		transform: scale(1.01);
	}

	.eb-hero__title,
	.eb-hero__caption,
	.eb-hero__cta {
		opacity: 1;
		transform: none;
	}
}

html.eb-motion .eb-home *,
html.eb-motion .eb-home *::before,
html.eb-motion .eb-home *::after {
	animation-duration: 0.001ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.001ms !important;
}

html.eb-motion .eb-hero__slide.is-active .eb-hero__media img {
	animation: none;
	transform: scale(1.01);
}

html.eb-motion .eb-hero__title,
html.eb-motion .eb-hero__caption,
html.eb-motion .eb-hero__cta {
	opacity: 1;
	transform: none;
}

html.eb-motion .eb-hero__bar.is-active i {
	transform: scaleX(1);
	animation: none;
}

/* --------------------------------------------------------------------------
   17. Sağdan sola diller (Arapça)
   -------------------------------------------------------------------------- */
[dir="rtl"] .eb-hero__thumbs {
	right: auto;
	left: clamp(14px, 2.4vw, 40px);
}

[dir="rtl"] .eb-hero__scrim {
	background:
		linear-gradient(to top, rgba(0, 15, 44, 0.9) 0%, rgba(0, 15, 44, 0.6) 26%, rgba(0, 15, 44, 0.12) 58%, rgba(0, 15, 44, 0.35) 100%),
		linear-gradient(to left, rgba(0, 15, 44, 0.62) 0%, rgba(0, 15, 44, 0) 62%);
}

[dir="rtl"] .eb-shead::after,
[dir="rtl"] .eb-rector__h::after {
	left: auto;
	right: 0;
}

[dir="rtl"] .eb-mega__lead {
	border-right: 0;
	border-left: 1px solid var(--eb-rule-soft);
	padding-right: 0;
	padding-left: 24px;
}

[dir="rtl"] .eb-daybox {
	border-right: 0;
	border-left: 1px solid var(--eb-rule);
	padding-right: 0;
	padding-left: 12px;
}

[dir="rtl"] .eb-mega__links a,
[dir="rtl"] .eb-links a,
[dir="rtl"] .eb-foot__col ul a {
	border-left: 0;
	border-right: 2px solid transparent;
}

[dir="rtl"] .eb-mega__links a:hover,
[dir="rtl"] .eb-links a:hover,
[dir="rtl"] .eb-foot__col ul a:hover {
	border-right-color: var(--eb-gold);
	padding-left: 0;
	padding-right: 9px;
}

[dir="rtl"] .eb-annc__link:hover,
[dir="rtl"] .eb-ecard:hover,
[dir="rtl"] .eb-qp__cell a:hover {
	padding-left: 0;
	padding-right: 8px;
}

[dir="rtl"] .eb-quick__link,
[dir="rtl"] .eb-tally__item + .eb-tally__item {
	border-left: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.11);
}

[dir="rtl"] .eb-ev__arrow,
[dir="rtl"] .eb-hero__cta .eb-i,
[dir="rtl"] .eb-shead__all .eb-i,
[dir="rtl"] .eb-mega__all .eb-i {
	transform: scaleX(-1);
}

[dir="rtl"] .eb-drawer {
	border-left: 0;
	border-right: 3px solid var(--eb-gold);
}

[dir="rtl"] .eb-panel--drawer {
	justify-content: flex-start;
}

[dir="rtl"] .eb-srch__form {
	padding-left: 0;
	padding-right: clamp(16px, 3vw, 26px);
}

[dir="rtl"] .eb-qp__finput {
	padding: 12px 44px 12px 16px;
}

[dir="rtl"] .eb-qp__ficon {
	left: auto;
	right: 14px;
}

[dir="rtl"] .eb-switch[aria-checked="true"] .eb-switch__knob {
	transform: translateX(-20px);
}

[dir="rtl"] .eb-lang__menu {
	right: auto;
	left: 0;
}

/* Yazdırma */
@media print {
	.eb-head,
	.eb-mbar,
	.eb-hero__thumbs,
	.eb-hero__foot,
	.eb-hero__scroll,
	.eb-panel,
	.eb-totop,
	.eb-quick {
		display: none !important;
	}

	.eb-home {
		color: #000;
	}

	.eb-hero {
		height: auto;
		min-height: 0;
		margin-top: 0;
	}
}

/* ==========================================================================
   18. Kıvrımlı geçişler, madalyon ve kart dili
   --------------------------------------------------------------------------
   Rektörlüğün beğendiği Boğaziçi düzenindeki üç imza öğe EBYÜ kimliğiyle
   yeniden kurgulandı:
     · bölümler arası kıvrımlı geçiş ve ortasından çıkan oval amblem,
     · fotoğraf bölümlerinin tepesine oturan beyaz başlık sekmesi,
     · ikonlu, yuvarlatılmış kartlar ve sayaç kutuları.
   Renkler kurumsal kimlikten sapmaz: lacivert #001C54, altın #D0A53D.
   ========================================================================== */

:root {
	--eb-r-xs: 6px;
	--eb-r-sm: 10px;
	--eb-r-md: 16px;
	--eb-r-lg: 24px;
	--eb-r-pill: 999px;
	--eb-lift: 0 18px 40px -26px rgba(0, 28, 84, 0.34);
	--eb-lift-strong: 0 26px 54px -28px rgba(0, 28, 84, 0.44);
}

/* ——— Yuvarlatma: düğmeler hap, kartlar yumuşak köşe ——— */
.eb-btn,
.eb-hero__cta,
.eb-livebtn,
.eb-iconbtn,
.eb-drawer__aud a,
.eb-drawer__live,
.eb-social a,
.eb-totop,
.eb-panel__x,
.eb-hero__toggle {
	border-radius: var(--eb-r-pill);
}

.eb-iconbtn,
.eb-panel__x,
.eb-social a,
.eb-totop,
.eb-hero__toggle {
	aspect-ratio: 1;
}

.eb-panel__box,
.eb-qp__finput,
.eb-seg {
	border-radius: var(--eb-r-lg);
}

.eb-srch__input,
.eb-qp__finput {
	border-radius: var(--eb-r-pill);
}

.eb-lead__media,
.eb-news__media,
.eb-rector__portrait,
.eb-mega {
	border-radius: var(--eb-r-md);
	overflow: hidden;
}

.eb-mega {
	border-bottom-left-radius: var(--eb-r-lg);
	border-bottom-right-radius: var(--eb-r-lg);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/* ——— Kıvrımlı geçiş + oval amblem madalyonu ——— */
.eb-seam {
	--eb-lobe: clamp(280px, 30vw, 420px);
	position: relative;
	height: 0;
	z-index: 6;
}

.eb-seam__lobe {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: var(--eb-lobe);
	height: calc(var(--eb-lobe) * 0.18);
	pointer-events: none;
}

.eb-seam__lobe path {
	fill: var(--eb-seam-from, #ffffff);
}

/* Amblem kıvrımın cebine oturur. Cep 400x66 birim; amblem diski 96 birim
   çapında ve merkezi y=12'de. Her yönde en az 6 birim beyaz pay kalır,
   bu yüzden hiçbir ekran genişliğinde taşma olmaz. */
.eb-seam__medal {
	position: absolute;
	top: calc(var(--eb-lobe) * -0.09);
	left: 50%;
	width: calc(var(--eb-lobe) * 0.24);
	height: calc(var(--eb-lobe) * 0.24);
	transform: translateX(-50%);
	border-radius: 50%;
	background: var(--eb-seam-from, #ffffff);
	display: grid;
	place-items: center;
	pointer-events: none;
}

.eb-seam__medal img {
	width: 76%;
	height: 76%;
	object-fit: contain;
}

/* ——— Fotoğraf bölümlerinin başlık sekmesi ——— */
.eb-tab {
	--eb-cove: clamp(20px, 2.4vw, 34px);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	background: #fff;
	padding: clamp(14px, 1.6vw, 22px) clamp(26px, 3vw, 46px) clamp(16px, 1.8vw, 24px);
	border-bottom-left-radius: var(--eb-r-lg);
	border-bottom-right-radius: var(--eb-r-lg);
	text-align: center;
	max-width: min(92%, 620px);
}

.eb-tab::before,
.eb-tab::after {
	content: "";
	position: absolute;
	top: 0;
	width: var(--eb-cove);
	height: var(--eb-cove);
	pointer-events: none;
}

.eb-tab::before {
	left: calc(var(--eb-cove) * -1);
	background: radial-gradient(circle var(--eb-cove) at 0 100%, rgba(255, 255, 255, 0) 0 var(--eb-cove), #fff var(--eb-cove));
}

.eb-tab::after {
	right: calc(var(--eb-cove) * -1);
	background: radial-gradient(circle var(--eb-cove) at 100% 100%, rgba(255, 255, 255, 0) 0 var(--eb-cove), #fff var(--eb-cove));
}

.eb-tab__h {
	font-size: var(--eb-t-xl);
	font-weight: 800;
	font-stretch: 84%;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: var(--eb-navy);
}

.eb-tab__sub {
	margin-top: 5px;
	font-size: var(--eb-t-sm);
	color: var(--eb-ink-55);
	line-height: 1.4;
}

/* ——— Sayılarla EBYÜ: ikonlu kartlar ——— */
.eb-stats {
	position: relative;
	background: var(--eb-mist-2);
	color: var(--eb-ink);
	border-top: 1px solid var(--eb-rule);
	padding-block: clamp(52px, 6vw, 84px);
}

.eb-stats__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: clamp(22px, 2.6vw, 34px);
}

.eb-stats__h {
	font-size: var(--eb-t-2xl);
	font-weight: 800;
	font-stretch: 84%;
	letter-spacing: -0.014em;
	color: var(--eb-navy);
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
	text-transform: none;
}

.eb-stats__sub {
	font-size: var(--eb-t-sm);
	color: var(--eb-ink-55);
	margin-top: 5px;
}

.eb-stats__list {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: clamp(12px, 1.4vw, 20px);
}

.eb-stats__item {
	background: #fff;
	border: 1px solid var(--eb-rule-soft);
	border-radius: var(--eb-r-md);
	padding: clamp(18px, 2vw, 26px) clamp(14px, 1.4vw, 20px);
	text-align: center;
	transition: transform 260ms var(--eb-ease), box-shadow 260ms var(--eb-ease), border-color 260ms var(--eb-ease);
}

.eb-stats__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--eb-lift);
	border-color: var(--eb-gold);
}

.eb-stats__icon {
	width: 46px;
	height: 46px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: var(--eb-mist);
	color: var(--eb-navy);
	display: grid;
	place-items: center;
}

.eb-stats__icon .eb-i {
	width: 22px;
	height: 22px;
}

.eb-stats__n {
	font-size: var(--eb-t-stat);
	font-weight: 800;
	font-stretch: 76%;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--eb-navy);
	font-variant-numeric: tabular-nums;
}

.eb-stats__t {
	margin-top: 8px;
	font-size: var(--eb-t-xs);
	font-weight: 600;
	line-height: 1.35;
	color: var(--eb-ink-70);
}

/* ——— Öğrenci yaşamı: fotoğraf üzerinde hizmet döşemeleri ——— */
.eb-life {
	position: relative;
	isolation: isolate;
	padding-block: clamp(96px, 11vw, 150px) clamp(56px, 6vw, 88px);
	overflow: hidden;
	color: #fff;
}

.eb-life__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.eb-life__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eb-life::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(100deg, rgba(0, 15, 44, 0.94) 0%, rgba(0, 15, 44, 0.8) 46%, rgba(0, 15, 44, 0.5) 100%);
}

.eb-life__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}

.eb-life__lead h2 {
	font-size: var(--eb-t-2xl);
	font-weight: 800;
	font-stretch: 82%;
	line-height: 1.14;
	letter-spacing: -0.014em;
	max-width: 22ch;
}

.eb-life__lead p {
	margin-top: 14px;
	max-width: 48ch;
	font-size: var(--eb-t-md);
	color: rgba(255, 255, 255, 0.84);
	line-height: 1.6;
}

.eb-life__lead .eb-btn {
	margin-top: 24px;
	background: var(--eb-gold);
	color: var(--eb-navy-deep);
	border: 0;
}

.eb-life__lead .eb-btn:hover {
	background: #e0b752;
}

.eb-life__tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(10px, 1.2vw, 16px);
}

.eb-life__tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 118px;
	padding: 16px 12px;
	text-align: center;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--eb-r-md);
	backdrop-filter: blur(6px);
	transition: background-color 220ms var(--eb-ease), transform 220ms var(--eb-ease), border-color 220ms var(--eb-ease);
}

.eb-life__tile:hover {
	background: rgba(208, 165, 61, 0.22);
	border-color: var(--eb-gold);
	transform: translateY(-3px);
}

.eb-life__tile .eb-i {
	width: 26px;
	height: 26px;
	color: var(--eb-gold);
}

.eb-life__tile span {
	font-size: var(--eb-t-xs);
	font-weight: 600;
	line-height: 1.3;
}

/* ——— Duyurular bandı: kart dili ——— */
.eb-ann__item {
	border-bottom: 0;
	margin-bottom: 8px;
}

.eb-ann__link {
	background: #fff;
	border: 1px solid var(--eb-rule-soft);
	border-radius: var(--eb-r-sm);
	padding: 13px 14px;
	align-items: center;
	transition: border-color 200ms var(--eb-ease), box-shadow 200ms var(--eb-ease), transform 200ms var(--eb-ease);
}

.eb-ann__link:hover {
	padding-left: 14px;
	border-color: var(--eb-gold);
	box-shadow: var(--eb-lift);
	transform: translateY(-2px);
}

.eb-ann {
	border-top: 0;
}

/* ——— Etkinlik satırları kart oldu ——— */
.eb-evlist {
	border-top: 0;
	display: grid;
	gap: 10px;
}

.eb-evlist__item {
	border-bottom: 0;
}

.eb-ev {
	background: #fff;
	border: 1px solid var(--eb-rule-soft);
	border-radius: var(--eb-r-md);
	padding: 18px 20px;
	transition: border-color 220ms var(--eb-ease), box-shadow 220ms var(--eb-ease), transform 220ms var(--eb-ease);
}

.eb-ev:hover {
	padding-left: 20px;
	border-color: var(--eb-gold);
	box-shadow: var(--eb-lift);
	transform: translateY(-2px);
}

/* ——— Paydaş kurumlar: ortalanmış başlık + kartlar ——— */
.eb-partners {
	text-align: center;
	border-bottom: 0;
	padding-block: clamp(44px, 5vw, 70px) clamp(56px, 6vw, 86px);
}

.eb-partners__h {
	font-size: var(--eb-t-2xl);
	font-weight: 800;
	font-stretch: 84%;
	letter-spacing: -0.014em;
	color: var(--eb-navy);
	margin-bottom: 6px;
}

.eb-partners__sub {
	font-size: var(--eb-t-sm);
	color: var(--eb-ink-55);
	margin-bottom: clamp(22px, 2.6vw, 34px);
}

.eb-partners__list {
	justify-content: center;
	gap: clamp(8px, 0.9vw, 12px);
}

.eb-partners__list li {
	flex: 0 0 auto;
}

.eb-partners__link {
	display: grid;
	place-items: center;
	width: clamp(100px, 9.5vw, 124px);
	min-height: 90px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid var(--eb-rule-soft);
	border-radius: var(--eb-r-md);
	opacity: 1;
	transition: border-color 220ms var(--eb-ease), box-shadow 220ms var(--eb-ease), transform 220ms var(--eb-ease);
}

.eb-partners__link:hover {
	border-color: var(--eb-gold);
	box-shadow: var(--eb-lift);
	transform: translateY(-3px);
}

/* ——— Alt bilgi: kıvrımlı üst kenar ve fotoğraf dokusu ——— */
.eb-foot {
	position: relative;
	isolation: isolate;
	padding-top: clamp(58px, 6vw, 84px);
}

.eb-foot__texture {
	position: absolute;
	inset: 0;
	z-index: -2;
	opacity: 0.15;
}

.eb-foot__texture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eb-foot::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 15, 44, 0.94), rgba(0, 15, 44, 0.99));
}

/* ——— Kaydırmayla belirme (hareket azaltmaya saygılı) ——— */
/* JavaScript çalışmazsa içerik gizli kalmasın: gizleme yalnızca .eb-js
   sınıfı eklendiğinde devreye girer, ayrıca betikte emniyet zamanlayıcısı var. */
html.eb-js .eb-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 620ms var(--eb-ease), transform 620ms var(--eb-ease);
	will-change: opacity, transform;
}

html.eb-js .eb-reveal.is-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html.eb-js .eb-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

html.eb-motion .eb-reveal, html.eb-js.eb-motion .eb-reveal {
	opacity: 1;
	transform: none;
	transition: none;
}

/* ——— Kaydırma ipucu (hero altı) ——— */
.eb-hero__cue {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: clamp(14px, 2vh, 26px);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--eb-t-xxs);
	font-weight: 700;
	letter-spacing: 0.06em;
	z-index: 4;
}

.eb-hero__cue:hover {
	color: #fff;
}

.eb-hero__mouse {
	width: 22px;
	height: 34px;
	border: 1.5px solid currentColor;
	border-radius: var(--eb-r-pill);
	position: relative;
}

.eb-hero__mouse::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 7px;
	width: 2px;
	height: 7px;
	border-radius: 2px;
	background: currentColor;
	transform: translateX(-50%);
	animation: ebWheel 1.9s var(--eb-ease) infinite;
}

@keyframes ebWheel {
	0%, 100% {
		opacity: 0;
		transform: translate(-50%, 0);
	}
	30% {
		opacity: 1;
	}
	70% {
		opacity: 0;
		transform: translate(-50%, 10px);
	}
}

/* ——— Duyarlı ayarlar ——— */
@media (max-width: 1300px) {
	.eb-partners__link {
		width: clamp(96px, 8.6vw, 110px);
	}
}

@media (max-width: 1180px) {
	.eb-stats__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.eb-life__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 720px) {
	.eb-stats__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eb-life__tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eb-tab {
		max-width: calc(100% - 24px);
		padding-inline: 18px;
	}

	.eb-tab::before,
	.eb-tab::after {
		display: none;
	}


	.eb-hero__cue {
		display: none;
	}

	.eb-partners__link {
		width: clamp(94px, 27vw, 116px);
		min-height: 78px;
	}
}

/* --------------------------------------------------------------------------
   19. 2026.2 revizyonu — iki satırlı başlık, kaydırmalı listeler,
       tam ekran arama, iki kolonlu hızlı erişim, mobil alt şerit
   -------------------------------------------------------------------------- */

/* ——— Başlık: iki satır ——— */
.eb-head {
	position: sticky;
	top: 0;
	z-index: 50;
	background: transparent;
	min-height: var(--eb-head-h);
	border-bottom: 0;
	transition: background-color 260ms var(--eb-ease), box-shadow 260ms var(--eb-ease);
}

.eb-head.is-solid {
	background: var(--eb-navy-deep);
	box-shadow: 0 10px 30px -18px rgba(0, 15, 44, 0.8);
}

.eb-head.has-open {
	background: var(--eb-navy-deep);
}

.eb-head__row {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.6vw, 26px);
}

.eb-head__row--top {
	min-height: 66px;
	padding-top: 8px;
}

.eb-head__row--nav {
	min-height: 44px;
	padding-bottom: 6px;
	justify-content: space-between;
}

.eb-head.is-solid .eb-head__row--top {
	min-height: 52px;
	padding-top: 4px;
}

/* Marka */
.eb-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-right: auto;
	color: #fff;
	flex: none;
}

.eb-brand__mark {
	width: clamp(42px, 3.6vw, 54px);
	height: auto;
	flex: none;
}

.eb-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.12;
}

.eb-brand__l1 {
	font-size: clamp(13px, 1.05vw, 15.5px);
	font-weight: 750;
	font-stretch: 86%;
}

.eb-brand__l2 {
	font-size: clamp(13px, 1.05vw, 15.5px);
	font-weight: 400;
	font-stretch: 92%;
	color: var(--eb-on-navy-70);
}

/* Hedef kitle düğmeleri */
.eb-aud__list {
	display: flex;
	align-items: center;
	gap: 8px;
}

.eb-aud__pill {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 40px;
	padding: 0 15px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 12px;
	color: #fff;
	font-size: 12.5px;
	font-weight: 650;
	font-stretch: 92%;
	white-space: nowrap;
	transition: background-color 160ms var(--eb-ease), border-color 160ms var(--eb-ease);
}

.eb-aud__pill:hover {
	background: #fff;
	border-color: #fff;
	color: var(--eb-navy);
}

.eb-aud__badge {
	margin-left: 2px;
	padding: 2px 7px;
	border-radius: 7px;
	background: var(--eb-gold);
	color: var(--eb-navy-deep);
	font-size: 10.5px;
	font-weight: 750;
}

/* Araç düğmeleri */
.eb-tools {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: none;
}

.eb-glass {
	position: relative;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-glass:hover {
	background: #fff;
	color: var(--eb-navy);
}

.eb-glass__tip {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(-4px);
	padding: 6px 10px;
	border-radius: 8px;
	background: var(--eb-navy-deep);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 160ms var(--eb-ease), transform 160ms var(--eb-ease);
}

.eb-glass:hover .eb-glass__tip,
.eb-glass:focus-visible .eb-glass__tip {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.eb-lang {
	position: relative;
}

.eb-lang__btn {
	width: auto;
	min-width: 46px;
	padding: 0 12px;
	font-size: 12.5px;
	font-weight: 750;
}

/* Ana gezinme */
.eb-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(2px, 0.5vw, 10px);
}

.eb-nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 40px;
	padding: 0 clamp(8px, 0.9vw, 15px);
	border-radius: 10px;
	color: #fff;
	font-size: clamp(13px, 1.02vw, 14.5px);
	font-weight: 700;
	font-stretch: 88%;
	white-space: nowrap;
	transition: background-color 160ms var(--eb-ease);
}

.eb-nav__link::after {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 2px;
	height: 2.5px;
	background: var(--eb-gold);
	border-radius: 2px;
	transition: left 200ms var(--eb-ease), right 200ms var(--eb-ease);
}

.eb-nav__link:hover::after,
.eb-nav__link[aria-expanded="true"]::after {
	left: clamp(8px, 0.9vw, 15px);
	right: clamp(8px, 0.9vw, 15px);
}

.eb-head__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: none;
}

.eb-iconbtn {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	color: #fff;
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-iconbtn:hover {
	background: #fff;
	color: var(--eb-navy);
}

.eb-qabtn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 16px;
	border-radius: 12px;
	border: 1px solid var(--eb-gold);
	color: var(--eb-gold);
	font-size: 12.5px;
	font-weight: 750;
	font-stretch: 92%;
	white-space: nowrap;
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-qabtn:hover {
	background: var(--eb-gold);
	color: var(--eb-navy-deep);
}

.eb-burger {
	display: none;
}

/* ——— Mega panel ——— */
.eb-mega {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: auto;
	max-width: none;
	transform: none;
	background: #fff;
	border-top: 3px solid var(--eb-gold);
	border-bottom: 1px solid var(--eb-rule);
	box-shadow: 0 26px 44px -30px rgba(0, 28, 84, 0.5);
}

.eb-mega__inner {
	grid-template-columns: minmax(220px, 300px) 1fr;
	padding-block: 30px 34px;
}

.eb-mega__card {
	position: relative;
	display: block;
	margin-top: 18px;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

.eb-mega__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms var(--eb-ease);
}

.eb-mega__card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 28, 84, 0.86), rgba(0, 28, 84, 0.1));
}

.eb-mega__card:hover img {
	transform: scale(1.05);
}

.eb-mega__cardt {
	position: absolute;
	left: 16px;
	bottom: 14px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #fff;
	font-size: 13.5px;
	font-weight: 700;
}

/* ——— Hizmet şeridi ——— */
.eb-quick {
	position: relative;
	z-index: 2;
	background: var(--eb-navy);
}

.eb-quick__inner {
	padding: 0;
}

.eb-quick__list {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
}

.eb-quick__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	min-height: 104px;
	padding: 16px 8px;
	color: #fff;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	transition: background-color 170ms var(--eb-ease);
}

.eb-quick__item:first-child .eb-quick__link {
	border-left: 0;
}

.eb-quick__link:hover {
	background: var(--eb-navy-mid);
}

.eb-quick__icon {
	width: 25px;
	height: 25px;
	color: var(--eb-gold);
	flex: none;
	transition: transform 200ms var(--eb-ease);
}

.eb-quick__link:hover .eb-quick__icon {
	transform: translateY(-2px);
}

.eb-quick__name {
	display: block;
	max-width: 13ch;
	font-size: 12.5px;
	font-weight: 650;
	font-stretch: 92%;
	line-height: 1.25;
}

.eb-quick__desc {
	display: none;
}

.eb-quick__link--more {
	background: rgba(208, 165, 61, 0.15);
}

.eb-quick__link--more:hover {
	background: rgba(208, 165, 61, 0.26);
}

/* ——— Kaydırma motoru ——— */
.eb-car {
	position: relative;
}

.eb-car__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 2px;
}

.eb-car__track::-webkit-scrollbar {
	display: none;
}

.eb-car__track > * {
	flex: none;
	scroll-snap-align: start;
}

.eb-car__nav {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.eb-car__btn {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	border: 1px solid var(--eb-rule);
	background: #fff;
	color: var(--eb-navy);
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease), opacity 160ms var(--eb-ease);
}

.eb-car__btn:hover {
	background: var(--eb-navy);
	border-color: var(--eb-navy);
	color: #fff;
}

.eb-car__btn.is-off {
	opacity: 0.4;
}

.eb-car__ip {
	transform: rotate(180deg);
}

.eb-car__nav--onnavy .eb-car__btn {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.eb-car__nav--onnavy .eb-car__btn:hover {
	background: #fff;
	color: var(--eb-navy);
}

.eb-car__nav--float {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
}

.eb-car__nav--float .eb-car__btn {
	background: rgba(255, 255, 255, 0.9);
	border-color: transparent;
	backdrop-filter: blur(6px);
}

.eb-car__nav--edge {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.eb-car__nav--edge .eb-car__btn {
	pointer-events: auto;
	box-shadow: 0 8px 20px -12px rgba(0, 28, 84, 0.5);
}

.eb-car__dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 20px;
}

.eb-car__dot {
	width: 9px;
	height: 9px;
	border-radius: 99px;
	background: var(--eb-rule);
	transition: width 240ms var(--eb-ease), background-color 240ms var(--eb-ease);
}

.eb-car__dot.is-on {
	width: 30px;
	background: var(--eb-navy);
}

.eb-car__dots--onnavy .eb-car__dot {
	background: rgba(255, 255, 255, 0.3);
}

.eb-car__dots--onnavy .eb-car__dot.is-on {
	background: #fff;
}

/* ——— Duyurular bandı ——— */
.eb-annb {
	position: relative;
	background:
		radial-gradient(120% 140% at 12% 0%, var(--eb-navy-mid) 0%, rgba(11, 42, 102, 0) 62%),
		linear-gradient(160deg, var(--eb-navy) 0%, var(--eb-navy-deep) 100%);
	color: #fff;
	padding-block: clamp(38px, 4.6vw, 60px) clamp(44px, 5vw, 64px);
}

.eb-annb::after {
	content: "";
	position: absolute;
	left: clamp(28px, 8vw, 128px);
	bottom: -21px;
	width: 46px;
	height: 22px;
	background: var(--eb-navy-deep);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.eb-annb__head {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 24px;
}

.eb-annb__h {
	font-size: var(--eb-t-2xl);
	font-weight: 800;
	font-stretch: 84%;
	letter-spacing: -0.015em;
}

.eb-annb__all {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 44px;
	padding: 0 20px;
	border-radius: 14px;
	background: #fff;
	color: var(--eb-navy);
	font-size: 13px;
	font-weight: 750;
	white-space: nowrap;
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-annb__all:hover {
	background: var(--eb-gold);
	color: var(--eb-navy-deep);
}

.eb-annb__track > .eb-annc {
	width: clamp(258px, 25vw, 320px);
}

.eb-annc__link {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	height: 100%;
	min-height: 142px;
	padding: 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.13);
	color: #fff;
	transition: background-color 180ms var(--eb-ease), transform 180ms var(--eb-ease);
}

.eb-annc__link:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
}

.eb-annc__body {
	min-width: 0;
}

.eb-annc__src {
	display: block;
	margin-bottom: 5px;
	font-size: 11px;
	font-weight: 700;
	color: var(--eb-gold);
}

.eb-annc__title {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.42;
}

.eb-annc__go {
	position: absolute;
	right: 16px;
	bottom: 14px;
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.7);
}

.eb-annc {
	position: relative;
}

.eb-empty--onnavy {
	color: var(--eb-on-navy-70);
}

/* ——— Haberler ——— */
.eb-nws {
	padding-block: var(--eb-sec);
}

.eb-shead {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 26px;
}

.eb-shead__sub {
	margin-top: 6px;
	font-size: var(--eb-t-sm);
	color: var(--eb-ink-55);
}

.eb-shead__side {
	display: flex;
	align-items: center;
	gap: 12px;
}

.eb-nws__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
	gap: clamp(20px, 2.4vw, 34px);
	align-items: start;
}

.eb-nws__track > .eb-lead {
	width: 100%;
}

.eb-nws__lead .eb-car__track {
	gap: 0;
}

.eb-lead {
	border-radius: 24px;
	overflow: hidden;
	background: var(--eb-navy);
}

.eb-lead__link {
	display: block;
	color: #fff;
}

.eb-lead__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--eb-navy-deep);
}

.eb-lead__media img,
.eb-lead__media .eb-noimg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--eb-ease);
}

.eb-lead__link:hover .eb-lead__media img {
	transform: scale(1.04);
}

.eb-lead__body {
	display: flex;
	gap: 18px;
	padding: 0 clamp(18px, 2vw, 28px) clamp(20px, 2.2vw, 28px);
}

.eb-daybox--lift {
	margin-top: -34px;
	position: relative;
	z-index: 2;
	flex: none;
}

.eb-lead__text {
	padding-top: 16px;
	min-width: 0;
}

.eb-lead__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: var(--eb-t-xl);
	font-weight: 800;
	font-stretch: 86%;
	line-height: 1.22;
	letter-spacing: -0.012em;
}

.eb-lead__ex {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 9px;
	font-size: var(--eb-t-sm);
	line-height: 1.55;
	color: var(--eb-on-navy-70);
}

.eb-lead__more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 14px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--eb-gold);
}

.eb-nws__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(12px, 1.4vw, 18px);
}

.eb-ncard {
	background: #fff;
	border: 1px solid var(--eb-rule-soft);
	border-radius: 18px;
	overflow: hidden;
	transition: box-shadow 200ms var(--eb-ease), transform 200ms var(--eb-ease);
}

.eb-ncard:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 34px -22px rgba(0, 28, 84, 0.4);
}

.eb-ncard__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: var(--eb-ink);
}

.eb-ncard__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--eb-mist);
}

.eb-ncard__media img,
.eb-ncard__media .eb-noimg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eb-ncard__title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	padding: 14px 16px 0;
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.42;
	color: var(--eb-navy);
}

.eb-ncard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
	padding: 12px 16px 14px;
}

.eb-ncard__foot .eb-date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	color: var(--eb-ink-55);
}

/* ——— Etkinlikler ——— */
.eb-events {
	padding-block: var(--eb-sec);
	background: var(--eb-mist-2);
	border-block: 1px solid var(--eb-rule-soft);
}

.eb-evtrack > .eb-ecard {
	width: clamp(240px, 24vw, 300px);
}

.eb-ecard {
	background: #fff;
	border: 1px solid var(--eb-rule-soft);
	border-radius: 22px;
	overflow: hidden;
	transition: box-shadow 200ms var(--eb-ease), transform 200ms var(--eb-ease);
}

.eb-ecard:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 38px -24px rgba(0, 28, 84, 0.42);
}

.eb-ecard__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: var(--eb-ink);
}

.eb-ecard__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: var(--eb-mist);
}

.eb-ecard__media img,
.eb-ecard__media .eb-noimg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eb-daybox--corner {
	position: absolute;
	left: 12px;
	bottom: 12px;
	z-index: 2;
}

.eb-ecard__body {
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 15px 17px 16px;
	height: 100%;
}

.eb-ecard__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 15px;
	font-weight: 750;
	font-stretch: 90%;
	line-height: 1.3;
	color: var(--eb-navy);
}

.eb-ecard__ex {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--eb-ink-55);
}

.eb-ecard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
	padding-top: 11px;
	border-top: 1px solid var(--eb-rule-soft);
	font-size: 11.5px;
	color: var(--eb-ink-55);
}

.eb-ecard__foot time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* ——— Paydaş kurumlar ——— */
.eb-partners__track {
	padding-inline: 54px;
}

.eb-partners__track > .eb-partners__cell {
	width: clamp(132px, 13vw, 168px);
}

.eb-partners__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: 100%;
	min-height: 138px;
	padding: 18px 12px;
	border: 1px solid var(--eb-rule-soft);
	border-radius: 16px;
	background: #fff;
	transition: border-color 180ms var(--eb-ease), box-shadow 180ms var(--eb-ease);
}

.eb-partners__link img {
	height: min(var(--eb-logo-h, 34px), 40px);
	width: auto;
	max-width: 100%;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.72;
	transition: filter 200ms var(--eb-ease), opacity 200ms var(--eb-ease);
}

.eb-partners__link:hover {
	border-color: var(--eb-rule);
	box-shadow: 0 16px 30px -22px rgba(0, 28, 84, 0.4);
}

.eb-partners__link:hover img {
	filter: none;
	opacity: 1;
}

.eb-partners__name {
	font-size: 11px;
	line-height: 1.3;
	text-align: center;
	color: var(--eb-ink-55);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ——— Arama katmanı ——— */
.eb-panel--search .eb-panel__scrim {
	background: rgba(0, 15, 44, 0.6);
}

.eb-srch {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	padding: clamp(20px, 5vh, 64px) var(--eb-gut);
	background:
		radial-gradient(90% 70% at 50% 0%, var(--eb-navy-mid) 0%, rgba(11, 42, 102, 0) 60%),
		linear-gradient(180deg, var(--eb-navy) 0%, var(--eb-navy-deep) 100%);
	overflow-y: auto;
}

.eb-srch__x {
	position: absolute;
	top: clamp(14px, 2vw, 26px);
	right: clamp(14px, 2vw, 26px);
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-srch__x:hover {
	background: #fff;
	color: var(--eb-navy);
}

.eb-srch__inner {
	width: 100%;
	max-width: 760px;
	text-align: center;
	color: #fff;
}

.eb-srch__mark {
	width: 76px;
	height: auto;
	margin: 0 auto 18px;
}

.eb-srch__h {
	font-size: var(--eb-t-2xl);
	font-weight: 800;
	font-stretch: 84%;
	line-height: 1.18;
	letter-spacing: -0.015em;
	margin-bottom: 22px;
}

.eb-srch__form {
	position: relative;
	display: flex;
	align-items: center;
	height: 68px;
	padding: 7px 7px 7px 22px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
}

.eb-srch__form:focus-within {
	border-color: var(--eb-gold);
}

.eb-srch__input {
	flex: 1;
	min-width: 0;
	height: 100%;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: inherit;
	font-size: clamp(15px, 1.4vw, 18px);
	font-weight: 500;
}

.eb-srch__input::placeholder {
	color: rgba(255, 255, 255, 0.58);
}

.eb-srch__input::-webkit-search-cancel-button {
	filter: invert(1);
}

.eb-srch__go {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	height: 54px;
	padding: 0 22px;
	border-radius: 14px;
	background: var(--eb-gold);
	color: var(--eb-navy-deep);
	font-size: 14px;
	font-weight: 750;
	flex: none;
	transition: background-color 160ms var(--eb-ease);
}

.eb-srch__go:hover {
	background: #fff;
}

.eb-srch__hint {
	margin-top: 12px;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.6);
}

.eb-srch__res {
	margin-top: 22px;
	text-align: left;
}

.eb-srch__res.is-on {
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.eb-srch__rh {
	font-size: 11.5px;
	font-weight: 700;
	color: var(--eb-gold);
	margin-bottom: 10px;
}

.eb-srch__list {
	display: flex;
	flex-direction: column;
}

.eb-srch__list a {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 11px 12px;
	border-radius: 12px;
	color: #fff;
	transition: background-color 150ms var(--eb-ease);
}

.eb-srch__list a:hover {
	background: rgba(255, 255, 255, 0.12);
}

.eb-srch__rt {
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.4;
}

.eb-srch__rk {
	flex: none;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
}

.eb-srch__empty {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.7);
}

.eb-srch__all {
	display: inline-flex;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 700;
	color: var(--eb-gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.eb-srch__quick {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 26px;
}

.eb-srch__qh {
	width: 100%;
	margin-bottom: 4px;
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.55);
}

.eb-srch__qlink {
	padding: 9px 15px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 11px;
	color: #fff;
	font-size: 12.5px;
	font-weight: 600;
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-srch__qlink:hover {
	background: #fff;
	color: var(--eb-navy);
}

/* ——— Hızlı erişim katmanı ——— */
.eb-qp {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(1000px, 100%);
	display: grid;
	grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
	background: var(--eb-mist-2);
	box-shadow: -30px 0 60px -30px rgba(0, 15, 44, 0.55);
}

.eb-qp__x {
	position: absolute;
	top: 22px;
	left: -24px;
	z-index: 3;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	color: var(--eb-navy);
	box-shadow: 0 10px 24px -12px rgba(0, 15, 44, 0.5);
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-qp__x:hover {
	background: var(--eb-navy);
	color: #fff;
}

.eb-qp__lead {
	display: flex;
	flex-direction: column;
	padding: clamp(24px, 2.6vw, 38px) clamp(20px, 2vw, 30px);
	background: linear-gradient(170deg, var(--eb-navy) 0%, var(--eb-navy-deep) 100%);
	color: #fff;
	overflow-y: auto;
}

.eb-qp__kicker {
	font-size: 12px;
	font-weight: 400;
	color: var(--eb-on-navy-70);
}

.eb-qp__h {
	font-size: var(--eb-t-xl);
	font-weight: 800;
	font-stretch: 84%;
	line-height: 1.15;
	margin-bottom: 20px;
}

.eb-qp__prim {
	display: flex;
	flex-direction: column;
}

.eb-qp__prim a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	color: #fff;
	font-size: 13.5px;
	font-weight: 600;
	transition: padding-left 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-qp__prim a:hover {
	padding-left: 8px;
	color: var(--eb-gold);
}

.eb-qp__foot {
	margin-top: auto;
	padding-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.eb-qp__mail {
	color: var(--eb-on-navy-70);
	font-size: 13px;
}

.eb-qp__tel {
	color: #fff;
	font-size: 20px;
	font-weight: 750;
}

.eb-qp__soc {
	display: flex;
	gap: 8px;
	margin-top: 14px;
}

.eb-qp__soc a {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.12);
	transition: background-color 160ms var(--eb-ease);
}

.eb-qp__soc svg {
	width: 17px;
	height: 17px;
	fill: #fff;
}

.eb-qp__soc a:hover {
	background: var(--eb-gold);
}

.eb-qp__soc a:hover svg {
	fill: var(--eb-navy-deep);
}

.eb-qp__body {
	display: flex;
	flex-direction: column;
	padding: clamp(20px, 2.4vw, 34px) clamp(18px, 2.2vw, 32px);
	overflow-y: auto;
}

.eb-qp__tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.eb-qp__tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 46px;
	padding: 0 16px;
	border-radius: 13px;
	background: #fff;
	border: 1px solid var(--eb-rule-soft);
	color: var(--eb-navy);
	font-size: 12.5px;
	font-weight: 700;
	font-stretch: 92%;
	white-space: nowrap;
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-qp__tab.is-on {
	background: var(--eb-navy);
	border-color: var(--eb-navy);
	color: #fff;
}

.eb-qp__filter {
	position: relative;
	margin-bottom: 18px;
}

.eb-qp__ficon {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	color: var(--eb-ink-55);
	pointer-events: none;
}

.eb-qp__finput {
	width: 100%;
	height: 50px;
	padding: 0 16px 0 44px;
	border: 1px solid var(--eb-rule);
	border-radius: 13px;
	background: #fff;
	font-family: inherit;
	font-size: 14px;
	color: var(--eb-ink);
}

.eb-qp__finput:focus {
	outline: none;
	border-color: var(--eb-navy);
}

.eb-qp__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 12px;
}

.eb-qp__cell[hidden] {
	display: none;
}

.eb-qp__cell a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 100%;
	min-height: 116px;
	padding: 16px 12px;
	border: 1px solid var(--eb-rule-soft);
	border-radius: 16px;
	background: #fff;
	color: var(--eb-navy);
	text-align: center;
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease), transform 160ms var(--eb-ease);
}

.eb-qp__cell a:hover {
	background: var(--eb-navy);
	color: #fff;
	transform: translateY(-2px);
}

.eb-qp__cell .eb-i {
	width: 24px;
	height: 24px;
	color: inherit;
}

.eb-qp__name {
	font-size: 12.5px;
	font-weight: 650;
	line-height: 1.32;
}

.eb-qp.is-filtering .eb-qp__tabs {
	opacity: 0.45;
	pointer-events: none;
}

.eb-qp__none {
	margin-top: 20px;
	font-size: 14px;
	color: var(--eb-ink-55);
}

/* ——— İletişim katmanı ——— */
.eb-ct__lbl {
	margin: 18px 0 10px;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--eb-ink-55);
}

.eb-ct__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.eb-ct__list a {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 12px 14px;
	border: 1px solid var(--eb-rule-soft);
	border-radius: 14px;
	color: var(--eb-ink);
	transition: border-color 160ms var(--eb-ease), background-color 160ms var(--eb-ease);
}

.eb-ct__list a:hover {
	background: var(--eb-mist-2);
	border-color: var(--eb-rule);
}

.eb-ct__list .eb-i {
	width: 20px;
	height: 20px;
	color: var(--eb-navy);
	flex: none;
}

.eb-ct__k {
	display: block;
	font-size: 11px;
	color: var(--eb-ink-55);
}

.eb-ct__v {
	display: block;
	font-size: 14px;
	font-weight: 650;
	color: var(--eb-navy);
}

.eb-ct__soc {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
	gap: 8px;
}

.eb-ct__soc a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 13px;
	border: 1px solid var(--eb-rule-soft);
	border-radius: 12px;
	color: var(--eb-navy);
	font-size: 12.5px;
	font-weight: 650;
}

.eb-ct__soc svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.eb-ct__soc a:hover {
	background: var(--eb-navy);
	color: #fff;
}

/* ——— Mobil alt şerit ——— */
.eb-mbar {
	display: none;
}

.eb-mbar__bg {
	position: absolute;
	inset: auto 0 0;
	height: 54px;
	display: flex;
	align-items: flex-end;
	filter: drop-shadow(0 -8px 22px rgba(0, 15, 44, 0.18));
}

.eb-mbar__side {
	flex: 1;
	height: 54px;
	background: #fff;
}

.eb-mbar__notch {
	flex: none;
	width: 200px;
	height: 88px;
	display: block;
}

.eb-mbar__notch path {
	fill: #fff;
}

.eb-mbar__row {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	height: 54px;
}

.eb-mbar__group {
	display: flex;
	flex: 1;
	justify-content: space-around;
}

.eb-mbar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	padding: 6px 4px 8px;
	color: var(--eb-navy);
	min-width: 62px;
}

.eb-mbar__item .eb-i {
	width: 21px;
	height: 21px;
	color: var(--eb-navy);
	opacity: 0.85;
}

.eb-mbar__t {
	font-size: 9.5px;
	font-weight: 650;
	line-height: 1.15;
	text-align: center;
	max-width: 9ch;
}

.eb-mbar__hub {
	position: relative;
	z-index: 2;
	flex: none;
	width: 54px;
	height: 54px;
	margin: 0 12px 27px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--eb-navy);
	color: #fff;
	box-shadow: 0 10px 22px -10px rgba(0, 28, 84, 0.6);
}

.eb-mbar__hub .eb-i {
	width: 23px;
	height: 23px;
}

/* --------------------------------------------------------------------------
   20. Duyarlı düzen — 2026.2
   -------------------------------------------------------------------------- */

@media (max-width: 1300px) {
	.eb-quick__list {
		grid-template-columns: repeat(5, 1fr);
	}

	.eb-quick__item:nth-child(5n + 1) .eb-quick__link {
		border-left: 0;
	}
}

@media (max-width: 1180px) {
	.eb-aud__list li:nth-child(3) {
		display: none;
	}

	.eb-nav__link {
		font-size: 13px;
		padding-inline: 8px;
	}
}

@media (max-width: 1080px) {
	.eb-nws__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.eb-nws__cards {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1000px) {
	:root {
		--eb-head-h: 72px;
	}

	.eb-head__row--nav {
		display: none;
	}

	.eb-head__row--top {
		min-height: 72px;
		padding-top: 0;
	}

	.eb-aud,
	.eb-glass--contact {
		display: none;
	}

	.eb-head__actions {
		display: flex;
	}

	.eb-tools {
		gap: 6px;
	}

	.eb-mbar {
		position: fixed;
		inset: auto 0 0;
		z-index: 40;
		display: block;
		height: calc(54px + env(safe-area-inset-bottom, 0px));
		padding-bottom: env(safe-area-inset-bottom, 0px);
	}

	.eb-main,
	.eb-foot {
		--eb-mbar-pad: calc(58px + env(safe-area-inset-bottom, 0px));
	}

	.eb-foot {
		padding-bottom: var(--eb-mbar-pad);
	}

	.eb-qp {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
	}

	.eb-qp__lead {
		display: none;
	}

	.eb-qp__x {
		left: auto;
		right: 16px;
		top: 16px;
	}

	.eb-qp__body {
		padding-top: 76px;
	}
}

@media (max-width: 760px) {
	.eb-quick__list {
		grid-template-columns: repeat(3, 1fr);
	}

	.eb-quick__item:nth-child(3n + 1) .eb-quick__link {
		border-left: 0;
	}

	.eb-quick__link {
		min-height: 92px;
	}

	.eb-nws__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eb-annb__head {
		flex-wrap: wrap;
	}

	.eb-annb__all {
		/* Telefonda tam genişlik beyaz blok, kartlardan daha baskın
		   duruyordu; çerçeveli ince bir düğmeye indirildi. */
		order: 3;
		margin-left: 0;
		height: 38px;
		padding: 0 14px;
		background: transparent;
		border: 1px solid rgba(255, 255, 255, 0.5);
		color: #fff;
		font-size: 12.5px;
	}

	.eb-annb__all:hover,
	.eb-annb__all:focus-visible {
		background: #fff;
		color: var(--eb-navy);
		border-color: #fff;
	}

	.eb-annc__title {
		-webkit-line-clamp: 3;
	}

	.eb-car__nav--onnavy {
		margin-left: auto;
	}

	.eb-lead__body {
		flex-direction: column;
		gap: 0;
	}

	.eb-daybox--lift {
		align-self: flex-start;
	}

	.eb-lead__text {
		padding-top: 12px;
	}

	.eb-shead {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.eb-shead__side {
		width: 100%;
		justify-content: space-between;
	}

	.eb-srch__form {
		height: 60px;
		padding-left: 16px;
	}

	.eb-srch__go span {
		display: none;
	}

	.eb-srch__go {
		width: 48px;
		height: 46px;
		padding: 0;
		justify-content: center;
	}

	.eb-partners__track {
		padding-inline: 0;
	}

	.eb-car__nav--edge {
		display: none;
	}
}

@media (max-width: 520px) {
	.eb-brand__l1,
	.eb-brand__l2 {
		font-size: 12px;
	}

	.eb-brand__mark {
		width: 40px;
	}

	.eb-quick__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.eb-quick__item:nth-child(2n + 1) .eb-quick__link {
		border-left: 0;
	}

	.eb-nws__cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.eb-qp__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eb-mbar__t {
		font-size: 9px;
	}
}

/* ——— Hero: dairesel görsel seçici (Boğaziçi kalıbı) ——— */
.eb-hero__thumbs {
	right: clamp(10px, 1.8vw, 30px);
	gap: 14px;
}

.eb-hero__thumbs > li {
	border-radius: 50%;
}

.eb-hero__thumb {
	width: 62px;
	height: 62px;
	padding: 3px;
	clip-path: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	transition: width 280ms var(--eb-ease), height 280ms var(--eb-ease), background-color 220ms var(--eb-ease);
}

.eb-hero__thumb:hover {
	background: #fff;
	padding: 3px;
}

.eb-hero__thumbin {
	clip-path: none;
	border-radius: 50%;
}

.eb-hero__thumb[aria-selected="true"] {
	width: 80px;
	height: 80px;
	padding: 4px;
	background: #fff;
}

.eb-hero__thumb[aria-selected="true"]::after {
	content: "";
	position: absolute;
	inset: -7px;
	border: 2px solid var(--eb-gold);
	border-radius: 50%;
}

.eb-hero__thumb {
	position: relative;
}

/* Marka amblemi: mühür detayı küçük ölçekte kayboluyordu */
.eb-brand__mark {
	width: clamp(46px, 4.2vw, 62px);
}

.eb-head.is-solid .eb-brand__mark {
	width: clamp(42px, 3.4vw, 50px);
}

/* Duyuru kartı: ok, metnin altında kendi satırında durur */
.eb-annc__link {
	padding-bottom: 44px;
}

.eb-annc__go {
	right: 18px;
	bottom: 16px;
	width: 26px;
	height: 26px;
}

.eb-annc__link:hover .eb-annc__go {
	background: #fff;
	color: var(--eb-navy);
	border-color: #fff;
}


/* ——————————————————————————————————————————————————————————————
 * 21) MOBİL DÜZELTMELER
 * Küçük ekranda yatay kayma ve taşan öğeler.
 * ————————————————————————————————————————————————————————————— */

/* Kaydırmalı şeritler kendi içlerinde kayar; sayfanın kendisi yatay kaymaz. */
.eb-home,
.eb-main {
	overflow-x: clip;
}

/* Hero'nun dairesel görsel seçicisi yalnızca geniş ekranda durur.
   Telefonda kartlar ekranın dışına taşıyordu; ilerleme çubukları ve
   dokunmatik kaydırma aynı işi zaten görüyor. */
@media (max-width: 900px) {
	.eb-hero__thumbs {
		display: none;
	}

	.eb-hero__foot {
		padding-right: clamp(16px, 5vw, 28px);
	}
}

/* Alt gezinme çubuğu görünürken sayfa sonuna nefes payı. */
@media (max-width: 760px) {
	.eb-foot__bar {
		padding-bottom: var(--eb-mbar-pad, 0px);
	}
}

/* Alt şerit: etiketler tek satır, dokunma alanı 58px. */
@media (max-width: 760px) {
	.eb-mbar,
	.eb-mbar__bg,
	.eb-mbar__side,
	.eb-mbar__row {
		height: 58px;
	}

	.eb-mbar {
		height: calc(58px + env(safe-area-inset-bottom, 0px));
	}

	.eb-mbar__item {
		height: 58px;
		justify-content: center;
		padding: 0 4px;
		gap: 4px;
	}

	.eb-mbar__t {
		white-space: nowrap;
		max-width: none;
		font-size: 10px;
	}

	.eb-mbar__hub {
		margin-bottom: 29px;
	}

	.eb-main,
	.eb-foot {
		--eb-mbar-pad: calc(62px + env(safe-area-inset-bottom, 0px));
	}
}

/* Hızlı erişim sekmeleri telefonda yatay kaydırılır (üçü yan yana sığmıyor). */
@media (max-width: 760px) {
	.eb-qp__tabs {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		flex-wrap: nowrap;
	}

	.eb-qp__tabs::-webkit-scrollbar {
		display: none;
	}

	.eb-qp__tab {
		flex: none;
		scroll-snap-align: start;
	}
}


/* ——————————————————————————————————————————————————————————————
 * 22) BAYRAKLI DİL SEÇİCİ, TANITIM FİLMİ BANDI, BİRİM İKONLARI
 * ————————————————————————————————————————————————————————————— */

/* ——— Bayraklar ——— */
.eb-flag {
	display: block;
	width: 22px;
	height: 16px;
	border-radius: 2px;
	object-fit: cover;
	box-shadow: 0 0 0 1px rgba(0, 15, 44, 0.18);
}

/* ——— Dil seçici ——— */
.eb-lang__btn {
	width: 40px;
	min-width: 0;
	padding: 0;
	display: grid;
	place-items: center;
}

.eb-lang__cur {
	display: grid;
	place-items: center;
}

.eb-lang__cur .eb-flag {
	width: 24px;
	height: 17px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.eb-lang__menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 60;
	min-width: 232px;
	padding: 8px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 26px 60px -24px rgba(0, 15, 44, 0.5), 0 0 0 1px rgba(0, 15, 44, 0.08);
}

.eb-lang__item {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 9px 12px;
	border-radius: 11px;
	color: var(--eb-navy);
	font-size: 13.5px;
	font-weight: 650;
	text-align: left;
	transition: background-color 150ms var(--eb-ease);
}

.eb-lang__item:hover {
	background: var(--eb-mist-2);
}

.eb-lang__item[aria-checked="true"] {
	background: var(--eb-navy);
	color: #fff;
}

.eb-lang__item[aria-checked="true"] .eb-flag {
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.eb-lang__label {
	flex: 1;
}

.eb-lang__sep {
	margin: 8px 12px 4px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--eb-ink-55, #5c6474);
}

.eb-lang__note {
	margin: 6px 12px 4px;
	font-size: 11px;
	line-height: 1.45;
	color: var(--eb-ink-70);
}

[dir="rtl"] .eb-lang__item {
	text-align: right;
}

/* ——— Akademik birim sayaçlarının ikonu ——— */
.eb-tally__icon {
	display: block;
	margin-bottom: 10px;
	color: var(--eb-gold);
}

.eb-tally__icon .eb-i {
	width: 22px;
	height: 22px;
}

.eb-tally__item a:hover .eb-tally__icon {
	color: var(--eb-navy);
}

/* ——— Tanıtım filmi bandı ——— */
.eb-film {
	position: relative;
	isolation: isolate;
	min-height: clamp(300px, 34vw, 460px);
	display: grid;
	background: var(--eb-navy-deep);
	overflow: hidden;
}

.eb-film__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.eb-film__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 46%;
	/* Lacivert ikiliğe çevir: fotoğraf kurumsal renkte okunur. */
	/* Kaynak fotoğraf gece çekimi; lacivert ikilikte boğulmasın diye açılıyor. */
	filter: grayscale(1) brightness(1.55) contrast(1.02);
	animation: eb-film-zoom 26s ease-in-out infinite alternate;
}

.eb-film::before,
.eb-film::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

/* Gri fotoğrafı lacivere boyar (gerçek ikili baskı): parlaklık korunur,
   yalnızca renk değişir. multiply denendi, gece çekimi tamamen karardı. */
.eb-film::before {
	background: #123a86;
	mix-blend-mode: color;
	opacity: 0.9;
}

/* Metnin okunması için ölçülü bir perde. */
.eb-film::after {
	/* Metin ortada durduğu için perde de ortada koyu: kenarlarda fotoğraf
	   görünür kalır, başlığın arkası okunur olur. */
	background:
		radial-gradient(66% 52% at 50% 54%, rgba(0, 15, 44, 0.74), rgba(0, 15, 44, 0.14) 78%),
		linear-gradient(to bottom, rgba(0, 15, 44, 0.34), rgba(0, 15, 44, 0) 32%, rgba(0, 15, 44, 0.3));
}

@keyframes eb-film-zoom {
	from { transform: scale(1.02); }
	to { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
	.eb-film__bg img {
		animation: none;
	}
}

.eb-film__link {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: clamp(48px, 6vw, 84px) 20px;
	color: #fff;
	text-align: center;
}

.eb-film__play {
	display: grid;
	place-items: center;
	width: clamp(72px, 7vw, 92px);
	height: clamp(72px, 7vw, 92px);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.75);
	color: #fff;
	transition: transform 260ms var(--eb-ease), background-color 260ms var(--eb-ease), border-color 260ms var(--eb-ease), color 260ms var(--eb-ease);
}

.eb-film__play .eb-i {
	width: 30px;
	height: 30px;
	margin-left: 4px;
}

.eb-film__link:hover .eb-film__play,
.eb-film__link:focus-visible .eb-film__play {
	transform: scale(1.06);
	background: var(--eb-gold);
	border-color: var(--eb-gold);
	color: var(--eb-navy-deep);
}

.eb-film__text {
	display: block;
}

/* Sayfanın geri kalanı sıkıştırılmış (78-92%) genişlikte; bu bant bilinçli
   olarak geniş eksende duruyor, böylece "başka bir yazı" gibi okunuyor. */
.eb-film__h {
	display: block;
	font-size: clamp(24px, 3.1vw, 42px);
	font-weight: 600;
	font-stretch: 125%;
	letter-spacing: 0.005em;
	line-height: 1.18;
	text-shadow: 0 2px 18px rgba(0, 10, 30, 0.55);
	text-wrap: balance;
	max-width: 24ch;
	margin: 0 auto;
}

.eb-film__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	padding-bottom: 3px;
	border-bottom: 1.5px solid var(--eb-gold);
	font-size: 13px;
	font-weight: 700;
	color: var(--eb-gold-soft, #e5c477);
}

/* ——— Video katmanı ——— */
/* display:grid, tarayıcının [hidden] kuralını ezdiği için açıkça kapatılır. */
.eb-vid[hidden] {
	display: none;
}

.eb-vid {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: grid;
	place-items: center;
	padding: clamp(16px, 4vw, 48px);
}

.eb-vid__box {
	position: relative;
	width: min(1100px, 100%);
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
}

.eb-vid__frame,
.eb-vid__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.eb-vid__x {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(0, 15, 44, 0.72);
	color: #fff;
	backdrop-filter: blur(6px);
}

.eb-vid__x:hover {
	background: #fff;
	color: var(--eb-navy);
}

@media (max-width: 760px) {
	.eb-film__link {
		gap: 16px;
	}

	.eb-lang__menu {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		min-width: 210px;
	}
}


/* ——————————————————————————————————————————————————————————————
 * 23) DÜZELTMELER: SOSYAL İKONLAR, YÜKSEK KONTRAST, AÇILIR EKRAN
 * ————————————————————————————————————————————————————————————— */

/* Sosyal ikonlar alt bilgi sütununun içinde; ".eb-foot__col ul a" kuralı
   (display:block, 5px dolgu, 2px sol çizgi) daha özgül olduğu için ikonlar
   sola ve yukarı kayıyordu. */
.eb-foot__col .eb-social a,
.eb-foot__col .eb-social a:hover,
[dir="rtl"] .eb-foot__col .eb-social a,
[dir="rtl"] .eb-foot__col .eb-social a:hover {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	line-height: 1;
}

.eb-foot__col .eb-social a:hover {
	border-color: var(--eb-gold);
}

.eb-foot__col .eb-social svg {
	display: block;
	flex: none;
}

/* ——— Yüksek kontrast: yeni bölümler ———
   Eski kurallar kaldırılmış sınıfları hedefliyordu; kontrast anahtarı yeni
   bölümlerde neredeyse hiçbir şey değiştirmiyordu. */
html.eb-contrast .eb-nws,
html.eb-contrast .eb-units,
html.eb-contrast .eb-events,
html.eb-contrast .eb-partners {
	background: #fff !important;
}

html.eb-contrast .eb-annb,
html.eb-contrast .eb-quick,
html.eb-contrast .eb-stats,
html.eb-contrast .eb-foot,
html.eb-contrast .eb-foot__bar {
	background: #000 !important;
}

html.eb-contrast .eb-annb *,
html.eb-contrast .eb-quick *,
html.eb-contrast .eb-foot *,
html.eb-contrast .eb-film__link *,
html.eb-contrast .eb-lead__body * {
	color: #fff !important;
}

html.eb-contrast .eb-annc__link,
html.eb-contrast .eb-life__tile {
	background: #000 !important;
	border: 2px solid #fff !important;
	color: #fff !important;
	backdrop-filter: none !important;
}

html.eb-contrast .eb-lead__body {
	background: #000 !important;
}

html.eb-contrast .eb-ncard,
html.eb-contrast .eb-ecard,
html.eb-contrast .eb-tally,
html.eb-contrast .eb-partners__cell {
	border: 2px solid #000 !important;
	box-shadow: none !important;
}

html.eb-contrast :is(.eb-shead__h, .eb-shead__sub, .eb-ncard__title, .eb-ecard__title, .eb-ecard__ex, .eb-tally__n, .eb-tally__t, .eb-links a, .eb-units__head, .eb-partners__h, .eb-partners__sub, .eb-partners__name, .eb-date) {
	color: #000 !important;
}

html.eb-contrast :is(.eb-quick__icon, .eb-tally__icon, .eb-annb__h, .eb-film__cta) {
	color: #ffd400 !important;
}

html.eb-contrast .eb-film::before {
	opacity: 0;
}

html.eb-contrast .eb-film::after {
	background: rgba(0, 0, 0, 0.78);
}

html.eb-contrast .eb-home :focus-visible {
	outline: 3px solid #ffd400 !important;
	outline-offset: 2px !important;
}

/* Google Çeviri'nin fare üstü ipucu ve vurguları sayfayı bozmasın. */
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
	display: none !important;
}

.goog-text-highlight {
	background: none !important;
	box-shadow: none !important;
}

/* ——— Açılır ekran (bayram tebriği, önemli duyuru görseli) ——— */
.eb-pop[hidden] {
	display: none;
}

.eb-pop {
	position: fixed;
	inset: 0;
	z-index: 95;
	display: grid;
	place-items: center;
	padding: clamp(14px, 4vw, 40px);
}

.eb-pop__box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	max-width: min(780px, 100%);
	max-height: 100%;
	outline: none;
	animation: eb-pop-in 320ms var(--eb-ease) both;
}

@keyframes eb-pop-in {
	from { opacity: 0; transform: translateY(12px) scale(0.98); }
	to { opacity: 1; transform: none; }
}

.eb-pop__media {
	display: block;
	min-height: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.75);
}

.eb-pop__media img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: calc(100vh - 150px);
	max-height: calc(100svh - 150px);
	object-fit: contain;
}

.eb-pop__x {
	position: absolute;
	top: -14px;
	right: -14px;
	z-index: 2;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	color: var(--eb-navy);
	box-shadow: 0 8px 22px -8px rgba(0, 0, 0, 0.5);
	transition: background-color 160ms var(--eb-ease), color 160ms var(--eb-ease);
}

.eb-pop__x:hover {
	background: var(--eb-gold);
	color: var(--eb-navy-deep);
}

.eb-pop__go {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	background: #fff;
	color: var(--eb-navy);
	font-size: 14px;
	font-weight: 700;
	transition: background-color 160ms var(--eb-ease);
}

.eb-pop__go:hover {
	background: var(--eb-gold);
}

@media (max-width: 760px) {
	.eb-pop__x {
		top: -10px;
		right: -6px;
	}
}

[dir="rtl"] .eb-pop__x {
	right: auto;
	left: -14px;
}

html.eb-motion .eb-pop__box {
	animation: none;
}
