/**
 * Stack Team — Elementor Widget Styles
 * Prefix: stkm-
 */

/* ═══════════════════════════════════════════
   BASE — Grid & Column System
═══════════════════════════════════════════ */

.stkm-wrap {
	--stkm-cols: 3;
	--stkm-gap: 24px;
	display: grid;
	grid-template-columns: repeat(var(--stkm-cols), 1fr);
	gap: var(--stkm-gap);
}

.stkm-cols-1 { --stkm-cols: 1; }
.stkm-cols-2 { --stkm-cols: 2; }
.stkm-cols-3 { --stkm-cols: 3; }
.stkm-cols-4 { --stkm-cols: 4; }
.stkm-cols-5 { --stkm-cols: 5; }

@media (max-width: 1024px) {
	.stkm-tablet-1 { --stkm-cols: 1; }
	.stkm-tablet-2 { --stkm-cols: 2; }
	.stkm-tablet-3 { --stkm-cols: 3; }
	.stkm-tablet-4 { --stkm-cols: 4; }
}

@media (max-width: 767px) {
	.stkm-mobile-1 { --stkm-cols: 1; }
	.stkm-mobile-2 { --stkm-cols: 2; }
}

/* ═══════════════════════════════════════════
   BASE — Card Resets
═══════════════════════════════════════════ */

.stkm-card {
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stkm-photo {
	position: relative;
	overflow: hidden;
}

.stkm-photo img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.stkm-initials {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 220px;
	font-size: 2.5rem;
	font-weight: 700;
	background: #e8eaf6;
	color: #3949ab;
	letter-spacing: 2px;
}

.stkm-body {
	padding: 20px;
}

.stkm-name {
	margin: 0 0 4px;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
}

.stkm-role {
	display: block;
	font-size: 0.82rem;
	margin-bottom: 6px;
	opacity: 0.7;
}

.stkm-dept {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 2px 8px;
	border-radius: 20px;
	margin-bottom: 8px;
	background: #e3f2fd;
	color: #1565c0;
}

.stkm-bio {
	margin: 8px 0;
	font-size: 0.85rem;
	line-height: 1.6;
	color: inherit;
}

.stkm-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
}

.stkm-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	font-size: 14px;
	border-radius: 50%;
	background: #f1f3f4;
	color: #555;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, transform 0.2s;
}

.stkm-social:hover {
	background: #1a73e8;
	color: #fff;
	transform: translateY(-2px);
}

.stkm-contact {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	color: inherit;
	text-decoration: none;
	margin-top: 6px;
	opacity: 0.75;
}

.stkm-contact:hover { opacity: 1; }

.stkm-dept-badge {
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 3px;
	background: rgba(0,0,0,0.6);
	color: #fff;
}

