/**
 * Business Team — front end
 *
 * Everything is driven by CSS custom properties so a single inline block of
 * Brand Kit colours and fonts can re-skin the whole grid and every profile.
 * Defaults below are a quiet, professional baseline for when the Brand Kit is
 * empty; they are deliberately not the cream/terracotta AI default.
 */

.bizteam,
.bizteam-profile {
	--bt-accent: #2b6a72;
	--bt-ink: #16212c;
	--bt-position: #5a6672;
	--bt-body: #404a55;
	--bt-muted: #8b95a0;
	--bt-card: #ffffff;
	--bt-line: #e8ebef;
	--bt-page: #f5f6f8;
	--bt-social: var(--bt-accent);
	--bt-radius: 18px;
	--bt-head-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--bt-body-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ===================================================================== *
 * Grid
 * ===================================================================== */

.bizteam {
	font-family: var(--bt-body-font);
	color: var(--bt-body);
}
.bizteam *,
.bizteam *::before,
.bizteam *::after {
	box-sizing: border-box;
}
.bizteam-grid {
	display: grid;
	grid-template-columns: repeat(var(--bt-cols, 3), minmax(0, 1fr));
	gap: 26px;
}
.bizteam--cols-2 { --bt-cols: 2; }
.bizteam--cols-3 { --bt-cols: 3; }
.bizteam--cols-4 { --bt-cols: 4; }

@media (max-width: 1024px) {
	.bizteam--cols-4 .bizteam-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
	.bizteam--cols-3 .bizteam-grid,
	.bizteam--cols-4 .bizteam-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
	.bizteam-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ---- Card ---------------------------------------------------------- */

.bizteam-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--bt-card);
	border-radius: var(--bt-radius);
	padding: 30px 26px 26px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bizteam--align-center .bizteam-card { align-items: center; text-align: center; }
.bizteam--align-left .bizteam-card { align-items: flex-start; text-align: left; }

.bizteam--card-elevated .bizteam-card {
	box-shadow: 0 1px 2px rgba(16, 33, 50, 0.05), 0 14px 34px -22px rgba(16, 33, 50, 0.4);
	border: 1px solid color-mix(in srgb, var(--bt-line) 60%, transparent);
}
.bizteam--card-bordered .bizteam-card {
	border: 1px solid var(--bt-line);
}
.bizteam--card-minimal .bizteam-card {
	padding: 18px 6px;
	background: transparent;
}

/* The accent thread: a short rule that ties the card to the brand without
   relying on hover to be seen. */
.bizteam-card-body::before {
	content: "";
	display: block;
	width: 34px;
	height: 3px;
	border-radius: 3px;
	background: var(--bt-accent);
	margin: 0 0 14px;
	opacity: 0.9;
}
.bizteam--align-center .bizteam-card-body::before { margin-left: auto; margin-right: auto; }

/* Hover lift is an enhancement only — never used to reveal information. */
.bizteam--hover .bizteam-card:hover {
	transform: translateY(-4px);
}
.bizteam--hover.bizteam--card-elevated .bizteam-card:hover {
	box-shadow: 0 2px 4px rgba(16, 33, 50, 0.06), 0 22px 44px -20px rgba(16, 33, 50, 0.5);
}

/* ---- Photo --------------------------------------------------------- */

.bizteam-photo {
	position: relative;
	margin-bottom: 18px;
	line-height: 0;
}
.bizteam-photo a { display: inline-block; line-height: 0; }
.bizteam-photo-img {
	display: block;
	object-fit: cover;
	background: color-mix(in srgb, var(--bt-line) 70%, #fff);
}
.bizteam--img-circle .bizteam-photo-img {
	width: 132px;
	height: 132px;
	border-radius: 50%;
}
.bizteam--img-rounded .bizteam-photo-img {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 14px;
}
.bizteam--img-square .bizteam-photo-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 6px;
}
.bizteam--align-center.bizteam--img-circle .bizteam-photo { display: flex; justify-content: center; }

.bizteam-photo-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--bt-accent) 14%, #fff);
	color: var(--bt-accent);
	font-family: var(--bt-head-font);
	font-weight: 700;
	font-size: 2.2rem;
	letter-spacing: 0.02em;
}
.bizteam--img-rounded .bizteam-photo-fallback,
.bizteam--img-square .bizteam-photo-fallback {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	border-radius: 14px;
}

