/**
 * O3P page styles — content HTML modules + row helpers.
 *
 * Module-owned styles (hero, toc, scale, steps, chips, dosing, cta) live in
 * their BB module frontend.css.php files. This file only covers the shared
 * HTML-module markup (.o3p, .sec, kickers, tldr, plans, notes, accordion,
 * subscribe) and the .o3prow spacing helpers that used to live in a BB
 * HTML <style> module (which also re-introduced width hacks — do not put
 * those back here).
 */

/* Clip horizontal overflow from the hero full-bleed pseudo-element. */
body.alp-o3p-page {
	overflow-x: hidden;
}

/* Row helpers: BB rows tagged class="o3prow" */
.o3prow .fl-row-content-wrap {
	min-height: 0 !important;
}
.o3prow .fl-module {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Content shell used by HTML modules */
.o3p {
	font-family: "DM Sans", sans-serif;
	color: #243b47;
	/* Width/centering left to the parent BB row/column. */
	box-sizing: border-box;
}
.o3p *,
.o3p *::before,
.o3p *::after {
	box-sizing: border-box;
}
.o3p a {
	color: #0a5b86;
}
.o3p .sec {
	padding: 30px 0;
}
.o3p .kicker {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 12px;
}
.o3p .kicker .num {
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.5px;
	color: #CD982C;
}
.o3p .kicker .rule {
	flex: 0 0 26px;
	height: 2px;
	background: #CD982C;
}
.o3p .kicker .eyebrow {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	font-weight: 700;
	color: #8a939a;
}
.o3p h2 {
	font-family: "Inter", sans-serif;
	font-size: clamp(1.5rem, 3.4vw, 2rem);
	letter-spacing: -0.4px;
	line-height: 1.16;
	margin: 0 0 0.5em;
	color: #00375A;
}
.o3p h3 {
	font-family: "Inter", sans-serif;
	font-size: 1.1rem;
	margin: 0 0 0.4em;
	color: #00375A;
}
.o3p p {
	font-size: 17px;
	line-height: 1.7;
	margin: 0 0 1em;
}
.o3p .lead {
	font-size: 19px;
	line-height: 1.6;
	color: #3a4f5a;
}

/* TL;DR card (HTML module) */
.o3p-tldr {
	background: #FBF7EC;
	border: 1px solid #EADFBF;
	border-radius: 8px;
	padding: 26px 30px;
	margin-top: 26px;
}
.o3p-tldr h2 {
	margin: 0 0 0.5em;
	font-size: 1.3rem;
}
.o3p-tldr ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.o3p-tldr li {
	position: relative;
	list-style: none;
	padding-left: 26px;
	margin: 0.5em 0;
	font-size: 16.5px;
	line-height: 1.55;
}
.o3p-tldr li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 10px;
	width: 7px;
	height: 7px;
	background: #CD982C;
	border-radius: 50%;
}

/* Plan cards (HTML module) */
.o3p-plans {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
@media (max-width: 640px) {
	.o3p-plans {
		grid-template-columns: 1fr;
	}
}
.o3p-plan {
	border: 1px solid #E2E6E9;
	border-radius: 8px;
	padding: 24px;
}
.o3p-plan.best {
	border: 1px solid #CD982C;
	border-top: 3px solid #CD982C;
}
.o3p-plan .tag {
	display: inline-block;
	background: #CD982C;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 4px 11px;
	border-radius: 3px;
	margin-bottom: 10px;
}
.o3p-plan h3 {
	margin: 0 0 0.1em;
	font-size: 1.25rem;
}
.o3p-plan .lede {
	font-weight: 600;
	color: #CD982C;
	margin: 0 0 0.7em;
	font-family: "Inter", sans-serif;
	font-size: 15px;
}
.o3p-plan .prod {
	font-size: 15px;
	color: #3a4f5a;
	margin-bottom: 0.8em;
}
.o3p-plan ul {
	margin: 0;
	padding-left: 1.05em;
}
.o3p-plan li {
	margin: 0.4em 0;
	font-size: 15px;
	line-height: 1.5;
}

/* Notes (HTML module — custom o3p-note module has its own styles) */
.o3p .o3p-note {
	background: #F6F8F9;
	border: 1px solid #E3E8EA;
	border-radius: 8px;
	padding: 20px 24px;
}
.o3p .o3p-note.amber {
	background: #FBF6EC;
	border-color: #EAD9B4;
}
.o3p .o3p-note h3 {
	margin: 0 0 0.35em;
}
.o3p .o3p-note p {
	margin: 0;
}

/* Accordion (HTML <details> — custom o3p-accordion module has its own styles) */
.o3p-acc {
	border-bottom: 1px solid #E2E6E9;
}
.o3p-acc summary {
	cursor: pointer;
	padding: 16px 44px 16px 2px;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 16px;
	list-style: none;
	position: relative;
	color: #00375A;
}
.o3p-acc summary::-webkit-details-marker {
	display: none;
}
.o3p-acc summary::after {
	content: "+";
	position: absolute;
	right: 8px;
	top: 13px;
	color: #CD982C;
	font-size: 22px;
	font-weight: 400;
}
.o3p-acc[open] summary::after {
	content: "\2013";
}
.o3p-acc .body {
	padding: 0 2px 18px;
}
.o3p-acc .body p {
	font-size: 16px;
	line-height: 1.62;
	margin: 0.1em 0 0.7em;
}

/* Subscribe + fine print */
.o3p-sub {
	background: #FBF7EC;
	border: 1px solid #EADFBF;
	border-radius: 8px;
	padding: 26px 30px;
	text-align: center;
}
.o3p-sub h3 {
	font-size: 1.2rem;
	margin-top: 0;
}
.o3p-sub .btn {
	display: inline-block;
	background: #00375A;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	text-decoration: none;
	padding: 12px 26px;
	border-radius: 4px;
}
.o3p-sub .btn:hover {
	color: #fff;
	opacity: 0.92;
}
.o3p-fine {
	font-size: 13px;
	color: #6b7880;
	line-height: 1.6;
}
.o3p-em {
	color: #5b6b76;
}
