/**
 * Team Members Widget
 * shop-zen-pro-addons
 *
 */

.szpa-team-wrap {
	width: 100%;
}

/* ─── Section heading (with flanking ••• dots) ─────────────────────── */
.szpa-team-head {
	text-align: center;
	margin-bottom: 32px;
}

.szpa-team-heading {
	font-family: "Outfit", "Inter", sans-serif;
	font-weight: 800;
	letter-spacing: -0.02em;
	font-size: 36px;
	line-height: 1.2;
	position: relative;
	display: inline-block;
	padding: 0 26px;
	color: #1A202C;
	--szpa-team-dot: #3A5F3F;
}

.szpa-team-heading::before,
.szpa-team-heading::after {
	content: '•••';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 9px;
	letter-spacing: 4px;
	color: var(--szpa-team-dot);
	opacity: 0.35;
	font-weight: 900;
}

.szpa-team-heading::before { left: 0; }
.szpa-team-heading::after  { right: 0; }

.szpa-team-subheading {
	color: #6B7280;
	max-width: 560px;
	margin: 6px auto 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
}

/* ─── Grid ────────────────────────────────────────────────────────── */
.szpa-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

/* ─── Card ────────────────────────────────────────────────────────── */
.szpa-team-card {
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
}

.szpa-team-hover .szpa-team-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ─── Image ───────────────────────────────────────────────────────── */
.szpa-team-img {
	height: 280px;
	overflow: hidden;
	background: #F6F6F6;
}

.szpa-team-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.szpa-team-card:hover .szpa-team-photo {
	transform: scale(1.05);
}

/* ─── Info ────────────────────────────────────────────────────────── */
.szpa-team-info {
	padding: 18px;
	flex: 1;
}

.szpa-team-name {
	font-family: "Outfit", "Inter", sans-serif;
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 2px;
	line-height: 1.3;
	color: #1A202C;
}

.szpa-team-role {
	display: block;
	font-size: 12px;
	color: #3A5F3F;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	line-height: 1.4;
}

.szpa-team-bio {
	font-size: 13px;
	color: #6B7280;
	margin: 8px 0 0;
	line-height: 1.6;
}

/* ─── Social ──────────────────────────────────────────────────────── */
.szpa-team-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}

.szpa-team-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #6B7280;
	font-size: 14px;
	line-height: 1;
	transition: color 0.2s ease, transform 0.2s ease;
}

.szpa-team-social a:hover {
	color: #3A5F3F;
	transform: translateY(-1px);
}

.szpa-team-social a i {
	line-height: 1;
}

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.szpa-team-heading { font-size: 30px; }
}

@media (max-width: 768px) {
	.szpa-team-heading { font-size: 28px; }
}

@media (max-width: 600px) {
	.szpa-team-heading { font-size: 26px; padding: 0; }
	.szpa-team-heading::before,
	.szpa-team-heading::after { display: none; }
}