/* Cover: the photo fills the full width across the top of the card, with the
   name and details sitting in the lower half. The card clips the image to its
   own corners, so the picture meets the card edges cleanly. */
.bizteam--img-cover .bizteam-card {
	padding: 0;
	overflow: hidden;
}
.bizteam--img-cover .bizteam-photo {
	margin: 0;
	width: 100%;
}
.bizteam--img-cover .bizteam-photo a { display: block; }
.bizteam--img-cover .bizteam-photo-img,
.bizteam--img-cover .bizteam-photo-fallback {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	border-radius: 0;
	object-position: center 25%;
}
.bizteam--img-cover .bizteam-card-body {
	padding: 24px 26px 28px;
}
.bizteam--img-cover.bizteam--card-minimal .bizteam-card { overflow: visible; }
.bizteam--img-cover.bizteam--card-minimal .bizteam-photo-img,
.bizteam--img-cover.bizteam--card-minimal .bizteam-photo-fallback { border-radius: 12px; }
.bizteam--img-cover.bizteam--card-minimal .bizteam-card-body { padding: 18px 4px 4px; }

/* ---- Identity ------------------------------------------------------ */

.bizteam-card-body {
	display: flex;
	flex-direction: column;
	align-items: inherit;
	width: 100%;
}
.bizteam-name {
	margin: 0 0 4px;
	font-family: var(--bt-head-font);
	font-weight: 800;
	font-size: 1.2rem;
	line-height: 1.2;
	color: var(--bt-ink);
	letter-spacing: -0.015em;
}
.bizteam-name a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.bizteam-name a:hover { color: var(--bt-accent); }
.bizteam-name a:focus-visible {
	outline: 2px solid var(--bt-accent);
	outline-offset: 3px;
	border-radius: 3px;
}

.bizteam-position {
	margin: 0;
	font-family: var(--bt-head-font);
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bt-position);
}
.bizteam-tagline {
	margin: 8px 0 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--bt-muted);
}

/* ---- Labels -------------------------------------------------------- */

.bizteam-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}
.bizteam--align-center .bizteam-labels { justify-content: center; }
.bizteam-label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 11px;
	border-radius: 999px;
	border: 1px solid var(--bt-line);
	background: color-mix(in srgb, var(--bt-accent) 5%, #fff);
	color: var(--bt-position);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.4;
}
.bizteam-label i { font-size: 0.78em; color: var(--bt-accent); }

/* ---- Social -------------------------------------------------------- */

.bizteam-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}
.bizteam--align-center .bizteam-social { justify-content: center; }
.bizteam-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--bt-social);
	font-size: 1rem;
	text-decoration: none;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.bizteam-social-text { font-size: 0.78rem; font-weight: 600; padding: 0 4px; }

