/*
 * VS Outreach — Booking Widget Frontend Styles
 * Modern, responsive, brand-konform (Navy + Gold).
 * Scoped via .vsb-* prefix, kollisionsfrei.
 */

.vsb-widget, .vsb-widget * { box-sizing: border-box; }
.vsb-widget {
	font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: #1F2937;
	font-size: 15px;
	line-height: 1.55;
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 32px -16px rgba(15,43,84,0.18);
	border: 1px solid rgba(15,43,84,0.06);
	padding: 32px 36px;
	position: relative;
}
.vsb-widget [x-cloak] { display: none !important; }

/* Lean variant for /booking/ page — bigger, less padding */
.vsb-variant-lean {
	max-width: 820px;
	padding: 40px 44px;
	box-shadow: 0 24px 60px -20px rgba(15,43,84,0.22);
}

/* ------ Reschedule banner ------ */
.vsb-reschedule-banner {
	background: linear-gradient(135deg, #0F2B54, #1B3A6B);
	color: #fff;
	border-radius: 10px;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 22px;
}
.vsb-reschedule-banner span:first-child { font-size: 24px; }
.vsb-reschedule-banner strong { display: block; font-size: 14px; font-weight: 700; }
.vsb-reschedule-banner .vsb-text-sm { font-size: 12px; opacity: .85; margin-top: 2px; }

/* ------ Progress ------ */
.vsb-progress {
	margin: -8px -8px 28px;
}
.vsb-progress-meta {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	font-weight: 600;
	color: #6B7280;
	letter-spacing: 0.02em;
	margin: 0 0 8px;
}
.vsb-progress-meta strong { color: #0F2B54; font-weight: 700; }
.vsb-progress-track {
	height: 4px;
	background: #F1F5F9;
	border-radius: 999px;
	overflow: hidden;
}
.vsb-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #0F2B54, #D4A843);
	border-radius: 999px;
	transition: width .4s cubic-bezier(.4,0,.2,1);
}

/* ------ Substeps (Pre-Quali) ------ */
.vsb-substep { animation: vsb-fade .25s ease-out; }
@keyframes vsb-fade {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}
.vsb-q-title {
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 800;
	color: #0F2B54;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
	line-height: 1.25;
}
.vsb-q-sub {
	color: #6B7280;
	font-size: 14px;
	margin: 0 0 24px;
}

/* Big option cards (für Auto-Advance) */
.vsb-option-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px;
	border: 2px solid #E5E7EB;
	border-radius: 12px;
	cursor: pointer;
	transition: all .15s;
	background: #fff;
	width: 100%;
	text-align: left;
	font-family: inherit;
	color: #1F2937;
	font-size: 15px;
	margin-bottom: 8px;
}
.vsb-option-card:hover {
	border-color: #0F2B54;
	background: #F8FAFC;
	transform: translateX(2px);
}
.vsb-option-card-label { flex: 1; font-weight: 500; }
.vsb-option-card-arrow {
	color: #94A3B8;
	font-size: 18px;
	transition: transform .15s;
}
.vsb-option-card:hover .vsb-option-card-arrow {
	color: #D4A843;
	transform: translateX(4px);
}
.vsb-option-card.selected {
	border-color: #0F2B54;
	background: linear-gradient(180deg, #0F2B54, #1B3A6B);
	color: #fff;
	transform: scale(.98);
}
.vsb-option-card.selected .vsb-option-card-arrow { color: #D4A843; }

/* Pill-grid (für Multi-Choice mit gleicher Größe) */
.vsb-options-pill-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
@media (min-width: 540px) {
	.vsb-options-pill-grid { grid-template-columns: repeat(2, 1fr); }
}
.vsb-option-big {
	padding: 22px 18px;
	border: 2px solid #E5E7EB;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: #1F2937;
	transition: all .15s;
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vsb-option-big:hover {
	border-color: #0F2B54;
	background: #F8FAFC;
}
.vsb-option-big.selected {
	background: linear-gradient(180deg, #0F2B54, #1B3A6B);
	color: #fff;
	border-color: #0F2B54;
	transform: scale(.98);
}
.vsb-option-square {
	min-height: 80px;
	font-size: 22px;
}

/* Big input (Step 8) */
.vsb-input-big {
	font-size: 17px !important;
	padding: 16px 18px !important;
	border-width: 2px !important;
}

.vsb-back-row { text-align: left; margin-top: 22px; }
.vsb-btn-back {
	background: transparent;
	color: #94A3B8;
	border: 0;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 0;
	cursor: pointer;
	font-family: inherit;
	transition: color .12s;
}
.vsb-btn-back:hover { color: #0F2B54; }
.vsb-mt-4 { margin-top: 18px; }
.vsb-mb-4 { margin-bottom: 18px; }
.vsb-btn-sm { padding: 10px 18px; font-size: 13px; }

/* ------ Bonus Form (Post-Booking) ------ */
.vsb-bonus {
	background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
	border: 1px solid #FDE68A;
	border-radius: 14px;
	padding: 24px 26px;
	margin: 24px 0 0;
	text-align: left;
}
.vsb-bonus-header { margin-bottom: 18px; }
.vsb-bonus-badge {
	display: inline-block;
	background: #D4A843;
	color: #0F2B54;
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.vsb-bonus-title {
	font-size: 17px;
	font-weight: 700;
	color: #0F2B54;
	margin: 0 0 6px;
}
.vsb-bonus-sub {
	margin: 0;
	color: #6B7280;
	font-size: 13px;
}
.vsb-bonus-field { margin: 0 0 18px; }
.vsb-bonus-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #1F2937;
	margin: 0 0 8px;
}
.vsb-bonus-actions {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin: 18px 0 0;
}
.vsb-bonus-thanks {
	background: #ECFDF5;
	border-radius: 10px;
	padding: 18px 22px;
	margin: 18px 0 0;
	text-align: center;
}
.vsb-bonus-thanks-icon { font-size: 28px; margin-bottom: 6px; }
.vsb-bonus-thanks p { margin: 0; color: #065F46; font-size: 14px; }

/* ------ Step layout ------ */
.vsb-step-header { margin-bottom: 24px; }
.vsb-step-title {
	font-size: 22px;
	font-weight: 800;
	color: #0F2B54;
	margin: 0 0 6px;
	letter-spacing: -0.01em;
}
.vsb-variant-lean .vsb-step-title { font-size: 26px; }
.vsb-step-sub {
	margin: 0;
	color: #6B7280;
	font-size: 14px;
}

/* ------ Form ------ */
.vsb-form { margin: 0; }
.vsb-field { margin-bottom: 22px; }
.vsb-label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	color: #1F2937;
	margin-bottom: 10px;
	line-height: 1.4;
}
.vsb-req { color: #DC2626; font-weight: 700; }
.vsb-help {
	font-size: 12px;
	color: #6B7280;
	margin: 6px 0 0;
}

.vsb-input, .vsb-textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #E5E7EB;
	border-radius: 10px;
	font-size: 14px;
	font-family: inherit;
	color: #1F2937;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
}
.vsb-input:focus, .vsb-textarea:focus {
	outline: none;
	border-color: #0F2B54;
	box-shadow: 0 0 0 3px rgba(15,43,84,.1);
}
.vsb-textarea { resize: vertical; min-height: 80px; }

/* ------ Options (radio, full-width cards) ------ */
.vsb-options {
	display: grid;
	gap: 8px;
}
.vsb-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1.5px solid #E5E7EB;
	border-radius: 10px;
	cursor: pointer;
	transition: border-color .12s, background .12s, transform .05s;
	background: #fff;
}
.vsb-option:hover { border-color: #CBD5E1; background: #F8FAFC; }
.vsb-option input[type="radio"] {
	accent-color: #0F2B54;
	margin: 0;
	flex-shrink: 0;
}
.vsb-option span { flex: 1; font-size: 14px; }
.vsb-option.selected {
	border-color: #0F2B54;
	background: linear-gradient(180deg, #F0F4FA, #fff);
	box-shadow: 0 4px 12px -6px rgba(15,43,84,.25);
}

/* Pill variant — compact, multiple per row */
.vsb-options-pill {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.vsb-option-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1.5px solid #E5E7EB;
	border-radius: 999px;
	cursor: pointer;
	transition: all .12s;
	background: #fff;
	font-size: 13px;
	font-weight: 500;
}
.vsb-option-pill:hover { border-color: #CBD5E1; background: #F8FAFC; }
.vsb-option-pill input { display: none; }
.vsb-option-pill.selected {
	background: #0F2B54;
	color: #fff;
	border-color: #0F2B54;
}

/* ------ Checkbox (Datenschutz) ------ */
.vsb-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 18px 0 24px;
	padding: 14px 16px;
	background: #F8FAFC;
	border-radius: 10px;
	font-size: 13px;
	color: #4B5563;
}
.vsb-checkbox input { margin-top: 3px; flex-shrink: 0; accent-color: #0F2B54; }
.vsb-checkbox a { color: #0F2B54; }

/* ------ Buttons ------ */
.vsb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	border-radius: 10px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background .15s, border-color .15s, color .15s, transform .05s, box-shadow .15s;
	text-decoration: none !important;
	line-height: 1.2;
}
.vsb-btn:active { transform: translateY(1px); }
.vsb-btn:disabled, .vsb-btn[disabled] {
	opacity: .55;
	cursor: not-allowed;
}
.vsb-btn-primary {
	background: #0F2B54;
	color: #fff !important;
	border-color: #0F2B54;
	box-shadow: 0 6px 16px -8px rgba(15,43,84,.5);
}
.vsb-btn-primary:hover:not(:disabled) {
	background: #0A1F3D;
	border-color: #0A1F3D;
	box-shadow: 0 10px 24px -10px rgba(15,43,84,.6);
}
.vsb-btn-gold {
	background: #D4A843;
	color: #0F2B54 !important;
	border-color: #D4A843;
	box-shadow: 0 6px 16px -6px rgba(212,168,67,.5);
}
.vsb-btn-gold:hover {
	background: #E5C16D;
	border-color: #E5C16D;
}
.vsb-btn-ghost {
	background: transparent;
	color: #6B7280 !important;
	border-color: #E5E7EB;
}
.vsb-btn-ghost:hover { background: #F8FAFC; color: #1F2937 !important; }

/* Form submit button = full width on small screens, larger */
.vsb-form .vsb-btn-primary {
	width: 100%;
	padding: 14px 24px;
	font-size: 15px;
}

/* Actions row */
.vsb-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
}
.vsb-actions-center { justify-content: center; flex-wrap: wrap; }

/* ------ Slot picker ------ */
.vsb-slot-picker {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 18px;
	margin: 0 0 8px;
}
@media (max-width: 640px) {
	.vsb-slot-picker { grid-template-columns: 1fr; }
}
.vsb-days {
	max-height: 380px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 4px;
	background: #F8FAFC;
	border-radius: 10px;
}
.vsb-day {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	padding: 12px 14px;
	background: transparent;
	border: 1.5px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: background .12s, border-color .12s;
}
.vsb-day:hover { background: #fff; border-color: #E5E7EB; }
.vsb-day-label { font-size: 14px; font-weight: 600; color: #1F2937; }
.vsb-day-count { font-size: 11px; color: #6B7280; }
.vsb-day.selected {
	background: #0F2B54;
	border-color: #0F2B54;
}
.vsb-day.selected .vsb-day-label,
.vsb-day.selected .vsb-day-count { color: #fff; }
.vsb-day.selected .vsb-day-count { color: rgba(255,255,255,.7); }

.vsb-slots {
	min-height: 300px;
	padding: 16px;
	background: #F8FAFC;
	border-radius: 10px;
}
.vsb-slots-header {
	font-size: 14px;
	font-weight: 600;
	color: #0F2B54;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid #E5E7EB;
}
.vsb-slots-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.vsb-slot {
	background: #fff;
	border: 1.5px solid #E5E7EB;
	border-radius: 10px;
	padding: 14px 12px;
	font-size: 14px;
	font-weight: 600;
	color: #0F2B54;
	cursor: pointer;
	font-family: inherit;
	transition: all .12s;
}
.vsb-slot:hover { border-color: #0F2B54; background: #F0F4FA; }
.vsb-slot.selected {
	background: #0F2B54;
	color: #fff;
	border-color: #0F2B54;
	box-shadow: 0 6px 16px -6px rgba(15,43,84,.4);
}
.vsb-empty-inline {
	color: #94A3B8;
	font-size: 13px;
	text-align: center;
	padding: 60px 20px;
}

/* ------ Summary card ------ */
.vsb-summary {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	background: linear-gradient(135deg, #0F2B54, #1B3A6B);
	color: #fff;
	border-radius: 12px;
	margin: 0 0 24px;
}
.vsb-summary-icon { font-size: 24px; }
.vsb-summary-day { font-size: 13px; opacity: .8; }
.vsb-summary-time { font-size: 18px; font-weight: 700; margin-top: 2px; }
.vsb-summary-change {
	margin-left: auto;
	background: rgba(255,255,255,.15);
	color: #fff;
	border: 0;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	cursor: pointer;
	font-family: inherit;
	font-weight: 500;
}
.vsb-summary-change:hover { background: rgba(255,255,255,.25); }

/* ------ Grid 2 (contact form) ------ */
.vsb-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
@media (max-width: 540px) { .vsb-grid-2 { grid-template-columns: 1fr; } }

/* ------ Loading / Spinner ------ */
.vsb-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 60px 20px;
	color: #6B7280;
	font-size: 14px;
}
.vsb-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: vsb-spin .7s linear infinite;
}
.vsb-spinner-dark { border-color: rgba(15,43,84,.2); border-top-color: #0F2B54; }
@keyframes vsb-spin { to { transform: rotate(360deg); } }

.vsb-empty {
	text-align: center;
	padding: 40px 20px;
	color: #6B7280;
}
.vsb-empty a { color: #0F2B54; }

/* ------ Error ------ */
.vsb-error {
	background: #FEF2F2;
	border: 1px solid #FECACA;
	color: #991B1B;
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 13px;
	margin: 14px 0 0;
}

/* ------ Success ------ */
.vsb-success { text-align: center; padding: 16px 0; }
.vsb-success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #10B981, #059669);
	color: #fff;
	border-radius: 50%;
	font-size: 32px;
	font-weight: 700;
	box-shadow: 0 12px 28px -12px rgba(16,185,129,.5);
	margin: 0 auto 20px;
	animation: vsb-pop .35s ease-out;
}
@keyframes vsb-pop {
	0%   { transform: scale(0); opacity: 0; }
	70%  { transform: scale(1.15); }
	100% { transform: scale(1); opacity: 1; }
}
.vsb-success-title {
	font-size: 26px;
	font-weight: 800;
	color: #0F2B54;
	margin: 0 0 18px;
	letter-spacing: -0.01em;
}
.vsb-success-card {
	background: linear-gradient(135deg, #0F2B54, #1B3A6B);
	color: #fff;
	border-radius: 14px;
	padding: 24px;
	margin: 0 0 20px;
	box-shadow: 0 16px 32px -16px rgba(15,43,84,.4);
}
.vsb-success-day { font-size: 15px; opacity: .85; }
.vsb-success-time { font-size: 36px; font-weight: 800; margin-top: 4px; letter-spacing: -0.02em; color: #D4A843; }
.vsb-success-text { color: #6B7280; max-width: 480px; margin: 0 auto 20px; font-size: 14px; }

/* ------ Disqualified ------ */
.vsb-disqualified { text-align: center; padding: 8px 0; }
.vsb-dq-icon {
	font-size: 56px;
	margin-bottom: 16px;
	opacity: .9;
}
.vsb-dq-title {
	font-size: 22px;
	font-weight: 700;
	color: #0F2B54;
	margin: 0 0 14px;
}
.vsb-dq-message {
	color: #4B5563;
	font-size: 15px;
	max-width: 520px;
	margin: 0 auto 22px;
	line-height: 1.65;
}

/* ------ Mobile (Tablet ↓) ------ */
@media (max-width: 640px) {
	.vsb-widget { padding: 24px 18px; border-radius: 12px; }
	.vsb-step-title, .vsb-q-title { font-size: 20px; }
	.vsb-q-sub { font-size: 13px; margin-bottom: 18px; }
	.vsb-actions { flex-direction: column-reverse; }
	.vsb-actions .vsb-btn { width: 100%; }
	.vsb-actions-center { flex-direction: column; }

	/* Pre-Quali Cards mobil — kleinere Padding, Text-Wrap */
	.vsb-option-card { padding: 14px 16px; font-size: 14px; gap: 10px; }
	.vsb-option-card-label { word-break: break-word; line-height: 1.4; }
	.vsb-option-big {
		padding: 16px 14px;
		min-height: 56px;
		font-size: 14px;
		text-align: center;
		line-height: 1.3;
	}
	.vsb-option-big span { display: block; word-break: break-word; }
	.vsb-options-pill-grid { gap: 8px; }
	.vsb-option-square { min-height: 64px; font-size: 18px; }

	/* Letzte Frage (Webseite-Input) */
	.vsb-input-big { font-size: 15px !important; padding: 14px 14px !important; }

	/* Progress meta — kleiner */
	.vsb-progress-meta { font-size: 11px; }

	/* Slot-Picker stacken */
	.vsb-slot-picker { grid-template-columns: 1fr; gap: 14px; }
	.vsb-days { max-height: none; flex-direction: row; overflow-x: auto; }
	.vsb-day { min-width: 130px; flex-shrink: 0; }
	.vsb-slots { min-height: auto; padding: 14px; }
	.vsb-slots-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.vsb-slot { padding: 12px 8px; font-size: 13px; }

	/* Summary Card */
	.vsb-summary { gap: 10px; padding: 12px 14px; }
	.vsb-summary-icon { font-size: 20px; }
	.vsb-summary-time { font-size: 16px; }

	/* Bonus-Form */
	.vsb-bonus { padding: 18px 16px; }
	.vsb-bonus-title { font-size: 15px; }
	.vsb-bonus-actions { flex-direction: column-reverse; }
	.vsb-bonus-actions .vsb-btn { width: 100%; }

	/* Erfolg-Step */
	.vsb-success-time { font-size: 28px; }
}

/* Sehr kleine Phones */
@media (max-width: 380px) {
	.vsb-options-pill-grid { grid-template-columns: 1fr; }
	.vsb-slots-grid { grid-template-columns: 1fr; }
	.vsb-grid-2 { grid-template-columns: 1fr; }
}

/* ===== Step 0 — Berater-Auswahl (Multi-Host) ===== */
.vsb-consultant-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 8px;
}
.vsb-consultant-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 24px 20px 20px;
	background: #fff;
	border: 2px solid #E2E8F0;
	border-radius: 12px;
	cursor: pointer;
	transition: all 200ms ease;
	font-family: inherit;
}
.vsb-consultant-card:hover {
	border-color: #D4A843;
	box-shadow: 0 6px 24px rgba(15,43,84,0.08);
	transform: translateY(-2px);
}
.vsb-consultant-card.selected {
	border-color: #0F2B54;
	background: #F8FAFC;
	box-shadow: 0 4px 16px rgba(15,43,84,0.12);
}
.vsb-consultant-card.vsb-consultant-pool {
	background: linear-gradient(180deg, #FFFDF7 0%, #FFF8E7 100%);
	border-color: #E5C16F;
}
.vsb-consultant-card.vsb-consultant-pool.selected {
	border-color: #B58B2F;
}
.vsb-consultant-photo {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	overflow: hidden;
	background: #E2E8F0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vsb-consultant-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.vsb-consultant-photo-placeholder {
	font-size: 38px;
	font-weight: 700;
	color: #0F2B54;
	text-transform: uppercase;
}
.vsb-consultant-photo-icon {
	background: rgba(212,168,67,0.15);
}
.vsb-consultant-photo-icon .material-symbols-outlined {
	font-size: 44px;
	color: #B58B2F;
}
.vsb-consultant-name {
	font-weight: 700;
	color: #0F2B54;
	font-size: 1.0625rem;
	line-height: 1.3;
}
.vsb-consultant-bio {
	color: #475569;
	font-size: 0.875rem;
	line-height: 1.5;
	min-height: 42px;
}
.vsb-consultant-cta {
	margin-top: auto;
	color: #B58B2F;
	font-weight: 600;
	font-size: 0.9375rem;
}
.vsb-consultant-card.selected .vsb-consultant-cta {
	color: #0F2B54;
}

@media (max-width: 720px) {
	.vsb-consultant-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.vsb-consultant-card {
		flex-direction: row;
		align-items: center;
		text-align: left;
		padding: 14px 16px;
	}
	.vsb-consultant-photo {
		width: 64px;
		height: 64px;
		flex-shrink: 0;
	}
	.vsb-consultant-photo-icon .material-symbols-outlined { font-size: 30px; }
	.vsb-consultant-photo-placeholder { font-size: 24px; }
	.vsb-consultant-bio { min-height: 0; }
	.vsb-consultant-cta { display: none; }
}
