/*
Theme Name: Twenty Twenty-Five You Energie
Template: twentytwentyfive
Description: Child theme You Energie pour landing pages B2B (courtier en énergie). Hérite de Twenty Twenty-Five.
Author: You Energie
Version: 0.1.0
Text Domain: youenergie
*/

:root {
	--yel-primary: #0F7A3A;
	--yel-primary-dark: #093D1D;
	--yel-accent: #3FD071;
	--yel-accent-soft: #C9F0D8;
	--yel-bg: #F5FBF7;
	--yel-text: #0A1F12;
	--yel-muted: #5C6B61;
	--yel-border: #D8E5DC;
}

body.yel-landing {
	background: var(--yel-bg);
	color: var(--yel-text);
	font-feature-settings: "ss01", "cv11";
}
html:has(.yel-nav) { scroll-padding-top: 80px; scroll-behavior: smooth; }

/* ────────────────────────────────────────────────────
 * NAVBAR — header sticky avec dropdown, tel, CTA, mobile.
 * ──────────────────────────────────────────────────── */
.yel-nav,
.yel-nav * { box-sizing: border-box; }
.yel-nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(150%) blur(12px);
	-webkit-backdrop-filter: saturate(150%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s, box-shadow .2s, background .2s;
}
.yel-nav.is-scrolled {
	border-bottom-color: var(--yel-border);
	box-shadow: 0 6px 18px -10px rgba(9, 61, 29, 0.18);
}
.yel-nav__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	gap: 24px;
}

/* Brand */
.yel-nav__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	flex-shrink: 0;
}
.yel-nav__brand-icon { display: inline-flex; line-height: 0; }
.yel-nav__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.yel-nav__brand-text strong {
	color: var(--yel-primary-dark);
	font-weight: 800;
	font-size: 17px;
	letter-spacing: -0.02em;
}
.yel-nav__brand-text small {
	color: var(--yel-muted);
	font-size: 11px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-weight: 600;
}

/* Menu desktop */
.yel-nav__menu { flex: 1; }
.yel-nav__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 4px;
	justify-content: center;
}
.yel-nav__item { position: relative; }
.yel-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 10px 14px;
	color: var(--yel-text);
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: background .15s, color .15s;
	line-height: 1.2;
}
.yel-nav__link:hover { background: var(--yel-bg); color: var(--yel-primary); }
.yel-nav__chev { transition: transform .2s; }
.yel-nav__item--has-sub.is-open .yel-nav__chev { transform: rotate(180deg); }
.yel-nav__item--has-sub.is-open .yel-nav__link { color: var(--yel-primary); background: var(--yel-bg); }

/* Sub menu (dropdown solutions) */
.yel-nav__sub {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: #fff;
	border: 1px solid var(--yel-border);
	border-radius: 16px;
	box-shadow: 0 24px 50px -20px rgba(9, 61, 29, 0.25), 0 4px 12px rgba(9, 61, 29, 0.04);
	padding: 8px;
	min-width: 340px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .15s, transform .15s;
}
.yel-nav__item--has-sub.is-open .yel-nav__sub {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
.yel-nav__sub::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #fff;
	border-left: 1px solid var(--yel-border);
	border-top: 1px solid var(--yel-border);
}
.yel-nav__sub-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 14px;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: background .15s, transform .15s;
}
.yel-nav__sub-item:hover {
	background: var(--yel-bg);
	transform: translateX(2px);
}
.yel-nav__sub-icon {
	font-size: 22px;
	line-height: 1;
	margin-top: 2px;
	flex-shrink: 0;
}
.yel-nav__sub-item strong {
	display: block;
	color: var(--yel-primary-dark);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: -0.01em;
	margin-bottom: 2px;
}
.yel-nav__sub-item small {
	display: block;
	color: var(--yel-muted);
	font-size: 12.5px;
	line-height: 1.4;
}

