/*
 * Block: cy/redesign-vp-flip-model
 * Source: Figma o7TW9TI14xVpo4cvpexryD node 393:2128.
 *
 * Two-column: left copy (H2 + prose + blue sub-heads + 11-item bullet
 * list), right a flat PNG illustration of the productized cycle
 * (title, pills, center copy, and Expand pill all baked in).
 */

.vpfm {
	background: #fcfcfb;
	padding: 96px 40px;
	box-sizing: border-box;
}

.vpfm__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}

.vpfm__copy {
	min-width: 0;
}

.vpfm__copy {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.vpfm__heading {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 48px;
	line-height: 1.15;
	letter-spacing: -0.96px;
	color: var(--brand-dark-navy, #093055);
	margin: 0;
}

.vpfm__intro,
.vpfm__subbody {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.58;
	letter-spacing: -0.54px;
	color: #093055;
	margin: 0;
}

.vpfm__subhead {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(13px, 1.28vw, 18px);
	line-height: 1.58;
	letter-spacing: -0.54px;
	color: #093055;
	margin: 0;
	white-space: nowrap;
}

.vpfm__list-title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: -0.72px;
	color: #006fe7;
	margin: 0;
}

.vpfm__list {
	list-style: disc;
	margin: 0;
	padding-left: 24px;
	color: #093055;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.58;
	letter-spacing: -0.54px;
}

.vpfm__list li {
	margin: 0 0 4px;
}

.vpfm__list li::marker {
	color: #0094ff;
}

.vpfm__list ul {
	list-style: disc;
	margin: 12px 0 0;
	padding-left: 28px;
	font-size: 0.94em;
	font-weight: 500;
}

.vpfm__list ul li {
	margin: 0 0 4px;
}

.vpfm__list ul li:last-child {
	margin-bottom: 0;
}

.vpfm__list ul li::marker {
	color: #0094ff;
}

/* ─── Cycle illustration ───────────────────────────────────────── */

.vpfm__cycle {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

/* Width-driven sizing with the image's natural aspect ratio. Heights
   visually line up via align-items: center on the grid — matching
   pixel-for-pixel would require constraining height, which inevitably
   fights with the preserved aspect ratio. */
.vpfm__cycle-img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 520px;
}


/* ─── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1100px) {
	.vpfm { padding: 72px 24px; }
	.vpfm__inner { grid-template-columns: 1fr; gap: 40px; }
	.vpfm__heading { font-size: 38px; letter-spacing: -0.76px; }
	.vpfm__cycle-img { max-width: 480px; }
}

@media (max-width: 640px) {
	.vpfm { padding: 56px 16px; }
	.vpfm__heading { font-size: 28px; letter-spacing: -0.56px; }
	.vpfm__list { font-size: 16px; }
	.vpfm__cycle-img { max-width: 360px; }
}