.bizteam--social-soft .bizteam-social-link {
	background: color-mix(in srgb, var(--bt-social) 12%, #fff);
}
.bizteam--social-soft .bizteam-social-link:hover {
	background: var(--bt-social);
	color: #fff;
}
.bizteam--social-outline .bizteam-social-link {
	border: 1.5px solid color-mix(in srgb, var(--bt-social) 45%, var(--bt-line));
}
.bizteam--social-outline .bizteam-social-link:hover {
	border-color: var(--bt-social);
	background: var(--bt-social);
	color: #fff;
}
.bizteam--social-plain .bizteam-social-link {
	width: auto;
	height: auto;
	border-radius: 0;
}
.bizteam--social-plain .bizteam-social-link:hover { color: var(--bt-ink); }
.bizteam--social-plain .bizteam-social { gap: 16px; }

.bizteam-social-link:focus-visible {
	outline: 2px solid var(--bt-accent);
	outline-offset: 2px;
}

/* ===================================================================== *
 * Profile page
 * ===================================================================== */

.bizteam-profile {
	font-family: var(--bt-body-font);
	color: var(--bt-body);
	background: var(--bt-page);
	padding: clamp(28px, 5vw, 64px) 20px clamp(40px, 6vw, 88px);
}
.bizteam-profile *,
.bizteam-profile *::before,
.bizteam-profile *::after { box-sizing: border-box; }
.bizteam-profile__inner {
	max-width: 1080px;
	margin: 0 auto;
}
.bizteam-profile__back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 26px;
	font-family: var(--bt-head-font);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bt-position);
	text-decoration: none;
}
.bizteam-profile__back::before { content: "\2190"; font-size: 1.1em; }
.bizteam-profile__back:hover { color: var(--bt-accent); }

/* ---- Masthead ------------------------------------------------------ */

.bizteam-profile__head {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
	padding-bottom: 36px;
	margin-bottom: 38px;
	border-bottom: 1px solid var(--bt-line);
}
.bizteam-profile__portrait {
	position: relative;
}
.bizteam-profile__portrait img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 20px;
	background: color-mix(in srgb, var(--bt-line) 70%, #fff);
}
.bizteam-profile__portrait-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 20px;
	background: color-mix(in srgb, var(--bt-accent) 14%, #fff);
	color: var(--bt-accent);
	font-family: var(--bt-head-font);
	font-weight: 700;
	font-size: 3.4rem;
}
.bizteam-profile__intro { padding-top: 4px; }
.bizteam-profile__eyebrow {
	margin: 0 0 12px;
	font-family: var(--bt-head-font);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bt-accent);
}
.bizteam-profile__name {
	margin: 0 0 16px;
	font-family: var(--bt-head-font);
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 2.9rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--bt-ink);
}
.bizteam-profile__intro .bizteam-labels { margin-top: 0; margin-bottom: 18px; }
.bizteam-profile__intro .bizteam-social { margin-top: 4px; justify-content: flex-start; }

/* ---- Body ---------------------------------------------------------- */

.bizteam-profile__body {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}
.bizteam-profile__write {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--bt-body);
}
.bizteam-profile__write > *:first-child { margin-top: 0; }
.bizteam-profile__write h2,
.bizteam-profile__write h3 {
	font-family: var(--bt-head-font);
	color: var(--bt-ink);
	letter-spacing: -0.01em;
}
.bizteam-profile__write a { color: var(--bt-accent); }

.bizteam-profile__aside {
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: sticky;
	top: 32px;
}
.bizteam-profile__group { }
.bizteam-profile__group-title {
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--bt-accent);
	font-family: var(--bt-head-font);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bt-ink);
}
.bizteam-profile__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.bizteam-profile__list li {
	padding: 12px 0;
	border-bottom: 1px solid var(--bt-line);
}
.bizteam-profile__list li:last-child { border-bottom: 0; }
.bizteam-profile__list-title {
	display: block;
	font-weight: 600;
	color: var(--bt-ink);
	line-height: 1.4;
}
.bizteam-profile__list-detail {
	display: block;
	margin-top: 2px;
	font-size: 0.88rem;
	color: var(--bt-muted);
}
.bizteam-profile__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.bizteam-profile__tag {
	padding: 6px 13px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--bt-accent) 10%, #fff);
	border: 1px solid color-mix(in srgb, var(--bt-accent) 22%, var(--bt-line));
	color: var(--bt-position);
	font-size: 0.82rem;
	font-weight: 600;
}

.bizteam-profile__aside .bizteam-social { margin-top: 0; }