/* Actions (phone + CTA) */
.yel-nav__actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.yel-nav__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--yel-primary);
	font-weight: 700;
	text-decoration: none;
	font-size: 14px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1.5px solid var(--yel-border);
	transition: all .15s;
	white-space: nowrap;
}
.yel-nav__phone:hover {
	border-color: var(--yel-primary);
	background: var(--yel-accent-soft);
}
.yel-nav__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	background: linear-gradient(135deg, var(--yel-primary) 0%, var(--yel-accent) 100%);
	padding: 11px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 0 8px 20px -6px rgba(15, 122, 58, 0.45);
	transition: transform .15s, box-shadow .15s;
	white-space: nowrap;
}
.yel-nav__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px -6px rgba(15, 122, 58, 0.6);
	color: #fff;
}

/* Burger mobile */
.yel-nav__burger {
	display: none;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid var(--yel-border);
	border-radius: 12px;
	cursor: pointer;
	padding: 0;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	justify-content: center;
	transition: border-color .15s;
	flex-shrink: 0;
}
.yel-nav__burger:hover { border-color: var(--yel-primary); }
.yel-nav__burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--yel-text);
	border-radius: 2px;
	transition: transform .25s, opacity .25s;
}
.yel-nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.yel-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.yel-nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer mobile */
.yel-nav__mobile {
	position: fixed;
	inset: auto 0 0 0;
	top: 70px;
	background: #fff;
	overflow-y: auto;
	padding: 24px;
	border-top: 1px solid var(--yel-border);
	z-index: 999;
	animation: yelNavSlide .25s ease;
}
.yel-nav__mobile[hidden] { display: none; }
@keyframes yelNavSlide {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}
.yel-nav__mobile nav { display: flex; flex-direction: column; gap: 2px; max-width: 600px; margin: 0 auto; }
.yel-nav__mobile-section {
	margin: 16px 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--yel-muted);
}
.yel-nav__mobile-section:first-child { margin-top: 0; }
.yel-nav__mobile a {
	display: block;
	padding: 14px 16px;
	color: var(--yel-text);
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	border-radius: 12px;
	transition: background .15s;
}
.yel-nav__mobile a:hover { background: var(--yel-bg); color: var(--yel-primary); }
.yel-nav__mobile-cta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--yel-border);
}
.yel-nav__mobile-cta .yel-nav__cta,
.yel-nav__mobile-cta .yel-nav__phone {
	display: flex;
	justify-content: center;
	font-size: 15px;
	padding: 14px 20px;
}
.yel-nav__mobile-cta .yel-nav__cta { color: #fff !important; }

/* Responsive switch */
@media (max-width: 980px) {
	.yel-nav__menu { display: none; }
	.yel-nav__actions { display: none; }
	.yel-nav__burger { display: inline-flex; }
	.yel-nav__inner { padding: 10px 16px; gap: 12px; }
	.yel-nav__brand-text small { display: none; }
}
@media (max-width: 1140px) and (min-width: 981px) {
	.yel-nav__phone-num { display: none; }
	.yel-nav__phone { padding: 10px; }
}

/* ─── Hero ────────────────────────────────────────── */
body.yel-landing .yel-lp-hero {
	background:
		radial-gradient(80% 60% at 100% 0%, rgba(63, 208, 113, 0.16) 0%, transparent 60%),
		linear-gradient(135deg, var(--yel-primary) 0%, var(--yel-primary-dark) 100%);
	color: #fff;
	padding: clamp(48px, 8vw, 96px) 24px;
	position: relative;
	overflow: hidden;
}
body.yel-landing .yel-lp-hero h1 {
	color: #fff;
	font-size: clamp(28px, 5vw, 52px);
	line-height: 1.1;
	max-width: 18ch;
	margin: 0;
	letter-spacing: -0.025em;
	font-weight: 800;
}
body.yel-landing .yel-lp-hero .yel-accent-text {
	color: var(--yel-accent);
	text-shadow: 0 0 30px rgba(63, 208, 113, 0.3);
}

/* ─── Trust ───────────────────────────────────────── */
body.yel-landing .yel-lp-trust {
	background: #fff;
	padding: 28px 24px;
	border-bottom: 1px solid var(--yel-border);
}
body.yel-landing .yel-lp-trust__list {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: var(--yel-muted);
	font-size: 14px;
}
body.yel-landing .yel-lp-trust__list strong {
	color: var(--yel-primary);
}

/* ─── Form section ────────────────────────────────── */
body.yel-landing .yel-lp-form-section {
	padding: clamp(48px, 8vw, 96px) 24px;
}
body.yel-landing .yel-lp-form-section__title {
	font-size: clamp(24px, 3vw, 36px);
	margin: 0 0 16px;
	color: var(--yel-primary);
	letter-spacing: -0.02em;
	line-height: 1.15;
}
body.yel-landing .yel-lp-form-section__lead {
	color: var(--yel-muted);
	margin: 0 0 32px;
	font-size: 17px;
	line-height: 1.6;
}
body.yel-landing .yel-lp-benefits {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
body.yel-landing .yel-lp-benefits li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
body.yel-landing .yel-lp-benefits__num {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, var(--yel-accent) 0%, var(--yel-primary) 100%);
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(63, 208, 113, 0.3);
}
body.yel-landing .yel-lp-benefits strong {
	color: var(--yel-primary);
	display: block;
	font-size: 15px;
	margin-bottom: 2px;
}
body.yel-landing .yel-lp-benefits span:not(.yel-lp-benefits__num) {
	color: var(--yel-muted);
	font-size: 14px;
	line-height: 1.5;
}

/* ─── FAQ ─────────────────────────────────────────── */
body.yel-landing .yel-lp-faq {
	background: #fff;
	padding: clamp(48px, 8vw, 96px) 24px;
	border-top: 1px solid var(--yel-border);
}
body.yel-landing .yel-lp-faq details {
	border-bottom: 1px solid var(--yel-border);
	padding: 18px 0;
}
body.yel-landing .yel-lp-faq summary {
	font-weight: 600;
	cursor: pointer;
	color: var(--yel-primary);
	font-size: 16px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
body.yel-landing .yel-lp-faq summary::-webkit-details-marker { display: none; }
body.yel-landing .yel-lp-faq summary::after {
	content: '+';
	font-size: 24px;
	font-weight: 300;
	transition: transform 0.2s;
	color: var(--yel-accent);
	flex-shrink: 0;
}
body.yel-landing .yel-lp-faq details[open] summary::after {
	transform: rotate(45deg);
}
body.yel-landing .yel-lp-faq details p {
	margin-top: 14px;
	color: var(--yel-muted);
	font-size: 15px;
	line-height: 1.65;
}

/* ─── Footer ──────────────────────────────────────── */
body.yel-landing .yel-lp-footer {
	background: var(--yel-primary-dark);
	color: rgba(255, 255, 255, 0.7);
	padding: 40px 24px;
	font-size: 13px;
	text-align: center;
}
body.yel-landing .yel-lp-footer a {
	color: #fff;
	text-decoration: none;
	margin: 0 8px;
	transition: color 0.15s;
}
body.yel-landing .yel-lp-footer a:hover {
	color: var(--yel-accent);
}

/* ─── Persona Hero (commun aux 4 LPs persona) ─────── */
body.yel-landing .yel-lp-hero--persona {
	background:
		radial-gradient(80% 60% at 100% 0%, rgba(63, 208, 113, 0.16) 0%, transparent 60%),
		linear-gradient(135deg, var(--yel-primary) 0%, var(--yel-primary-dark) 100%);
	color: #fff;
	padding: clamp(48px, 8vw, 96px) 24px;
	position: relative;
	overflow: hidden;
}
body.yel-landing .yel-lp-hero--persona::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -150px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(63, 208, 113, 0.18) 0%, transparent 70%);
	pointer-events: none;
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__inner {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 56px;
	align-items: center;
}
body.yel-landing .yel-lp-hero--persona h1 {
	color: #fff;
	font-size: clamp(28px, 4.6vw, 50px);
	line-height: 1.08;
	margin: 0;
	letter-spacing: -0.025em;
	font-weight: 800;
}
body.yel-landing .yel-lp-hero--persona .yel-accent-text {
	color: var(--yel-accent);
	text-shadow: 0 0 30px rgba(63, 208, 113, 0.3);
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__eyebrow {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(63, 208, 113, 0.18);
	color: var(--yel-accent);
	border: 1px solid rgba(63, 208, 113, 0.35);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 20px;
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__lead {
	font-size: 18px;
	line-height: 1.55;
	margin: 22px 0 28px;
	opacity: 0.92;
	max-width: 44ch;
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 16px 28px;
	background: var(--yel-accent);
	color: var(--yel-primary-dark);
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none;
	font-size: 16px;
	transition: transform 0.15s, box-shadow 0.15s;
	box-shadow: 0 6px 20px rgba(63, 208, 113, 0.35);
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(63, 208, 113, 0.5);
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__bullets {
	display: flex;
	gap: 24px;
	margin-top: 28px;
	font-size: 14px;
	opacity: 0.9;
	flex-wrap: wrap;
	color: #fff;
}
body.yel-landing .yel-lp-persona-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	align-items: center;
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
body.yel-landing .yel-lp-persona-logos__label {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
	flex-basis: 100%;
}
body.yel-landing .yel-lp-persona-logos img {
	height: 36px;
	max-width: 130px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.85;
	transition: opacity 0.2s;
}
body.yel-landing .yel-lp-persona-logos img:hover {
	opacity: 1;
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__stat-wrap {
	text-align: center;
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__stat {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	padding: 32px 26px;
	backdrop-filter: blur(12px);
}
body.yel-landing .yel-lp-hero__stat-badge {
	display: inline-block;
	padding: 4px 10px;
	background: rgba(63, 208, 113, 0.16);
	color: var(--yel-accent);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__stat-num {
	font-size: clamp(56px, 8vw, 80px);
	font-weight: 800;
	color: var(--yel-accent);
	margin: 0;
	line-height: 1;
	letter-spacing: -0.04em;
	text-shadow: 0 0 40px rgba(63, 208, 113, 0.4);
}
body.yel-landing .yel-lp-hero--persona .yel-lp-hero__stat-label {
	margin: 12px auto 0;
	font-size: 14px;
	opacity: 0.85;
	line-height: 1.5;
	color: #fff;
	max-width: 28ch;
}
body.yel-landing .yel-lp-hero__stat-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	margin: 24px 0;
}
body.yel-landing .yel-lp-hero__stat-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	text-align: center;
	color: #fff;
}
body.yel-landing .yel-lp-hero__stat-meta strong {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}
body.yel-landing .yel-lp-hero__stat-meta span {
	display: block;
	font-size: 12px;
	opacity: 0.7;
	margin-top: 2px;
}
@media (max-width: 900px) {
	body.yel-landing .yel-lp-hero--persona .yel-lp-hero__inner {
		grid-template-columns: 1fr;
	}
}

/* ─── Hero avec formulaire intégré ────────────────── */
body.yel-landing .yel-lp-hero--with-form {
	padding: clamp(48px, 7vw, 88px) 24px;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__cols {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__cols > .wp-block-column {
	min-width: 0;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__copy h1 {
	font-size: clamp(28px, 3.6vw, 42px);
	max-width: none;
	line-height: 1.1;
	letter-spacing: -0.025em;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__copy .yel-lp-hero__lead {
	font-size: 16px;
	line-height: 1.55;
	margin: 18px 0 22px;
	opacity: 0.92;
	max-width: 52ch;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__copy .yel-lp-hero__bullets {
	display: flex;
	gap: 18px;
	margin-top: 4px;
	font-size: 14px;
	opacity: 0.9;
	flex-wrap: wrap;
	color: #fff;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__inline-stat {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 26px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	backdrop-filter: blur(10px);
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__inline-stat strong {
	font-size: 36px;
	font-weight: 800;
	color: var(--yel-accent);
	letter-spacing: -0.03em;
	line-height: 1;
	text-shadow: 0 0 28px rgba(63, 208, 113, 0.4);
	flex-shrink: 0;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__inline-stat span {
	font-size: 13px;
	line-height: 1.45;
	color: #fff;
	opacity: 0.85;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-persona-logos {
	margin-top: 26px;
	padding-top: 20px;
	gap: 10px 18px;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-persona-logos img {
	height: 28px;
	max-width: 110px;
}

/* Simulateur intégré dans le hero : on neutralise sa section,
   on masque son titre, on garde uniquement la carte (formulaire). */
body.yel-landing .yel-lp-hero--with-form .yel-lp-simulator {
	background: transparent;
	padding: 0;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-simulator__inner {
	max-width: 100%;
	margin: 0;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-simulator__head {
	display: none;
}
body.yel-landing .yel-lp-hero--with-form .yel-lp-simulator__card {
	padding: clamp(22px, 2.6vw, 32px);
	border-radius: 20px;
	box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.45), 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Empilement mobile : le formulaire passe sous le texte */
@media (max-width: 900px) {
	body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__cols {
		flex-direction: column;
	}
	body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__cols > .wp-block-column {
		flex-basis: 100% !important;
		width: 100% !important;
	}
	body.yel-landing .yel-lp-hero--with-form .yel-lp-hero__copy h1 {
		font-size: clamp(26px, 6vw, 34px);
	}
}

/* ─── Pages légales (mentions-legales, cgv, confidentialité…) ── */
body.yel-landing.yel-legal-page {
	background: #fff;
}
body.yel-landing .yel-legal {
	max-width: 820px;
	margin: 0 auto;
	padding: clamp(48px, 6vw, 80px) 24px clamp(64px, 8vw, 96px);
	color: var(--yel-text, #1a2b22);
	font-size: 16px;
	line-height: 1.7;
}
body.yel-landing .yel-legal .yel-legal__title,
body.yel-landing .yel-legal h1 {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	color: var(--yel-primary-dark);
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 32px;
	padding-bottom: 20px;
	border-bottom: 3px solid var(--yel-accent);
	display: inline-block;
}
body.yel-landing .yel-legal h2 {
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 700;
	color: var(--yel-primary-dark);
	letter-spacing: -0.015em;
	margin: 48px 0 16px;
	line-height: 1.25;
}
body.yel-landing .yel-legal h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--yel-primary);
	margin: 32px 0 12px;
}
body.yel-landing .yel-legal p {
	margin: 0 0 18px;
	color: #2a3a32;
}
body.yel-landing .yel-legal ul,
body.yel-landing .yel-legal ol {
	margin: 0 0 22px;
	padding-left: 22px;
}
body.yel-landing .yel-legal li {
	margin-bottom: 8px;
	padding-left: 4px;
}
body.yel-landing .yel-legal li::marker {
	color: var(--yel-primary);
}
body.yel-landing .yel-legal a {
	color: var(--yel-primary);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color .15s;
}
body.yel-landing .yel-legal a:hover {
	color: var(--yel-primary-dark);
}
body.yel-landing .yel-legal strong {
	color: var(--yel-primary-dark);
	font-weight: 700;
}
body.yel-landing .yel-legal hr {
	border: 0;
	height: 1px;
	background: var(--yel-border);
	margin: 40px 0;
}
body.yel-landing .yel-legal blockquote {
	margin: 24px 0;
	padding: 16px 20px;
	border-left: 4px solid var(--yel-accent);
	background: #f4faf6;
	border-radius: 0 8px 8px 0;
	color: #2a3a32;
	font-style: italic;
}
body.yel-landing .yel-legal table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 15px;
}
body.yel-landing .yel-legal th,
body.yel-landing .yel-legal td {
	border: 1px solid var(--yel-border);
	padding: 10px 14px;
	text-align: left;
	vertical-align: top;
}
body.yel-landing .yel-legal th {
	background: #f4faf6;
	font-weight: 700;
	color: var(--yel-primary-dark);
}
@media (max-width: 600px) {
	body.yel-landing .yel-legal {
		font-size: 15.5px;
	}
}