.stkm-empty { color: #999; font-style: italic; }

/* ═══════════════════════════════════════════
   01 — Grid Classic
═══════════════════════════════════════════ */

.stkm-grid-classic .stkm-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.stkm-grid-classic .stkm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ═══════════════════════════════════════════
   02 — Grid Centered
═══════════════════════════════════════════ */

.stkm-grid-centered .stkm-card {
	background: #fff;
	border: 1px solid #dde3ee;
	border-radius: 10px;
	text-align: center;
}

.stkm-grid-centered .stkm-body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stkm-grid-centered .stkm-socials {
	justify-content: center;
}

.stkm-grid-centered .stkm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════
   03 — Grid Minimal
═══════════════════════════════════════════ */

.stkm-grid-minimal .stkm-card {
	background: transparent;
	border-top: 2px solid #222;
	border-radius: 0;
}

.stkm-grid-minimal .stkm-photo img,
.stkm-grid-minimal .stkm-initials { border-radius: 0; }

.stkm-grid-minimal .stkm-body { padding: 14px 0; }

.stkm-grid-minimal .stkm-dept {
	background: none;
	color: #999;
	padding: 0;
	font-size: 0.72rem;
	text-transform: uppercase;
}

.stkm-grid-minimal .stkm-name { font-size: 1rem; }

/* ═══════════════════════════════════════════
   04 — Grid Dark
═══════════════════════════════════════════ */

.stkm-grid-dark .stkm-card {
	background: #1a1a2e;
	border: 1px solid #2d2d4e;
	border-radius: 8px;
	color: #e0e0e0;
}

.stkm-grid-dark .stkm-name { color: #fff; }
.stkm-grid-dark .stkm-role { color: #a0a0c0; opacity: 1; }

.stkm-grid-dark .stkm-dept {
	background: #2d2d4e;
	color: #7c83d0;
}

.stkm-grid-dark .stkm-bio { color: #bbb; }

.stkm-grid-dark .stkm-social {
	background: #2d2d4e;
	color: #a0a0c0;
}

.stkm-grid-dark .stkm-social:hover {
	background: #7c83d0;
	color: #fff;
}

.stkm-grid-dark .stkm-card:hover {
	border-color: #5c63c2;
	box-shadow: 0 8px 24px rgba(92,99,194,0.25);
}

.stkm-grid-dark .stkm-initials {
	background: #2d2d4e;
	color: #7c83d0;
}

/* ═══════════════════════════════════════════
   05 — Grid Bordered
═══════════════════════════════════════════ */

.stkm-grid-bordered .stkm-card {
	background: #fff;
	border: 2px solid #333;
	border-radius: 0;
}

.stkm-grid-bordered .stkm-card:hover {
	background: #f8f8f8;
	box-shadow: 4px 4px 0 #333;
	transform: translate(-2px, -2px);
}

/* ═══════════════════════════════════════════
   06 — Grid Outlined
═══════════════════════════════════════════ */

.stkm-grid-outlined .stkm-card {
	background: transparent;
	border: 1.5px solid currentColor;
	border-color: #6a6aff;
	border-radius: 8px;
	color: #333;
}

.stkm-grid-outlined .stkm-dept {
	background: transparent;
	border: 1px solid #6a6aff;
	color: #6a6aff;
}

.stkm-grid-outlined .stkm-social {
	background: transparent;
	border: 1px solid #6a6aff;
	color: #6a6aff;
}

.stkm-grid-outlined .stkm-social:hover {
	background: #6a6aff;
	color: #fff;
}

.stkm-grid-outlined .stkm-card:hover {
	background: rgba(106,106,255,0.04);
	box-shadow: 0 6px 20px rgba(106,106,255,0.2);
}

/* ═══════════════════════════════════════════
   07 — Grid Gradient
═══════════════════════════════════════════ */

.stkm-grid-gradient .stkm-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: 1px solid transparent;
	border-radius: 12px;
	color: #fff;
}

.stkm-grid-gradient .stkm-name { color: #fff; }
.stkm-grid-gradient .stkm-role { color: rgba(255,255,255,0.8); opacity: 1; }
.stkm-grid-gradient .stkm-bio  { color: rgba(255,255,255,0.85); }

.stkm-grid-gradient .stkm-dept {
	background: rgba(255,255,255,0.2);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.4);
}

.stkm-grid-gradient .stkm-social {
	background: rgba(255,255,255,0.2);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.3);
}

.stkm-grid-gradient .stkm-social:hover {
	background: #fff;
	color: #764ba2;
}

.stkm-grid-gradient .stkm-initials {
	background: rgba(255,255,255,0.15);
	color: #fff;
}

.stkm-grid-gradient .stkm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(118,75,162,0.4);
}

/* ═══════════════════════════════════════════
   08 — Overlay
═══════════════════════════════════════════ */

.stkm-overlay .stkm-card {
	border: 2px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}

.stkm-overlay .stkm-photo {
	position: relative;
}

.stkm-overlay .stkm-photo img,
.stkm-overlay .stkm-initials {
	height: 280px;
}

.stkm-overlay .stkm-body {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
	color: #fff;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stkm-overlay .stkm-card:hover .stkm-body { opacity: 1; }

.stkm-overlay .stkm-name  { color: #fff; margin-bottom: 2px; }
.stkm-overlay .stkm-role  { color: rgba(255,255,255,0.85); opacity: 1; }
.stkm-overlay .stkm-dept  { display: none; }
.stkm-overlay .stkm-dept-badge {
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,0.3);
}

.stkm-overlay .stkm-social {
	background: rgba(255,255,255,0.2);
	color: #fff;
}

.stkm-overlay .stkm-social:hover {
	background: #fff;
	color: #333;
}

/* ═══════════════════════════════════════════
   09 — Overlay Slide
═══════════════════════════════════════════ */

.stkm-overlay-slide .stkm-card {
	border: 2px solid #ccc;
	border-radius: 8px;
	overflow: hidden;
}

.stkm-overlay-slide .stkm-photo img,
.stkm-overlay-slide .stkm-initials {
	height: 280px;
}

.stkm-overlay-slide .stkm-body {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 20px;
	background: linear-gradient(to top, #1a237e, rgba(26,35,126,0.85) 60%, transparent);
	color: #fff;
	transform: translateY(100%);
	transition: transform 0.35s ease;
}

.stkm-overlay-slide .stkm-card:hover .stkm-body {
	transform: translateY(0);
}

.stkm-overlay-slide .stkm-name  { color: #fff; }
.stkm-overlay-slide .stkm-role  { color: rgba(255,255,255,0.8); opacity: 1; }
.stkm-overlay-slide .stkm-dept  { display: none; }
.stkm-overlay-slide .stkm-dept-badge {
	background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.35);
}
.stkm-overlay-slide .stkm-social {
	background: rgba(255,255,255,0.15);
	color: #fff;
}
.stkm-overlay-slide .stkm-social:hover { background: #fff; color: #1a237e; }

/* ═══════════════════════════════════════════
   10 — Overlay Dark
═══════════════════════════════════════════ */

.stkm-overlay-dark .stkm-card {
	border: 2px solid #222;
	border-radius: 4px;
	overflow: hidden;
}

.stkm-overlay-dark .stkm-photo img,
.stkm-overlay-dark .stkm-initials {
	height: 280px;
	filter: brightness(0.55);
	transition: filter 0.3s;
}

.stkm-overlay-dark .stkm-card:hover .stkm-photo img,
.stkm-overlay-dark .stkm-card:hover .stkm-initials {
	filter: brightness(0.35);
}

.stkm-overlay-dark .stkm-body {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	color: #fff;
}

.stkm-overlay-dark .stkm-name  { color: #fff; }
.stkm-overlay-dark .stkm-role  { color: rgba(255,255,255,0.75); opacity: 1; }
.stkm-overlay-dark .stkm-dept  { display: none; }
.stkm-overlay-dark .stkm-dept-badge {
	background: rgba(255,255,255,0.15);
	border: 1px solid rgba(255,255,255,0.3);
}
.stkm-overlay-dark .stkm-bio   { color: rgba(255,255,255,0.8); }
.stkm-overlay-dark .stkm-socials { justify-content: center; }
.stkm-overlay-dark .stkm-social {
	background: rgba(255,255,255,0.15);
	color: #fff;
}
.stkm-overlay-dark .stkm-social:hover { background: #fff; color: #222; }

/* ═══════════════════════════════════════════
   11 — Horizontal
═══════════════════════════════════════════ */

.stkm-horizontal .stkm-card {
	display: flex;
	flex-direction: row;
	background: #fff;
	border: 1px solid #dde3ee;
	border-radius: 10px;
}

.stkm-horizontal .stkm-photo {
	flex: 0 0 160px;
	min-width: 160px;
}

.stkm-horizontal .stkm-photo img,
.stkm-horizontal .stkm-initials {
	height: 100%;
	min-height: 160px;
	border-radius: 10px 0 0 10px;
}

.stkm-horizontal .stkm-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.stkm-horizontal .stkm-card:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.1);
	transform: translateX(4px);
}

@media (max-width: 767px) {
	.stkm-horizontal .stkm-card { flex-direction: column; }
	.stkm-horizontal .stkm-photo { flex: none; }
	.stkm-horizontal .stkm-photo img,
	.stkm-horizontal .stkm-initials { height: 200px; border-radius: 10px 10px 0 0; }
}

/* ═══════════════════════════════════════════
   12 — Horizontal Alt
═══════════════════════════════════════════ */

.stkm-horizontal-alt .stkm-card {
	display: flex;
	flex-direction: row;
	background: #f9f9fb;
	border: 2px solid #e0e4f4;
	border-radius: 12px;
}

.stkm-horizontal-alt .stkm-card:nth-child(even) {
	flex-direction: row-reverse;
}

.stkm-horizontal-alt .stkm-photo {
	flex: 0 0 180px;
}

.stkm-horizontal-alt .stkm-photo img,
.stkm-horizontal-alt .stkm-initials {
	height: 100%;
	min-height: 180px;
}

.stkm-horizontal-alt .stkm-card:nth-child(odd) .stkm-photo img,
.stkm-horizontal-alt .stkm-card:nth-child(odd) .stkm-initials {
	border-radius: 10px 0 0 10px;
}

.stkm-horizontal-alt .stkm-card:nth-child(even) .stkm-photo img,
.stkm-horizontal-alt .stkm-card:nth-child(even) .stkm-initials {
	border-radius: 0 10px 10px 0;
}

.stkm-horizontal-alt .stkm-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.stkm-horizontal-alt .stkm-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════
   13 — Horizontal Compact
═══════════════════════════════════════════ */

.stkm-horizontal-compact .stkm-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	padding: 14px;
	background: #fff;
	border: 1px solid #e4e8f0;
	border-radius: 8px;
}

.stkm-horizontal-compact .stkm-photo {
	flex: 0 0 70px;
	min-width: 70px;
}

.stkm-horizontal-compact .stkm-photo img,
.stkm-horizontal-compact .stkm-initials {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	min-height: unset;
}

.stkm-horizontal-compact .stkm-body { padding: 0; }
.stkm-horizontal-compact .stkm-bio  { display: none; }

.stkm-horizontal-compact .stkm-card:hover {
	border-color: #aab4d6;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════
   14 — Circle Card
═══════════════════════════════════════════ */

.stkm-circle-card .stkm-card {
	background: #fff;
	border: 1px solid #e0e8f0;
	border-radius: 16px;
	text-align: center;
	padding-top: 24px;
}

.stkm-circle-card .stkm-body { align-items: center; display: flex; flex-direction: column; }

.stkm-circle-card .stkm-photo {
	margin: 0 auto;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #e3eaf8;
}

.stkm-circle-card .stkm-photo img,
.stkm-circle-card .stkm-initials {
	width: 110px;
	height: 110px;
	border-radius: 50%;
}

.stkm-circle-card .stkm-socials { justify-content: center; }

.stkm-circle-card .stkm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════
   15 — Circle Minimal
═══════════════════════════════════════════ */

.stkm-circle-minimal .stkm-card {
	background: transparent;
	border-top: 3px solid #5c6bc0;
	border-bottom: 1px solid #e8eaf6;
	border-left: none;
	border-right: none;
	border-radius: 0;
	text-align: center;
	padding-top: 20px;
}

.stkm-circle-minimal .stkm-photo {
	margin: 0 auto 12px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #c5cae9;
}

.stkm-circle-minimal .stkm-photo img,
.stkm-circle-minimal .stkm-initials {
	width: 90px;
	height: 90px;
	border-radius: 50%;
}

.stkm-circle-minimal .stkm-body { display: flex; flex-direction: column; align-items: center; padding-top: 0; }
.stkm-circle-minimal .stkm-dept { background: none; padding: 0; color: #5c6bc0; }
.stkm-circle-minimal .stkm-bio  { font-size: 0.82rem; }
.stkm-circle-minimal .stkm-socials { justify-content: center; }

/* ═══════════════════════════════════════════
   16 — Avatar Left
═══════════════════════════════════════════ */

.stkm-avatar-left .stkm-card {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 16px;
	padding: 18px;
	background: #fff;
	border: 1px solid #dde5f3;
	border-left: 4px solid #5c6bc0;
	border-radius: 8px;
}

.stkm-avatar-left .stkm-photo {
	flex: 0 0 64px;
	min-width: 64px;
}

.stkm-avatar-left .stkm-photo img,
.stkm-avatar-left .stkm-initials {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	min-height: unset;
}

.stkm-avatar-left .stkm-body { flex: 1; padding: 0; }
.stkm-avatar-left .stkm-bio  { font-size: 0.82rem; }

.stkm-avatar-left .stkm-card:hover {
	border-left-color: #3949ab;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════
   17 — Neon
═══════════════════════════════════════════ */

.stkm-neon .stkm-card {
	background: #0a0a1a;
	border: 1px solid #00e5ff;
	border-radius: 8px;
	color: #e0e0e0;
	box-shadow: 0 0 10px rgba(0,229,255,0.15), inset 0 0 20px rgba(0,229,255,0.03);
	transition: box-shadow 0.3s, border-color 0.3s;
}

.stkm-neon .stkm-card:hover {
	border-color: #00e5ff;
	box-shadow: 0 0 20px rgba(0,229,255,0.4), inset 0 0 30px rgba(0,229,255,0.08);
}

.stkm-neon .stkm-name {
	color: #00e5ff;
	text-shadow: 0 0 8px rgba(0,229,255,0.6);
}

.stkm-neon .stkm-role {
	color: #b39ddb;
	opacity: 1;
}

.stkm-neon .stkm-dept {
	background: rgba(0,229,255,0.1);
	color: #00e5ff;
	border: 1px solid rgba(0,229,255,0.3);
}

.stkm-neon .stkm-bio { color: #aaa; }

.stkm-neon .stkm-social {
	background: rgba(0,229,255,0.1);
	color: #00e5ff;
	border: 1px solid rgba(0,229,255,0.25);
}

.stkm-neon .stkm-social:hover {
	background: #00e5ff;
	color: #0a0a1a;
	box-shadow: 0 0 12px rgba(0,229,255,0.5);
}

.stkm-neon .stkm-initials {
	background: rgba(0,229,255,0.08);
	color: #00e5ff;
}

/* ═══════════════════════════════════════════
   18 — Glass
═══════════════════════════════════════════ */

.stkm-glass .stkm-wrap,
.stkm-wrap.stkm-glass {
	padding: 20px;
}

.stkm-glass .stkm-card {
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 16px;
	color: inherit;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stkm-glass .stkm-card:hover {
	background: rgba(255,255,255,0.22);
	box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.stkm-glass .stkm-dept {
	background: rgba(255,255,255,0.25);
	border: 1px solid rgba(255,255,255,0.4);
}

.stkm-glass .stkm-social {
	background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.35);
}

.stkm-glass .stkm-social:hover {
	background: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════
   19 — Bold Border
═══════════════════════════════════════════ */

.stkm-bold .stkm-card {
	background: #fff;
	border: 3px solid #111;
	border-radius: 0;
}

.stkm-bold .stkm-dept {
	background: #111;
	color: #fff;
	border-radius: 0;
}

.stkm-bold .stkm-name { font-size: 1.1rem; }

.stkm-bold .stkm-social {
	background: transparent;
	border: 2px solid #111;
	border-radius: 0;
	color: #111;
}

.stkm-bold .stkm-social:hover {
	background: #111;
	color: #fff;
}

.stkm-bold .stkm-card:hover {
	box-shadow: 5px 5px 0 #111;
	transform: translate(-3px, -3px);
}

/* ═══════════════════════════════════════════
   20 — Polaroid
═══════════════════════════════════════════ */

.stkm-polaroid .stkm-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 10px 10px 20px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.stkm-polaroid .stkm-card:nth-child(odd)  { transform: rotate(-1.5deg); }
.stkm-polaroid .stkm-card:nth-child(even) { transform: rotate(1.5deg); }

.stkm-polaroid .stkm-card:hover {
	transform: rotate(0deg) scale(1.04);
	box-shadow: 0 10px 30px rgba(0,0,0,0.18);
	z-index: 2;
}

.stkm-polaroid .stkm-photo { padding: 0; }

.stkm-polaroid .stkm-photo img,
.stkm-polaroid .stkm-initials {
	height: 200px;
	border-radius: 2px;
}

.stkm-polaroid .stkm-body {
	padding: 10px 4px 0;
	text-align: center;
}

.stkm-polaroid .stkm-body { display: flex; flex-direction: column; align-items: center; }
.stkm-polaroid .stkm-socials { justify-content: center; }
.stkm-polaroid .stkm-bio  { font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   21 — Shadow Card
═══════════════════════════════════════════ */

.stkm-shadow .stkm-card {
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	transition: box-shadow 0.3s, transform 0.3s;
}

.stkm-shadow .stkm-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}

/* ═══════════════════════════════════════════
   22 — Gradient Border
═══════════════════════════════════════════ */

.stkm-gradient-border .stkm-card {
	background: #fff;
	border: 2px solid transparent;
	border-radius: 12px;
	position: relative;
}

.stkm-gradient-border .stkm-card::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 14px;
	padding: 2px;
	background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.stkm-gradient-border .stkm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.stkm-gradient-border .stkm-dept {
	background: linear-gradient(135deg, #f093fb, #f5576c);
	color: #fff;
}

/* ═══════════════════════════════════════════
   23 — Profile Card
═══════════════════════════════════════════ */

.stkm-profile .stkm-card {
	background: #fff;
	border: 1px solid #e2e8f4;
	border-radius: 16px;
	text-align: center;
	overflow: visible;
}

.stkm-profile .stkm-cover {
	height: 90px;
	background: linear-gradient(120deg, #4f46e5, #7c3aed);
	border-radius: 16px 16px 0 0;
	margin: 0;
}

.stkm-profile .stkm-photo {
	margin: -50px auto 0;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
	position: relative;
	z-index: 1;
}

.stkm-profile .stkm-photo img,
.stkm-profile .stkm-initials {
	width: 90px;
	height: 90px;
	border-radius: 50%;
}

.stkm-profile .stkm-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 12px;
}

.stkm-profile .stkm-socials { justify-content: center; }

.stkm-profile .stkm-card:hover {
	box-shadow: 0 8px 24px rgba(79,70,229,0.2);
}

/* ═══════════════════════════════════════════
   24 — Business Card
═══════════════════════════════════════════ */

.stkm-business-card .stkm-wrap {
	grid-template-columns: repeat(var(--stkm-cols), 1fr);
}

.stkm-business-card .stkm-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	border: 1px solid #0f3460;
	border-radius: 10px;
	color: #fff;
	min-height: 100px;
}

.stkm-business-card .stkm-photo {
	flex: 0 0 80px;
	min-width: 80px;
}

.stkm-business-card .stkm-photo img,
.stkm-business-card .stkm-initials {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid #0f3460;
	min-height: unset;
}

.stkm-business-card .stkm-initials {
	background: #0f3460;
	color: #e94560;
}

.stkm-business-card .stkm-body { padding: 0; flex: 1; }
.stkm-business-card .stkm-name { color: #fff; font-size: 1rem; }
.stkm-business-card .stkm-role { color: #e94560; opacity: 1; }

.stkm-business-card .stkm-dept {
	background: rgba(233,69,96,0.2);
	color: #e94560;
	border: 1px solid rgba(233,69,96,0.3);
}

.stkm-business-card .stkm-bio  { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

.stkm-business-card .stkm-social {
	background: rgba(255,255,255,0.1);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.2);
}

.stkm-business-card .stkm-social:hover {
	background: #e94560;
	border-color: #e94560;
}

.stkm-business-card .stkm-card:hover {
	border-color: #e94560;
	box-shadow: 0 6px 20px rgba(233,69,96,0.3);
}

@media (max-width: 767px) {
	.stkm-business-card .stkm-card { flex-direction: column; text-align: center; }
	.stkm-business-card .stkm-socials { justify-content: center; }
}

/* ═══════════════════════════════════════════
   25 — Magazine
═══════════════════════════════════════════ */

.stkm-magazine .stkm-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	overflow: hidden;
}

.stkm-magazine .stkm-photo img,
.stkm-magazine .stkm-initials {
	height: 260px;
	transition: transform 0.4s ease;
}

.stkm-magazine .stkm-card:hover .stkm-photo img,
.stkm-magazine .stkm-card:hover .stkm-initials {
	transform: scale(1.05);
}

.stkm-magazine .stkm-body {
	border-top: 3px solid #e53935;
	padding: 16px;
}

.stkm-magazine .stkm-dept {
	background: #e53935;
	color: #fff;
	border-radius: 0;
	font-size: 0.68rem;
}

.stkm-magazine .stkm-name { font-size: 1.1rem; }

/* ═══════════════════════════════════════════
   26 — Numbered
═══════════════════════════════════════════ */

.stkm-numbered .stkm-card {
	background: #fff;
	border: 1px solid #e8eaee;
	border-radius: 8px;
	padding-top: 10px;
}

.stkm-number-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #4f46e5;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(79,70,229,0.4);
}

.stkm-numbered .stkm-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   27 — Ribbon
═══════════════════════════════════════════ */

.stkm-ribbon .stkm-card {
	background: #fff;
	border: 1px solid #dde4f0;
	border-radius: 8px;
}

.stkm-ribbon-wrap {
	position: absolute;
	top: 0; right: 0;
	overflow: hidden;
	width: 90px;
	height: 90px;
	pointer-events: none;
	z-index: 3;
}

.stkm-ribbon {
	position: absolute;
	top: 18px;
	right: -20px;
	width: 100px;
	padding: 4px 0;
	background: #f44336;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	transform: rotate(45deg);
	letter-spacing: 0.05em;
}

.stkm-ribbon .stkm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════
   28 — Hex Photo
═══════════════════════════════════════════ */

.stkm-hex .stkm-card {
	background: #fff;
	border: 1px solid #dde4f5;
	border-radius: 12px;
	text-align: center;
	padding-top: 24px;
}

.stkm-hex .stkm-photo {
	width: 110px;
	height: 110px;
	margin: 0 auto 12px;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	overflow: hidden;
	border-radius: 0;
}

.stkm-hex .stkm-photo img,
.stkm-hex .stkm-initials {
	width: 110px;
	height: 110px;
	border-radius: 0;
}

.stkm-hex .stkm-body { display: flex; flex-direction: column; align-items: center; }
.stkm-hex .stkm-socials { justify-content: center; }

.stkm-hex .stkm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════
   29 — Split
═══════════════════════════════════════════ */

.stkm-split .stkm-card {
	display: flex;
	flex-direction: row;
	background: #fff;
	border: 1px solid #e0e6f0;
	border-radius: 12px;
	overflow: hidden;
	min-height: 220px;
}

.stkm-split .stkm-photo {
	flex: 0 0 45%;
}

.stkm-split .stkm-photo img,
.stkm-split .stkm-initials {
	height: 100%;
	min-height: 220px;
	border-radius: 0;
}

.stkm-split .stkm-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-left: 3px solid #e0e6f0;
}

.stkm-split .stkm-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.stkm-split .stkm-card:hover .stkm-photo img {
	transform: scale(1.05);
}

@media (max-width: 767px) {
	.stkm-split .stkm-card { flex-direction: column; }
	.stkm-split .stkm-body { border-left: none; border-top: 3px solid #e0e6f0; }
}

/* ═══════════════════════════════════════════
   30 — Metro Tiles
═══════════════════════════════════════════ */

.stkm-metro .stkm-card {
	position: relative;
	overflow: hidden;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 4px;
	min-height: 200px;
}

.stkm-metro .stkm-photo img,
.stkm-metro .stkm-initials {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.stkm-metro .stkm-body {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 16px;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	color: #fff;
}

.stkm-metro .stkm-name  { color: #fff; font-size: 0.95rem; }
.stkm-metro .stkm-role  { color: rgba(255,255,255,0.75); opacity: 1; font-size: 0.78rem; }
.stkm-metro .stkm-dept  {
	background: rgba(255,255,255,0.2);
	color: #fff;
	font-size: 0.65rem;
}
.stkm-metro .stkm-bio    { display: none; }
.stkm-metro .stkm-social {
	background: rgba(255,255,255,0.15);
	color: #fff;
	width: 28px; height: 28px;
	font-size: 12px;
}

.stkm-metro .stkm-card:hover {
	border-color: rgba(255,255,255,0.5);
}

.stkm-metro .stkm-card:hover .stkm-photo img {
	transform: scale(1.08);
}

.stkm-metro .stkm-initials {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

/* ═══════════════════════════════════════════
   31 — List
═══════════════════════════════════════════ */

.stkm-list .stkm-wrap {
	grid-template-columns: 1fr;
}

.stkm-list .stkm-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #e8eaf0;
	border-radius: 8px;
	transition: background 0.2s, box-shadow 0.2s;
}

.stkm-list .stkm-photo {
	flex: 0 0 80px;
	min-width: 80px;
}

.stkm-list .stkm-photo img,
.stkm-list .stkm-initials {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	min-height: unset;
}

.stkm-list .stkm-body { flex: 1; padding: 0; }
.stkm-list .stkm-bio  { max-width: 600px; }
.stkm-list .stkm-socials { flex-direction: row; }

.stkm-list .stkm-card:hover {
	background: #f8f9ff;
	box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}

/* ═══════════════════════════════════════════
   32 — List Bordered
═══════════════════════════════════════════ */

.stkm-list-bordered .stkm-wrap {
	grid-template-columns: 1fr;
}

.stkm-list-bordered .stkm-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	padding: 18px 20px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #e0e6f0;
	border-radius: 0;
}

.stkm-list-bordered .stkm-card:first-child {
	border-top: 1px solid #e0e6f0;
}

.stkm-list-bordered .stkm-photo {
	flex: 0 0 72px;
	min-width: 72px;
}

.stkm-list-bordered .stkm-photo img,
.stkm-list-bordered .stkm-initials {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 2px solid #e0e6f0;
	min-height: unset;
}

.stkm-list-bordered .stkm-body { flex: 1; padding: 0; }
.stkm-list-bordered .stkm-bio  { font-size: 0.82rem; max-width: 600px; }

.stkm-list-bordered .stkm-card:hover {
	background: #f8f9ff;
}

/* ═══════════════════════════════════════════
   33 — Compact
═══════════════════════════════════════════ */

.stkm-compact .stkm-card {
	background: #fff;
	border: 1px solid #eaeef5;
	border-radius: 6px;
	padding: 0;
}

.stkm-compact .stkm-photo img,
.stkm-compact .stkm-initials {
	height: 140px;
}

.stkm-compact .stkm-body {
	padding: 12px 14px;
}

.stkm-compact .stkm-name { font-size: 0.9rem; }
.stkm-compact .stkm-role { font-size: 0.75rem; }
.stkm-compact .stkm-bio  { display: none; }

.stkm-compact .stkm-social {
	width: 28px;
	height: 28px;
	font-size: 11px;
}

.stkm-compact .stkm-card:hover {
	box-shadow: 0 6px 18px rgba(0,0,0,0.1);
	transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   34 — Sidebar
═══════════════════════════════════════════ */

.stkm-sidebar .stkm-wrap {
	grid-template-columns: 1fr;
}

.stkm-sidebar .stkm-card {
	display: flex;
	flex-direction: row;
	background: #fff;
	border: 1px solid #dde4f0;
	border-radius: 10px;
	overflow: hidden;
}

.stkm-sidebar .stkm-photo {
	flex: 0 0 200px;
}

.stkm-sidebar .stkm-photo img,
.stkm-sidebar .stkm-initials {
	height: 100%;
	min-height: 200px;
	border-radius: 0;
}

.stkm-sidebar .stkm-body {
	flex: 1;
	border-left: 4px solid #4f46e5;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.stkm-sidebar .stkm-dept {
	background: #eef0fd;
	color: #4f46e5;
}

.stkm-sidebar .stkm-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
	.stkm-sidebar .stkm-card { flex-direction: column; }
	.stkm-sidebar .stkm-photo { flex: none; }
	.stkm-sidebar .stkm-photo img,
	.stkm-sidebar .stkm-initials { height: 200px; min-height: unset; }
	.stkm-sidebar .stkm-body { border-left: none; border-top: 4px solid #4f46e5; }
}

/* ═══════════════════════════════════════════
   35 — Neumorphic
═══════════════════════════════════════════ */

.stkm-neumorphic .stkm-card {
	background: #e8ecf1;
	border: 1px solid #d0d5de;
	border-radius: 20px;
	box-shadow:
		6px 6px 14px rgba(163,177,198,0.6),
		-6px -6px 14px rgba(255,255,255,0.9);
	text-align: center;
	transition: box-shadow 0.3s, transform 0.3s;
}

.stkm-neumorphic .stkm-card:hover {
	box-shadow:
		2px 2px 6px rgba(163,177,198,0.6),
		-2px -2px 6px rgba(255,255,255,0.9);
	transform: scale(0.98);
}

.stkm-neumorphic .stkm-photo {
	width: 100px;
	height: 100px;
	margin: 20px auto 0;
	border-radius: 50%;
	overflow: hidden;
	box-shadow:
		4px 4px 10px rgba(163,177,198,0.6),
		-4px -4px 10px rgba(255,255,255,0.9);
}

.stkm-neumorphic .stkm-photo img,
.stkm-neumorphic .stkm-initials {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.stkm-neumorphic .stkm-initials { background: #dde3ea; color: #5c6bc0; }

.stkm-neumorphic .stkm-body { display: flex; flex-direction: column; align-items: center; }
.stkm-neumorphic .stkm-socials { justify-content: center; }

.stkm-neumorphic .stkm-dept {
	background: #e8ecf1;
	color: #5c6bc0;
	box-shadow:
		inset 2px 2px 5px rgba(163,177,198,0.5),
		inset -2px -2px 5px rgba(255,255,255,0.8);
	border: none;
}

.stkm-neumorphic .stkm-social {
	background: #e8ecf1;
	color: #666;
	border: none;
	box-shadow:
		3px 3px 7px rgba(163,177,198,0.6),
		-3px -3px 7px rgba(255,255,255,0.9);
}

.stkm-neumorphic .stkm-social:hover {
	box-shadow:
		inset 2px 2px 5px rgba(163,177,198,0.5),
		inset -2px -2px 5px rgba(255,255,255,0.8);
	color: #5c6bc0;
	background: #e8ecf1;
}


/* ─────────────────────────────────────────────
   NEW LAYOUTS 36–40
   These styles are appended to ensure backward compatibility.
───────────────────────────────────────────── */

/* 36 — Outline Contrast */
.stkm-outline-contrast .stkm-card {
	background: #fff;
	border: 3px solid #111;
	box-shadow: 8px 8px 0 #1110;
	border-radius: 12px;
}
.stkm-outline-contrast .stkm-card:hover {
	transform: translateY(-4px);
	box-shadow: 12px 12px 0 #1111;
}
.stkm-outline-contrast .stkm-photo img,
.stkm-outline-contrast .stkm-initials {
	border-bottom: 3px solid #111;
}
.stkm-outline-contrast .stkm-dept {
	background: #111;
	color: #fff;
	border-radius: 4px;
}

/* 37 — Tilt Hover */
.stkm-tilt .stkm-card {
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(0,0,0,0.12);
	transform-origin: center;
}
.stkm-tilt .stkm-card:hover { transform: rotate(-1.5deg) translateY(-6px); }
.stkm-tilt .stkm-photo img { transform-origin: center; }
.stkm-tilt .stkm-card:hover .stkm-photo img { transform: scale(1.08) rotate(1.5deg); }
.stkm-tilt .stkm-body { position: relative; }
.stkm-tilt .stkm-body:before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(99,102,241,0.12), rgba(236,72,153,0.12));
	opacity: 0; pointer-events: none; border-radius: 0 0 14px 14px;
	transition: opacity 0.25s ease;
}
.stkm-tilt .stkm-card:hover .stkm-body:before { opacity: 1; }

/* 38 — Accent Top */
.stkm-accent-top .stkm-card { border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; }
.stkm-accent-top .stkm-card:before {
	content: '';
	display: block;
	height: 6px;
	background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
}
.stkm-accent-top .stkm-photo img,
.stkm-accent-top .stkm-initials { height: 200px; }
.stkm-accent-top .stkm-name { letter-spacing: 0.02em; }

/* 39 — Corner Badge */
.stkm-corner-badge .stkm-card { border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.stkm-corner-badge .stkm-card:after {
	content: '';
	position: absolute; top: 0; right: 0;
	border-left: 38px solid transparent;
	border-bottom: 38px solid transparent;
	border-top: 38px solid #7c3aed; /* purple corner */
}
/* Reposition dept label as a floating badge */
.stkm-corner-badge .stkm-dept {
	position: absolute; top: 10px; left: 10px;
	background: #7c3aed; color: #fff; border-radius: 6px; padding: 4px 10px; box-shadow: 0 4px 10px rgba(124,58,237,0.35);
	z-index: 2;
}
.stkm-corner-badge .stkm-body { padding-top: 16px; }

/* 40 — Minimal Line (text forward, hide photo) */
.stkm-minimal-line .stkm-photo { display: none; }
.stkm-minimal-line .stkm-card { border-left: 4px solid #111; padding-left: 0; }
.stkm-minimal-line .stkm-body { padding: 14px 16px 16px 18px; }
.stkm-minimal-line .stkm-name { font-size: 1.1rem; }
.stkm-minimal-line .stkm-role { margin: 2px 0 0; opacity: 0.8; }
.stkm-minimal-line .stkm-dept { background: transparent; color: #111; padding: 0; border-radius: 0; letter-spacing: 0.12em; }
.stkm-minimal-line .stkm-social { width: 28px; height: 28px; border-radius: 4px; }

/* Hover tweaks shared */
.stkm-outline-contrast .stkm-social:hover,
.stkm-tilt .stkm-social:hover,
.stkm-accent-top .stkm-social:hover,
.stkm-corner-badge .stkm-social:hover,
.stkm-minimal-line .stkm-social:hover {
	transform: translateY(-2px);
}
