/* =========================================================
   Ekibimiz sayfası — Figma tasarımına göre
   ========================================================= */

.page-team {
	background: var(--color-bg);
	padding-block: 72px 0;
}

.container--narrow {
	max-width: 1100px;
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

/* ---------- HERO ---------- */
.team-hero {
	text-align: center;
	margin-bottom: 56px;
}

.team-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.32em;
	color: #2f5da8;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.team-hero__title {
	font-family: var(--font-heading);
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--color-heading);
	margin-bottom: 18px;
}

.team-hero__subtitle {
	font-size: 16px;
	line-height: 1.7;
	color: #111;
	max-width: 720px;
	margin-inline: auto;
}

/* ---------- GRUP BÖLÜMLERİ ---------- */
.team-group {
	margin-bottom: 52px;
}

.team-group__title {
	font-family: var(--font-heading);
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 500;
	color: var(--color-heading);
	padding-bottom: 14px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--color-border);
}

/* ---------- IZGARA ---------- */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px 22px;
}

/* ---------- ÜYE KARTI ---------- */
.team-card {
	text-align: center;
}

.team-card__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: 14px;
	overflow: hidden;
	background: var(--color-section);
	margin-bottom: 16px;
	display: grid;
	place-items: center;
}

.team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.team-card:hover .team-card__photo img {
	transform: scale(1.04);
}

.team-card__ph {
	font-family: var(--font-heading);
	font-size: 44px;
	color: var(--color-muted);
	text-transform: uppercase;
}

.team-card__name {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-heading);
	margin-bottom: 4px;
	line-height: 1.3;
}

.team-card__role {
	font-size: 13.5px;
	color: #111;
	line-height: 1.45;
}

/* ---------- CTA ---------- */
.team-cta {
	background: var(--color-navy);
	color: #fff;
	padding: 72px 0;
}

.team-cta__eyebrow {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.team-cta__title {
	font-family: var(--font-heading);
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 500;
	margin-bottom: 12px;
}

.team-cta__text {
	font-size: 15px;
	color: #fff;
	max-width: 520px;
	margin: 0 auto 28px;
	line-height: 1.6;
}

.team-cta__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.team-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 15px;
	font-weight: 600;
	padding: 13px 26px;
	border-radius: 10px;
	transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.team-cta__btn--wa {
	background: #fff;
	color: var(--color-navy);
}

.team-cta__btn--wa:hover {
	background: #eef1f6;
	transform: translateY(-1px);
}

.team-cta__btn--phone {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.team-cta__btn--phone:hover {
	border-color: #fff;
	transform: translateY(-1px);
}

/* ---------- DUYARLI ---------- */
@media (max-width: 900px) {
	.team-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 16px;
	}

	.team-cta {
		padding: 48px 0;
	}
}
