/**
 * Providence Toolkit — Team Member card.
 * All selectors are scoped under .plg- to avoid touching theme CSS.
 */

.plg-team-card {
	--plg-pad: 45px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
	padding: var(--plg-pad);
	text-align: center;
	transition: transform .3s ease, box-shadow .3s ease;
	height: 100%;
	box-sizing: border-box;
}

.plg-team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* Image — circle, centered, clickable */
.plg-team-image {
	display: inline-block;
	width: 220px;
	height: 220px;
	max-width: 100%;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 28px;
	line-height: 0;
}

.plg-team-card .plg-team-img {
	width: 220px;
	height: 220px;
	max-width: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

/* Content */
.plg-team-content {
	margin-bottom: 0;
}

.plg-team-title {
	display: inline-block;
	text-decoration: none;
}

.plg-team-title h4 {
	margin: 0 0 6px;
	font-size: 36px;
	line-height: 1.2;
	font-weight: 700;
	color: #14286E;
	transition: color .3s ease;
}

.plg-team-title:hover h4,
.plg-team-title:focus h4 {
	color: #14286E;
	text-decoration: none;
}

.plg-team-card .designation {
	margin: 0;
	font-size: 20px;
	color: #7b8594;
}

/* Social footer — full-width divider (matches reference design) */
.plg-team-social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin: 26px calc(var(--plg-pad) * -1) 0;
	padding: 20px var(--plg-pad) 0;
	border-top: 1px solid #ececec;
}

.plg-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #14286E;
	transition: color .3s ease, transform .3s ease;
}

.plg-social-link svg {
	width: 24px;
	height: 24px;
	display: block;
}

.plg-social-link:hover,
.plg-social-link:focus {
	color: #14286E;
	transform: translateY(-2px);
	opacity: .85;
}

/* Responsive */
@media (max-width: 1024px) {
	.plg-team-card {
		--plg-pad: 36px;
	}

	.plg-team-image,
	.plg-team-card .plg-team-img {
		width: 180px;
		height: 180px;
	}

	.plg-team-title h4 {
		font-size: 30px;
	}
}

@media (max-width: 600px) {
	.plg-team-card {
		--plg-pad: 28px;
	}

	.plg-team-image,
	.plg-team-card .plg-team-img {
		width: 160px;
		height: 160px;
	}

	.plg-team-title h4 {
		font-size: 26px;
	}

	.plg-team-card .designation {
		font-size: 18px;
	}
}
