/**
 * Our Approach — patient acquisition flow (Design 2).
 *
 * @package Deltraux
 */

.deltraux-approach .flow-header {
	margin-bottom: 56px;
}

.deltraux-approach .flow-header h2 {
	margin-bottom: 20px;
}

.deltraux-approach .flow-header > p {
	max-width: 600px;
	color: #475569;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.75;
}

/* Override legacy Design 1 grid / mobile-only layout in approach.css */
.deltraux-approach .flow-blocks-mobile {
	display: none !important;
}

.deltraux-approach .flow-blocks {
	display: flex !important;
	align-items: flex-start;
	gap: 0;
	position: relative;
	grid-template-columns: unset;
}

.deltraux-approach .flow-item {
	flex: 1;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 28px 24px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	position: relative;
	transition: border-color 200ms ease-out;
	box-sizing: border-box;
	min-width: 0;
}

.deltraux-approach .flow-item:hover {
	border-color: #cbd5e1;
}

.deltraux-approach .flow-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	flex-shrink: 0;
	padding-top: 40px;
	color: #e2e8f0;
}

.deltraux-approach .flow-connector svg {
	display: block;
}

.deltraux-approach .flow-step-label {
	font-size: 10px;
	font-family: 'Inter', system-ui, sans-serif;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1e40af;
	margin-bottom: 12px;
	display: block;
}

.deltraux-approach .flow-icon {
	width: 28px;
	height: 28px;
	color: #0f172a;
	margin-bottom: 14px;
}

.deltraux-approach .flow-icon svg {
	display: block;
	width: 28px;
	height: 28px;
}

.deltraux-approach .flow-item h4 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 16px;
	font-weight: 500;
	margin: 0 0 10px;
	color: #0f172a;
	line-height: 1.35;
}

.deltraux-approach .flow-item p {
	font-size: 13.5px;
	color: #475569;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 1024px) {
	.deltraux-approach .flow-blocks {
		display: flex !important;
		flex-direction: column;
		gap: 16px;
	}

	.deltraux-approach .flow-connector {
		display: none;
	}

	.deltraux-approach .flow-item {
		width: 100%;
	}
}
