/* ════════════════════════════════════════════════════════════════════
   Single Executive — /executives/{slug}/
   single-executive.php
   ════════════════════════════════════════════════════════════════════ */

.gc-exec-single { background: var(--gc-bg); }
.gc-exec-single__inner {
	max-width: var(--gc-max-width, 1280px);
	margin: 0 auto;
	padding: 28px 32px 56px;
}
.gc-exec-single__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 32px;
	align-items: start;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.gc-exec-single__hero {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 8px;
}
.gc-exec-avatar {
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	background: var(--gc-bg-soft, #F8FAFC);
	line-height: 0;
}
.gc-exec-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gc-exec-avatar--initials { background: transparent; }
.gc-exec-avatar svg { width: 100%; height: 100%; display: block; }
.gc-exec-single__hero-id { min-width: 0; }
.gc-exec-single__badges { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.gc-exec-single__badge {
	padding: 3px 10px;
	background: var(--gc-bg-soft, #F8FAFC);
	color: var(--gc-muted, #64748B);
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 10px;
	font-weight: 700;
	border-radius: 5px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.gc-exec-single__badge--sector[data-sector="compliance"] { background: #FFF1F2; color: #b91c1c; }
.gc-exec-single__badge--sector[data-sector="operators"]  { background: #EFF6FF; color: #1e40af; }
.gc-exec-single__badge--sector[data-sector="studios"]    { background: #F5F3FF; color: #6d28d9; }
.gc-exec-single__badge--sector[data-sector="platforms"]  { background: #EEF2FF; color: #4338ca; }
.gc-exec-single__badge--sector[data-sector="affiliates"] { background: #FFFBEB; color: #b45309; }
.gc-exec-single__badge--sector[data-sector="payments"]   { background: #E0FAF7; color: #00A894; }
.gc-exec-single__badge--sector[data-sector="data"]       { background: #ECFDF5; color: #047857; }
.gc-exec-single__badge--sector[data-sector="investors"]  { background: #ECFEFF; color: #0891B2; }
.gc-exec-single__badge--sector[data-sector="land-based"] { background: #F1F5F9; color: #475569; }
.gc-exec-single__name {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 30px;
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -0.7px;
	line-height: 1.1;
	margin: 0 0 6px;
}
.gc-exec-single__role { font-size: 15px; color: var(--gc-text, #475569); }
.gc-exec-single__role strong { color: var(--gc-navy, #0D1B3E); }
.gc-exec-single__facts-row {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 12px;
	font-size: 12.5px;
	color: #94A3B8;
}
.gc-exec-single__based {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.gc-exec-single__based strong,
.gc-exec-single__inrole strong {
	color: var(--gc-text, #475569);
	font-weight: 600;
}

/* ── LEDE ─────────────────────────────────────────────────────── */
.gc-exec-single__lede {
	background: var(--gc-bg-soft, #F8FAFC);
	border-left: 3px solid var(--gc-primary, #00C6AE);
	padding: 14px 18px;
	border-radius: 0 8px 8px 0;
	margin: 22px 0;
}
.gc-exec-single__lede-eyebrow {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 10px;
	font-weight: 700;
	color: var(--gc-primary-dark, #00A894);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 4px;
}
.gc-exec-single__lede p { font-size: 14px; color: #334155; line-height: 1.6; margin: 0; }

/* ── BIO SECTIONS ─────────────────────────────────────────────── */
.gc-exec-single__section { margin-bottom: 20px; }
.gc-exec-single__section h2 {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 19px;
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -0.3px;
	margin: 0 0 10px;
}
.gc-exec-single__section p {
	font-size: 14px;
	color: #334155;
	line-height: 1.7;
	margin: 0 0 12px;
}
.gc-exec-single__section--content { font-size: 14px; line-height: 1.7; color: #334155; }

/* ── FAQ (uses theme .gc-faq-list / .gc-faq-item component) ───── */
.gc-exec-single__faq {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 0.5px solid var(--gc-border, #E4EAF2);
}
.gc-exec-single__faq h2 {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 19px;
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
	margin: 0 0 14px;
}
/* Theme's faq.css gives .gc-faq-body its gap, but we use .gc-faq-list —
   so define the column gap here for even spacing between items. */
.gc-exec-single__faq .gc-faq-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ── EDITORIAL NOTE ───────────────────────────────────────────── */
.gc-exec-single__editorial {
	max-width: var(--gc-max-width, 1280px);
	margin: 8px auto 0;
	padding: 0 32px 64px;
}
.gc-exec-single__editorial-inner {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--gc-bg-soft, #F8FAFC);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 12px;
	padding: 18px 22px;
}
.gc-exec-single__editorial-icon { color: #94A3B8; flex-shrink: 0; margin-top: 2px; }
.gc-exec-single__editorial p {
	margin: 0;
	font-size: 12.5px;
	color: var(--gc-muted, #64748B);
	line-height: 1.7;
}
.gc-exec-single__editorial strong { color: var(--gc-navy, #0D1B3E); }
.gc-exec-single__editorial a { color: var(--gc-primary-dark, #00A894); font-weight: 600; text-decoration: none; }
.gc-exec-single__editorial a:hover { text-decoration: underline; }

/* ── SIDEBAR ──────────────────────────────────────────────────── */
.gc-exec-single__side {
	position: sticky;
	top: 115px;
	align-self: start;
}
.gc-exec-single__card {
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 16px;
}
.gc-exec-single__card-head {
	padding: 14px 18px;
	border-bottom: 0.5px solid var(--gc-border, #E4EAF2);
	background: var(--gc-bg-soft, #F8FAFC);
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 13px;
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
}
.gc-exec-single__facts { margin: 0; padding: 6px 18px 14px; }
.gc-exec-single__facts dt {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 10px;
	font-weight: 700;
	color: #94A3B8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 12px;
}
.gc-exec-single__facts dd {
	margin: 3px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--gc-navy, #0D1B3E);
}
.gc-exec-single__card-foot {
	padding: 14px 18px;
	border-top: 0.5px solid var(--gc-border, #E4EAF2);
}
.gc-exec-single__linkedin {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 8px;
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 12.5px;
	font-weight: 600;
	color: var(--gc-navy, #0D1B3E);
	text-decoration: none;
	transition: border-color 150ms ease, color 150ms ease;
}
.gc-exec-single__linkedin:hover { border-color: #0A66C2; color: #0A66C2; }
.gc-exec-single__linkedin svg { color: #0A66C2; }

.gc-exec-single__note {
	font-size: 11px;
	color: #94A3B8;
	line-height: 1.55;
	padding: 0 4px;
}
.gc-exec-single__note a { color: var(--gc-primary-dark, #00A894); font-weight: 600; text-decoration: none; }
.gc-exec-single__note a:hover { text-decoration: underline; }

/* ── RELATED ──────────────────────────────────────────────────── */
.gc-exec-single__related { margin-top: 20px; }
.gc-exec-single__related-head {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 12px;
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}
.gc-exec-single__related-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 10px;
	text-decoration: none;
	margin-bottom: 8px;
	transition: border-color 150ms ease;
}
.gc-exec-single__related-item:hover { border-color: rgba(0, 198, 174, 0.4); }
.gc-exec-single__related-name {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 13px;
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
}
.gc-exec-single__related-role { font-size: 11px; color: var(--gc-muted, #64748B); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
	.gc-exec-single__grid { grid-template-columns: 1fr; gap: 28px; }
	/* Single column — drop sticky so the sidebar flows naturally below. */
	.gc-exec-single__side { position: static; top: auto; }
	/* Match the editorial note gutter to the content gutter so its width
	   lines up with the cards above. */
	.gc-exec-single__editorial { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 600px) {
	.gc-exec-single__inner { padding: 20px 18px 40px; }
	.gc-exec-single__hero { gap: 14px; }
	.gc-exec-single__name { font-size: 24px; }
	/* Same 18px gutter as .gc-exec-single__inner above. */
	.gc-exec-single__editorial { padding-left: 18px; padding-right: 18px; }
}

/* ── DARK MODE ────────────────────────────────────────────────── */
[data-theme="dark"] .gc-exec-single { background: var(--gc-bg); }
[data-theme="dark"] .gc-exec-single__name,
[data-theme="dark"] .gc-exec-single__section h2,
[data-theme="dark"] .gc-exec-single__faq h2 { color: #fff; }
[data-theme="dark"] .gc-exec-single__card,
[data-theme="dark"] .gc-exec-single__related-item { border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .gc-exec-single__card,
[data-theme="dark"] .gc-exec-single__related-item { background: var(--gc-bg-soft); }
[data-theme="dark"] .gc-exec-single__lede,
[data-theme="dark"] .gc-exec-single__editorial-inner,
[data-theme="dark"] .gc-exec-single__card-head { background: var(--gc-bg-soft); }
[data-theme="dark"] .gc-exec-single__lede p { color: rgba(255,255,255,0.78); }
[data-theme="dark"] .gc-exec-single__section p,
[data-theme="dark"] .gc-exec-single__section--content { color: rgba(255,255,255,0.72); }