@media (max-width: 900px) {
	.bizteam-profile__head { grid-template-columns: 200px 1fr; }
	.bizteam-profile__body { grid-template-columns: 1fr; }
	.bizteam-profile__aside { position: static; gap: 26px; }
}
@media (max-width: 560px) {
	.bizteam-profile__head {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.bizteam-profile__portrait { max-width: 220px; margin: 0 auto; }
	.bizteam-profile__intro .bizteam-labels,
	.bizteam-profile__intro .bizteam-social { justify-content: center; }
}

/* ===================================================================== *
 * Motion preference
 * ===================================================================== */

@media (prefers-reduced-motion: reduce) {
	.bizteam-card,
	.bizteam-social-link,
	.bizteam-name a {
		transition: none !important;
	}
	.bizteam--hover .bizteam-card:hover { transform: none; }
}

/* ===================================================================== *
 * DESIGNS
 *
 * Each design reuses the same card markup; the wrapper class restyles it.
 * These rules are appended last so they win over the Classic card/photo rules
 * at equal specificity. Colours and fonts still flow from the shared tokens,
 * so the Brand Kit re-skins every design.
 * ===================================================================== */

/* Neutralise the Classic cover-mode body padding for the alternative designs. */
.bizteam--design-portrait .bizteam-card-body,
.bizteam--design-colorblock .bizteam-card-body,
.bizteam--design-roster .bizteam-card-body,
.bizteam--design-editorial .bizteam-card-body { padding: 0; }

.bizteam--design-portrait .bizteam-card-body::before,
.bizteam--design-colorblock .bizteam-card-body::before,
.bizteam--design-roster .bizteam-card-body::before,
.bizteam--design-editorial .bizteam-card-body::before { display: none; }

/* ---- Portrait (large rounded photos, details beneath, no card) ----- */
.bizteam--design-portrait .bizteam-card {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}
.bizteam--design-portrait.bizteam--hover .bizteam-card:hover { transform: none; box-shadow: none; }
.bizteam--design-portrait .bizteam-photo {
	width: 100%;
	margin: 0 0 18px;
	aspect-ratio: 1 / 1;
	border-radius: 18px;
	overflow: hidden;
	background: color-mix(in srgb, var(--bt-accent) 10%, #eef0f1);
}
.bizteam--design-portrait.bizteam--cols-2 .bizteam-photo,
.bizteam--design-portrait.bizteam--cols-3 .bizteam-photo { aspect-ratio: 4 / 3; }
.bizteam--design-portrait .bizteam-photo a { display: block; width: 100%; height: 100%; }
.bizteam--design-portrait .bizteam-photo-img,
.bizteam--design-portrait .bizteam-photo-fallback {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	object-position: center 22%;
}
.bizteam--design-portrait .bizteam-photo-fallback { aspect-ratio: auto; background: transparent; }
.bizteam--design-portrait .bizteam-name { font-size: 1.35rem; }
.bizteam--design-portrait .bizteam-position {
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.95rem;
	font-weight: 500;
	margin-top: 3px;
}

/* ---- Colour block (photo on a rotating brand colour) --------------- */
.bizteam--design-colorblock .bizteam-card {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	align-items: stretch;
	text-align: left;
}
.bizteam--design-colorblock.bizteam--hover .bizteam-card:hover { transform: none; box-shadow: none; }
.bizteam--design-colorblock .bizteam-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 16px;
	border-radius: 3px;
	overflow: hidden;
	background: var(--bt-fill, var(--bt-accent));
}
.bizteam--design-colorblock .bizteam-photo a { display: block; width: 100%; height: 100%; }
.bizteam--design-colorblock .bizteam-photo-img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	object-position: center top;
}
.bizteam--design-colorblock .bizteam-photo-fallback {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
}
.bizteam--design-colorblock .bizteam-name { font-size: 1.3rem; }

