/* ══════════════════════════════════════════════
   TEAM LIST BLOCK
   ══════════════════════════════════════════════ */

/* ── SECTION ── */
.tl-section {
	padding: 58px 0;
}

/* ── HEADER ── */
.tl-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
	margin-bottom: 53px;
}

.tl-eyebrow {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	line-height: 19.2px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: var(--clr-primary);
	text-align: center;
	display: block;
}

.tl-heading {
	font-family: var(--font-main);
	font-size: 50px;
	font-weight: 700;
	line-height: 57px;
	letter-spacing: -1.86px;
	color: var(--clr-white);
	text-align: center;
	margin-bottom: 0;
	max-width: 780px;
}

/* ── GRID WRAPPER ── */
.tl-grid-wrap {
	position: relative;
}

/* ── MEMBERS GRID ── */
.row.tl-members {
	--bs-gutter-x: 37px;
	--bs-gutter-y: 49px;
}

/* ── INDIVIDUAL MEMBER CARD ── */
.tl-member {
	display: flex;
	flex-direction: column;
	gap: 39px;
	align-items: flex-start;
}

.linkedIn-wrap > span {
    font-size: 14px;
}

.linkedIn-wrap > a{
	line-height: 1;
}

.linkedIn-wrap .icon{
	font-size: 20px;
	color: #fff;
	transition: all ease 0.3s;
}

.linkedIn-wrap .icon:hover{
	color: var(--clr-primary);
}

/* ── PHOTO ── */

/* Outer wrapper — sized to the circle, overflow visible so dots can bleed out */
.tl-photo-outer {
	position: relative;
	width: 268px;
	height: 268px;
	flex-shrink: 0;
}

/* Dot-grid vector — centred on the circle, larger so it radiates outward */
.tl-photo-dots {
	position: absolute;
	width: 547px;
	height: 547px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.82);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
	z-index: 0;
}

.tl-member:hover .tl-photo-dots {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.tl-photo-wrap {
	position: relative;
	z-index: 1;
	width: 268px;
	height: 268px;
	border-radius: 50%;
	border: 2px solid var(--clr-primary);
	overflow: hidden;
	background: #000;
}

.tl-photo,
.tl-photo-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
/* 	filter: grayscale(100%); */
	transition: filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.tl-member:hover .tl-photo {
	filter: grayscale(0%);
}

.tl-photo-placeholder {
	background: rgba(3, 207, 255, 0.08);
	filter: none;
}

/* ── TEXT BLOCK ── */
.tl-member-text {
	display: flex;
	flex-direction: column;
	gap: 21px;
}

/* Name + role stacked */
.tl-member-id {
	display: flex;
	flex-direction: column;
}

.tl-name {
	font-family: var(--font-body);
	font-size: 30px;
	font-weight: 700;
	line-height: 28.9px;
	color: var(--clr-primary);
	display: block;
}

.tl-role {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: var(--clr-primary);
	display: block;
}

.tl-bio {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	color: var(--clr-white);
}

.tl-bio p {
	margin: 0;
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 991.98px) {
	.tl-section { padding: 48px 0; }
	.tl-heading {
		font-size: 40px;
		line-height: 1.1;
		letter-spacing: -1px;
	}
	.tl-photo-outer,
	.tl-photo-wrap {
		width: 220px;
		height: 220px;
	}
	.tl-photo-dots {
		width: 450px;
		height: 450px;
	}
	.tl-name { font-size: 26px; }
}

@media (max-width: 767.98px) {
	.tl-section { padding: 40px 0; }
	.tl-header { gap: 20px; margin-bottom: 40px; }
	.tl-heading { font-size: 32px; }
	.tl-member { align-items: center; gap: 24px; }
	.tl-member-id { text-align: center; }
	.tl-photo-outer,
	.tl-photo-wrap {
		width: 200px;
		height: 200px;
	}
	.tl-photo-dots {
		width: 400px;
		height: 400px;
	}
	.tl-name { font-size: 24px; }
	.tl-role { font-size: 18px; }
	.tl-bio { font-size: 16px; line-height: 26px; }
	.tl-bio p { font-size: 16px; line-height: 26px; }
}

@media (max-width: 575.98px) {
	.tl-section { padding: 32px 0; }
	.tl-heading {
		font-size: 28px;
		letter-spacing: -0.5px;
		line-height: 1.15;
	}
	.row.tl-members {
		--bs-gutter-x: 0px;
		--bs-gutter-y: 40px;
	}
}
