/* ==========================================================================
   Ekibimiz — Frontend (kompakt)
   ========================================================================== */

.ek-bolum {
	padding: 24px 24px;
	box-sizing: border-box;
}
.ek-bolum * { box-sizing: border-box; }

.ek-bolum-baslik {
	text-align: center;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 3.2vw, 36px);
	line-height: 1.18;
	font-weight: 700;
	color: #0a2540;
	margin: 0 auto 24px;
	max-width: 760px;
}

/* Hiyerarşik satırlar (piramit): her satır ortalı, satırlar alt alta.
   Az kişili satırlar (örn. 2 kişi) yanlara açılır. */
.ek-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 860px;
	margin: 0 auto;
}
.ek-satir-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: flex-start;
	gap: 34px 30px;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}

.ek-uye {
	width: 140px;
	text-align: center;
}

/* Dairesel fotoğraf + alttaki mavi ışıma */
.ek-foto-wrap {
	position: relative;
	display: block;
	width: 140px;
	height: 140px;
	margin: 0 auto 12px;
	border-radius: 50%;
	text-decoration: none;
	transition: transform .3s ease;
}
.ek-foto-wrap::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	width: 84%;
	height: 46%;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(0,104,255,.55), rgba(0,104,255,0) 70%);
	filter: blur(10px);
	z-index: 0;
	transition: opacity .3s ease;
	opacity: .9;
}
.ek-foto {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	background: #eef2f7;
}
.ek-foto-harf {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0a2540;
	color: #fff;
	font-weight: 700;
	font-size: 46px;
	text-transform: uppercase;
}

/* LinkedIn rozeti (hover'da belirir) */
.ek-linkedin-rozet {
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 2;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #0a66c2;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 12px rgba(10,102,194,.45);
	opacity: 0;
	transform: scale(.6);
	transition: opacity .25s ease, transform .25s ease;
}
.ek-linkedin-rozet svg { width: 15px; height: 15px; }

a.ek-foto-wrap { cursor: pointer; }
a.ek-foto-wrap:hover { transform: translateY(-5px) scale(1.03); }
a.ek-foto-wrap:hover::before { opacity: 1; }
a.ek-foto-wrap:hover .ek-linkedin-rozet { opacity: 1; transform: scale(1); }

.ek-isim {
	color: #0a2540;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .2px;
	line-height: 1.3;
}
.ek-unvan {
	color: #5a6b80;
	font-size: 13px;
	margin-top: 3px;
}

.ek-bos { text-align: center; color: #8a93a0; padding: 40px; }

/* Responsive */
@media (max-width: 640px) {
	.ek-bolum { padding: 18px 16px; }
	.ek-grid { gap: 24px 24px; }
	.ek-uye { width: 110px; }
	.ek-foto-wrap { width: 110px; height: 110px; }
	.ek-foto-harf { font-size: 38px; }
	.ek-isim { font-size: 14px; }
}