/* ---- Circle roster (avatars on a coloured canvas, optional filter) -- */
.bizteam--design-roster {
	background: var(--bt-grid-bg, var(--bt-accent));
	color: #fff;
	padding: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 44px);
	border-radius: 18px;
}
.bizteam--design-roster .bizteam-grid {
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 30px 18px;
}
.bizteam--design-roster .bizteam-card {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	align-items: center;
	text-align: center;
}
.bizteam--design-roster.bizteam--hover .bizteam-card:hover { transform: none; }
.bizteam--design-roster .bizteam-photo {
	width: 142px;
	height: 142px;
	margin: 0 auto 14px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--bt-fill, rgba(255, 255, 255, 0.16));
}
.bizteam--design-roster .bizteam-photo a { display: block; width: 100%; height: 100%; }
.bizteam--design-roster .bizteam-photo-img,
.bizteam--design-roster .bizteam-photo-fallback {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
	object-fit: cover;
	background: transparent;
	color: #fff;
}
.bizteam--design-roster .bizteam-name {
	color: #fff;
	text-transform: uppercase;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
}
.bizteam--design-roster .bizteam-name a { color: #fff; }
.bizteam--design-roster .bizteam-name a:hover { color: rgba(255, 255, 255, 0.82); }
.bizteam--design-roster .bizteam-position {
	color: rgba(255, 255, 255, 0.82);
	text-transform: none;
	letter-spacing: 0;
	font-weight: 500;
	font-size: 0.9rem;
}
.bizteam--design-roster .bizteam-tagline { color: rgba(255, 255, 255, 0.7); }
.bizteam--design-roster .bizteam-social-link { color: #fff; }
.bizteam--design-roster .bizteam-labels { justify-content: center; }
.bizteam--design-roster .bizteam-label {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.24);
	color: #fff;
}
.bizteam--design-roster .bizteam-label i { color: #fff; }

/* Filter tabs */
.bizteam-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 22px;
	margin: 0 0 30px;
}
.bizteam-filter-btn {
	background: none;
	border: 0;
	padding: 4px 2px;
	font: inherit;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	cursor: pointer;
	transition: color 0.18s ease;
}
.bizteam-filter-btn.is-active,
.bizteam-filter-btn:hover { color: #fff; }
.bizteam-filter-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ---- Editorial (dark canvas, grouped by department) ---------------- */
.bizteam--design-editorial {
	background: var(--bt-grid-bg, #141416);
	color: #e9e9ea;
	padding: clamp(26px, 4vw, 52px) clamp(20px, 3vw, 40px);
	border-radius: 6px;
}
.bizteam--design-editorial .bizteam-ed-group {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 28px;
	padding: 32px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.bizteam--design-editorial .bizteam-ed-group:first-child { border-top: 0; padding-top: 6px; }
.bizteam-ed-head { display: flex; align-items: flex-start; gap: 7px; }
.bizteam-ed-label {
	font-family: var(--bt-head-font);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.66);
}
.bizteam-ed-count { font-size: 0.62rem; color: rgba(255, 255, 255, 0.42); }
.bizteam--design-editorial .bizteam-card {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	align-items: flex-start;
	text-align: left;
}
.bizteam--design-editorial.bizteam--hover .bizteam-card:hover { transform: none; }
.bizteam--design-editorial .bizteam-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 11px;
	border-radius: 4px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
}
.bizteam--design-editorial .bizteam-photo a { display: block; width: 100%; height: 100%; }
.bizteam--design-editorial .bizteam-photo-img,
.bizteam--design-editorial .bizteam-photo-fallback {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
	object-fit: cover;
	background: transparent;
	color: rgba(255, 255, 255, 0.5);
}
.bizteam--design-editorial .bizteam-name { color: #fff; font-size: 0.98rem; }
.bizteam--design-editorial .bizteam-name a { color: #fff; }
.bizteam--design-editorial .bizteam-name a:hover { color: rgba(255, 255, 255, 0.78); }
.bizteam--design-editorial .bizteam-position {
	color: rgba(255, 255, 255, 0.55);
	text-transform: none;
	letter-spacing: 0;
	font-weight: 500;
}
.bizteam--design-editorial .bizteam-social-link { color: rgba(255, 255, 255, 0.82); }
@media (max-width: 782px) {
	.bizteam--design-editorial .bizteam-ed-group { grid-template-columns: 1fr; gap: 14px; padding: 24px 0; }
}
