/**
 * Premium v2 — Design system.
 *
 * EVERY rule lives under `.tac-pm2` so this file cannot leak into the legacy
 * Classic template, the Premium template, or anything else on the site.
 *
 * Mobile-first: defaults work below 768px; desktop refinements kick in via
 * @media queries. Reduced-motion is honored at the bottom.
 *
 * @since 3.41
 */

/* ============================================================
   1. DESIGN TOKENS — scoped under .tac-pm2 to avoid global leak
   ============================================================ */

.tac-pm2 {
	--tac-pm2-bg: #ffffff;
	--tac-pm2-bg-soft: #f7f8fb;
	--tac-pm2-bg-dark: #08111f;
	--tac-pm2-text: #111827;
	--tac-pm2-text-muted: #6b7280;
	--tac-pm2-text-soft: #9ca3af;
	--tac-pm2-border: #e5e7eb;
	--tac-pm2-primary: #1a3e78;
	--tac-pm2-primary-dark: #0f3758;
	--tac-pm2-primary-soft: #eff6ff;
	--tac-pm2-success: #16a34a;
	--tac-pm2-warning: #f59e0b;
	--tac-pm2-radius-sm: 10px;
	--tac-pm2-radius-md: 16px;
	--tac-pm2-radius-lg: 24px;
	--tac-pm2-radius-xl: 32px;
	--tac-pm2-shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
	--tac-pm2-shadow-md: 0 16px 40px rgba(15, 23, 42, 0.10);
	--tac-pm2-shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.14);
	--tac-pm2-max: 1180px;
	--tac-pm2-space-1: 4px;
	--tac-pm2-space-2: 8px;
	--tac-pm2-space-3: 12px;
	--tac-pm2-space-4: 16px;
	--tac-pm2-space-5: 24px;
	--tac-pm2-space-6: 32px;
	--tac-pm2-space-7: 48px;
	--tac-pm2-space-8: 72px;
	--tac-pm2-space-9: 96px;

	color: var(--tac-pm2-text);
	background: var(--tac-pm2-bg);
	font-family: inherit;

	/* v3.56 — Full-bleed restored, with overflow nuance.
	 *
	 * The Astra-bridge approach (v3.55) didn't deliver: even with the
	 * astra_get_content_layout filter set to 'page-builder', Astra kept
	 * rendering with a constrained content wrapper on the user's site.
	 * We're back to the negative-margin technique, but with two
	 * critical changes versus v3.51:
	 *
	 * 1) overflow-x is `clip` (not `hidden`).
	 *    Per CSS Overflow 3 spec:
	 *      - overflow-x: hidden  + overflow-y: visible
	 *        → overflow-y is COMPUTED to `auto`. Element becomes a Y-axis
	 *          scroll container. If a parent flex/grid setup ever forces a
	 *          height on .tac-pm2, content overflows → internal scrollbar
	 *          appears INSIDE .tac-pm2. This is the most likely root cause
	 *          of the "double scrollbar" reported on Astra.
	 *      - overflow-x: clip    + overflow-y: visible
	 *        → overflow-y becomes `clip` too (NOT `auto`). Element does
	 *          NOT become a scroll container. No internal scrollbar can
	 *          ever appear, even under a flex parent. Clipping is paint-
	 *          only, no scroll mechanism is set up.
	 *    Browser support for `clip`: Chrome 90+ (2021), Firefox 81+ (2020),
	 *    Safari 15.4+ (2022). The `hidden` declaration above acts as a
	 *    fallback for older browsers.
	 *
	 * 2) NOTHING is touched on `html` or `body`.
	 *    Earlier sprints (v3.52 / v3.53) added body / html overflow rules
	 *    to clip the negative-margin overshoot at the document level.
	 *    Those rules conflicted with Astra's body { overflow-y: scroll }
	 *    anti-jank pattern, creating a parallel scroll container. With
	 *    overflow-x: clip on .tac-pm2 itself + Astra's existing overflow
	 *    rules on body, the overshoot is contained without touching root
	 *    elements. */
	overflow-x: hidden; /* fallback for browsers without `clip` support */
	overflow-x: clip;   /* modern: clip preserves overflow-y as visible/clip, no scroll container */

	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
}

/* Defensive reset — only inside .tac-pm2 */
.tac-pm2 * { box-sizing: border-box; }
.tac-pm2 img { max-width: 100%; height: auto; display: block; }

/* v3.56 — No html / body overflow rules.
 *
 * Earlier sprints added `html { overflow-x: clip }` (v3.53) or
 * `body { overflow-x: clip }` (v3.52) to clip the negative-margin
 * overshoot at the document level. Both interacted badly with Astra's
 * `body { overflow-y: scroll }` anti-jank pattern. v3.56 leaves html and
 * body alone and instead clips the overshoot at .tac-pm2 itself via
 * `overflow-x: clip` (above), which per spec does NOT promote overflow-y
 * to `auto` — no scroll container is created on .tac-pm2 or any root. */

/* ============================================================
   2. LAYOUT PRIMITIVES
   ============================================================ */

.tac-pm2-section {
	padding: var(--tac-pm2-space-8) var(--tac-pm2-space-5);
}
.tac-pm2-container {
	max-width: var(--tac-pm2-max);
	margin: 0 auto;
}

.tac-pm2-section-head {
	max-width: 760px;
	margin-bottom: 38px;
}
.tac-pm2-section-title {
	margin: 16px 0 12px;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.02;
	letter-spacing: -.045em;
	font-weight: 800;
}
.tac-pm2-section-text {
	font-size: 18px;
	line-height: 1.6;
	color: var(--tac-pm2-text-muted);
	margin: 0;
}

.tac-pm2-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--tac-pm2-primary-soft);
	color: var(--tac-pm2-primary-dark);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.tac-pm2-title {
	margin: 18px 0 16px;
	font-size: clamp(38px, 6vw, 72px);
	line-height: 0.96;
	letter-spacing: -0.055em;
	font-weight: 800;
	color: var(--tac-pm2-text);
}
.tac-pm2-subtitle {
	max-width: 720px;
	font-size: clamp(18px, 2vw, 23px);
	line-height: 1.5;
	color: var(--tac-pm2-text-muted);
	margin: 0;
}

.tac-pm2-grid {
	display: grid;
	gap: var(--tac-pm2-space-5);
}

.tac-pm2-card {
	background: #fff;
	border: 1px solid var(--tac-pm2-border);
	border-radius: var(--tac-pm2-radius-lg);
	box-shadow: var(--tac-pm2-shadow-sm);
}

/* ============================================================
   3. BUTTONS
   ============================================================ */

.tac-pm2-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	font-family: inherit;
}
.tac-pm2-btn:hover { transform: translateY(-1px); }
.tac-pm2-btn:focus-visible {
	outline: 2px solid var(--tac-pm2-primary);
	outline-offset: 3px;
}

.tac-pm2-btn--primary {
	background: var(--tac-pm2-primary);
	color: #fff;
	box-shadow: 0 12px 28px rgba(37, 99, 235, .28);
}
.tac-pm2-btn--primary:hover {
	background: var(--tac-pm2-primary-dark);
	color: #fff;
}

.tac-pm2-btn--secondary {
	background: #fff;
	color: var(--tac-pm2-text);
	border: 1px solid var(--tac-pm2-border);
}
.tac-pm2-btn--secondary:hover {
	border-color: var(--tac-pm2-text);
	color: var(--tac-pm2-text);
}

/* v4.23 — Specificity fix: Elementor global rule `.elementor-kit-5 a { color:#000 }`
 * has specificity (0,1,1)=11 and overrides `.tac-pm2-btn--primary { color:#fff }` (0,1,0)=10.
 * Doubling the class selector raises our specificity to (0,2,0)=20 — no !important needed.
 * Same fix applied to --secondary to prevent Elementor a:hover (#15DB95) from leaking in. */
.tac-pm2-btn.tac-pm2-btn--primary,
.tac-pm2-btn.tac-pm2-btn--primary:hover,
.tac-pm2-btn.tac-pm2-btn--primary:visited { color: #fff; }

/* v4.26 — Also lock background on secondary hover: Astra
   `button:hover { background-color:#3a3a3a }` was turning the
   ghost button dark grey on hover (only <button> elements affected,
   not <a> tags). background:transparent on default + background:#fff
   on hover restores the intended ghost → white-filled transition. */
.tac-pm2-btn.tac-pm2-btn--secondary,
.tac-pm2-btn.tac-pm2-btn--secondary:visited {
	color: var(--tac-pm2-text);
	background: transparent;
}
.tac-pm2-btn.tac-pm2-btn--secondary:hover {
	color: var(--tac-pm2-text);
	background: #fff;
	border-color: var(--tac-pm2-text);
}

/* ============================================================
   4. HERO
   ============================================================ */

.tac-pm2-hero {
	position: relative;
	padding-top: 96px;
	background:
		radial-gradient(circle at top right, rgba(37,99,235,.14), transparent 36%),
		linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.tac-pm2-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
	gap: 56px;
	align-items: center;
}
.tac-pm2-hero__actions {
	display: flex;
	gap: 14px;
	margin-top: 32px;
	flex-wrap: wrap;
}
.tac-pm2-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	margin-top: 28px;
	color: var(--tac-pm2-text-muted);
	font-size: 14px;
}
.tac-pm2-hero__proof span::before {
	content: "✓ ";
	color: var(--tac-pm2-success);
	font-weight: 800;
}
/* v3.66 — Trust signals custom (HTML i18n_kses_inline saisi par l'admin).
   Quand l'admin remplit `tac_v1_hero.trust_signals`, les puces ✓ sont retirées
   pour laisser la liberté de mise en forme. Le sanitize garantit que seuls
   <strong>, <em>, <a>, <span>, <br> sont autorisés. */
.tac-pm2-hero__proof--custom { gap: 8px 14px; }
.tac-pm2-hero__proof--custom > * { display: inline; }
.tac-pm2-hero__proof--custom span::before { content: none; }
.tac-pm2-hero__proof--custom a {
	color: var(--tac-pm2-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* v3.66 — Hero bullets (avantages courts éditables). */
.tac-pm2-hero__bullets {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	gap: 8px;
}
.tac-pm2-hero__bullets li {
	position: relative;
	padding-left: 26px;
	font-size: 15px;
	color: var(--tac-pm2-text);
	line-height: 1.55;
}
.tac-pm2-hero__bullets li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 1px;
	color: var(--tac-pm2-success);
	font-weight: 800;
	font-size: 14px;
}

/* v3.66 — designed_for : badges légers indiquant le public visé (legacy meta). */
.tac-pm2-hero__designed-for {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 18px;
}
.tac-pm2-hero__designed-for-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--tac-pm2-text-muted);
}
.tac-pm2-hero__designed-for-tag {
	display: inline-block;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--tac-pm2-primary-dark);
	background: rgba(18,30,54,0.06);
	border-radius: 999px;
	white-space: nowrap;
}

.tac-pm2-hero__panel {
	padding: 28px;
	position: relative;
}
/* v3.66 — Certificate image en haut du panel (badge accreditation). */
.tac-pm2-hero__panel-cert {
	display: flex;
	justify-content: center;
	margin: -8px 0 18px;
}
.tac-pm2-hero__panel-cert-img {
	/* v3.78 — bumped from 64px / 50% to 110px / 70% for more presence. */
	max-height: 110px;
	max-width: 70%;
	height: auto;
	width: auto;
	object-fit: contain;
}
/* v3.66 — Context copy : phrase contextuelle de la prochaine session. */
.tac-pm2-hero__panel-context {
	margin-top: 16px;
	padding: 10px 14px;
	background: rgba(18,30,54,0.05);
	border-radius: 8px;
	font-size: 13px;
	color: var(--tac-pm2-text);
	line-height: 1.5;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.tac-pm2-hero__panel-label {
	font-size: 13px;
	font-weight: 800;
	color: var(--tac-pm2-primary-dark);
	text-transform: uppercase;
	letter-spacing: .08em;
}
.tac-pm2-hero__panel-date {
	margin-top: 14px;
	font-size: 30px;
	font-weight: 850;
	letter-spacing: -.03em;
	line-height: 1.1;
}
.tac-pm2-hero__panel-meta {
	margin: 10px 0 18px;
	color: var(--tac-pm2-text-muted);
	font-size: 14px;
}
.tac-pm2-hero__panel-price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 18px 0 22px;
	padding: 14px 16px;
	background: var(--tac-pm2-primary-soft);
	border-radius: var(--tac-pm2-radius-md);
}
.tac-pm2-hero__panel-price-amount {
	font-size: 28px;
	font-weight: 850;
	letter-spacing: -.03em;
	color: var(--tac-pm2-primary-dark);
}
.tac-pm2-hero__panel-price-reg,
.tac-pm2-session-card__price-reg,
.tac-pm2-pricing-card__price-reg,
.tac-pm2-sessions__top-price-reg {
	color: var(--tac-pm2-text-muted);
	text-decoration: line-through;
	text-decoration-thickness: 1.5px;
	text-decoration-color: rgba(15, 55, 88, 0.45);
	font-variant-numeric: tabular-nums;
}
.tac-pm2-hero__panel-price-reg {
	font-size: 15px;
	font-weight: 750;
}
.tac-pm2-hero__panel-price-label {
	font-size: 13px;
	color: var(--tac-pm2-text-muted);
}

/* ============================================================
   4b. QUICK PROOF (HIGHLIGHTS) — v3.66 (Étape 2)
   Cards très courtes affichées juste après le hero, avant la trust-bar.
   Source : tac_v1_highlights (back-office "Quick proof" tab).
   ============================================================ */

.tac-pm2-quickproof {
	padding: 24px 20px 8px;
}
.tac-pm2-quickproof__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}
.tac-pm2-quickproof__item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 16px 18px;
	border: 1px solid var(--tac-pm2-border);
	border-radius: var(--tac-pm2-radius-lg);
	background: #fff;
	box-shadow: var(--tac-pm2-shadow-sm);
}
.tac-pm2-quickproof__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(18,30,54,0.06);
	color: var(--tac-pm2-primary);
	font-size: 16px;
}
.tac-pm2-quickproof__body { min-width: 0; }
.tac-pm2-quickproof__title {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
	color: var(--tac-pm2-text);
	line-height: 1.3;
}
.tac-pm2-quickproof__text {
	margin: 0;
	font-size: 13px;
	color: var(--tac-pm2-text-muted);
	line-height: 1.5;
}

/* ============================================================
   5. TRUST BAR
   ============================================================ */

.tac-pm2-trust {
	padding: 20px;
}
.tac-pm2-trust__inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	padding: 22px 26px;
	border: 1px solid var(--tac-pm2-border);
	border-radius: var(--tac-pm2-radius-lg);
	background: #fff;
	box-shadow: var(--tac-pm2-shadow-sm);
}
.tac-pm2-trust__lead strong { font-weight: 800; }
.tac-pm2-trust__lead span,
.tac-pm2-trust__inner span {
	display: block;
	color: var(--tac-pm2-text-muted);
	font-size: 14px;
}
.tac-pm2-trust__metrics {
	display: flex;
	gap: 28px;
}
.tac-pm2-trust__metrics div strong {
	display: block;
	font-weight: 850;
	font-size: 18px;
	letter-spacing: -.02em;
}

/* ============================================================
   6. OUTCOMES
   ============================================================ */

.tac-pm2-outcomes__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.tac-pm2-outcome-card { padding: 26px; }
.tac-pm2-outcome-card__icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: var(--tac-pm2-primary-soft);
	color: var(--tac-pm2-primary-dark);
	font-weight: 900;
}
.tac-pm2-outcome-card h3 {
	margin: 22px 0 10px;
	font-size: 21px;
	letter-spacing: -.02em;
}
.tac-pm2-outcome-card p {
	color: var(--tac-pm2-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* ============================================================
   7. AUDIENCE
   ============================================================ */

.tac-pm2-audience__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.tac-pm2-audience-card { padding: 28px; }
.tac-pm2-audience-card__title {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 800;
}
.tac-pm2-audience-card--positive .tac-pm2-audience-card__title { color: var(--tac-pm2-success); }
.tac-pm2-audience-card--negative .tac-pm2-audience-card__title { color: var(--tac-pm2-text-muted); }
.tac-pm2-audience-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}
.tac-pm2-audience-card__list li {
	display: grid;
	gap: 4px;
	padding-left: 26px;
	position: relative;
}
.tac-pm2-audience-card__list li::before {
	content: "✓";
	color: var(--tac-pm2-success);
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 1px;
}
.tac-pm2-audience-card__list--neg li::before {
	content: "—";
	color: var(--tac-pm2-text-soft);
}
.tac-pm2-audience-card__list strong { font-weight: 800; }
.tac-pm2-audience-card__list span {
	color: var(--tac-pm2-text-muted);
	font-size: 15px;
	line-height: 1.55;
}

/* ============================================================
   8. CURRICULUM
   ============================================================ */

.tac-pm2-curriculum__list {
	display: grid;
	gap: 12px;
}
.tac-pm2-curriculum__module {
	border: 1px solid var(--tac-pm2-border);
	border-radius: var(--tac-pm2-radius-md);
	background: #fff;
	overflow: hidden;
}
.tac-pm2-curriculum__module[open] {
	box-shadow: var(--tac-pm2-shadow-sm);
}
.tac-pm2-curriculum__summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 22px;
	font-weight: 800;
}
.tac-pm2-curriculum__summary::-webkit-details-marker { display: none; }
.tac-pm2-curriculum__step {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: var(--tac-pm2-primary-soft);
	color: var(--tac-pm2-primary-dark);
	font-weight: 900;
	font-size: 13px;
}
.tac-pm2-curriculum__title {
	flex: 1;
	letter-spacing: -.01em;
}
.tac-pm2-curriculum__duration {
	font-weight: 700;
	color: var(--tac-pm2-text-muted);
	font-size: 14px;
}
.tac-pm2-curriculum__icon {
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: var(--tac-pm2-bg-soft);
	color: var(--tac-pm2-text);
	font-weight: 800;
	transition: transform .2s ease;
}
.tac-pm2-curriculum__module[open] .tac-pm2-curriculum__icon { transform: rotate(45deg); }
.tac-pm2-curriculum__body {
	padding: 0 22px 20px;
	color: var(--tac-pm2-text-muted);
	line-height: 1.65;
}
.tac-pm2-curriculum__body p { margin: 0 0 12px; }
.tac-pm2-curriculum__body ul { margin: 8px 0 0; padding-left: 20px; }
.tac-pm2-curriculum__body li { margin-bottom: 6px; }

/* ============================================================
   9. SESSIONS
   ============================================================ */

.tac-pm2-sessions { background: var(--tac-pm2-bg-soft); }

/* Sprint 32C — Currency switcher controls row, only rendered when both
   price_eur and price_usd are configured in canonical pricing. */
.tac-pm2-sessions__controls {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 28px;
	padding: 10px 14px;
	border: 1px solid var(--tac-pm2-border);
	border-radius: 999px;
	background: #fff;
	box-shadow: var(--tac-pm2-shadow-sm);
}
.tac-pm2-sessions__control-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--tac-pm2-text-muted);
}
.tac-pm2-sessions__control-select {
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	color: var(--tac-pm2-text);
	border: none;
	background: transparent;
	padding: 4px 4px 4px 0;
	cursor: pointer;
	min-height: 28px;
}
.tac-pm2-sessions__control-select:focus-visible {
	outline: 2px solid var(--tac-pm2-primary);
	outline-offset: 2px;
	border-radius: 4px;
}
.tac-pm2-sessions__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.tac-pm2-session-card {
	position: relative;
	padding: 22px 26px 14px; /* v4.57 — réduit espace vide sous le CTA */
}
.tac-pm2-session-card--featured {
	border: 2px solid var(--tac-pm2-primary);
	box-shadow: var(--tac-pm2-shadow-md);
}
.tac-pm2-session-card--past {
	opacity: .55;
	filter: grayscale(.4);
}
.tac-pm2-session-card__badge {
	display: inline-flex;
	padding: 7px 11px;
	border-radius: 999px;
	background: var(--tac-pm2-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 18px;
	letter-spacing: .04em;
}
.tac-pm2-session-card h3 {
	font-size: 27px;
	font-weight: 750;
	line-height: 1.08;
	margin: 0 0 6px;
	letter-spacing: 0;
	color: var(--tac-pm2-text, #0f172a);
}
.tac-pm2-session-card__date {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 16px;
}
.tac-pm2-session-card__date span {
	font-weight: 600;
	color: var(--tac-pm2-text-muted);
	font-size: 14px;
}
.tac-pm2-session-card__meta {
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
	display: grid;
	gap: 2px;
	color: var(--tac-pm2-text-muted);
	font-size: 14px;
}
.tac-pm2-session-card__meta li::before {
	content: "✓ ";
	color: var(--tac-pm2-success);
	font-weight: 900;
}
.tac-pm2-session-card__btn { width: 100%; }
.tac-pm2-session-card__reassurance {
	margin: 8px 0 0;
	font-size: 13px;
	color: var(--tac-pm2-text-muted);
	text-align: center;
}

/* Sprint 33C — Per-card price line (rendered only when card_pricing_visible='shown'). */
.tac-pm2-session-card__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap; /* v4.58 — permet __price-flexible de passer à la ligne */
	gap: 8px;
	margin: 0 0 16px;
	padding: 12px 14px;
	background: var(--tac-pm2-primary-soft);
	border-radius: var(--tac-pm2-radius-md);
}
.tac-pm2-session-card__price-amount {
	font-size: 22px;
	font-weight: 850;
	letter-spacing: -.02em;
	color: var(--tac-pm2-primary-dark);
	line-height: 1;
}
.tac-pm2-session-card__price-label {
	font-size: 13px;
	color: var(--tac-pm2-text-muted);
}
/* v4.54/v4.58 */
.tac-pm2-session-card__price-flexible {
	flex-basis: 100%;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 500;
	color: var(--tac-pm2-success, #16a34a);
	letter-spacing: .01em;
}
.tac-pm2-session-card__price-reg {
	font-size: 15px;
	font-weight: 750;
}
.tac-pm2-session-card--featured .tac-pm2-session-card__price {
	background: linear-gradient(135deg, var(--tac-pm2-primary-soft) 0%, #ffffff 100%);
}

/* ============================================================
   10. PRICING
   ============================================================ */

.tac-pm2-pricing__grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 56px;
	align-items: center;
}
.tac-pm2-pricing-card {
	padding: 34px;
	box-shadow: var(--tac-pm2-shadow-lg);
}
.tac-pm2-pricing-card__label {
	color: var(--tac-pm2-text-muted);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .07em;
}
.tac-pm2-pricing-card__price {
	margin-top: 10px;
	font-size: 56px;
	line-height: 1;
	letter-spacing: -.06em;
	font-weight: 900;
}
.tac-pm2-pricing-card__price-reg {
	margin-top: 8px;
	font-size: 18px;
	font-weight: 750;
}
.tac-pm2-pricing-card__tax {
	margin-top: 8px;
	color: var(--tac-pm2-text-muted);
	font-size: 14px;
}
.tac-pm2-pricing-card__list {
	margin: 28px 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}
.tac-pm2-pricing-card__list li::before {
	content: "✓ ";
	color: var(--tac-pm2-success);
	font-weight: 900;
}
.tac-pm2-pricing-card .tac-pm2-btn { width: 100%; }

/* ============================================================
   11. TESTIMONIALS
   ============================================================ */

.tac-pm2-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.tac-pm2-testimonial { padding: 28px; }
.tac-pm2-testimonial__stars {
	color: #f59e0b;
	letter-spacing: 2px;
	margin-bottom: 18px;
}
.tac-pm2-testimonial p {
	font-size: 17px;
	line-height: 1.65;
	margin: 0;
}
.tac-pm2-testimonial__author {
	margin-top: 24px;
}
.tac-pm2-testimonial__author span {
	display: block;
	color: var(--tac-pm2-text-muted);
	font-size: 14px;
}

/* ============================================================
   12. FAQ
   ============================================================ */

.tac-pm2-faq__list {
	max-width: 820px;
	display: grid;
	gap: 12px;
}
.tac-pm2-faq__item {
	border: 1px solid var(--tac-pm2-border);
	border-radius: var(--tac-pm2-radius-md);
	padding: 18px 22px;
	background: #fff;
}
.tac-pm2-faq__item summary {
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}
.tac-pm2-faq__item summary::-webkit-details-marker { display: none; }
.tac-pm2-faq__item summary::after {
	content: "+";
	float: right;
	color: var(--tac-pm2-text-muted);
	font-weight: 800;
}
.tac-pm2-faq__item[open] summary::after { content: "–"; }
.tac-pm2-faq__item div {
	margin-top: 14px;
	color: var(--tac-pm2-text-muted);
	line-height: 1.6;
}
.tac-pm2-faq__item div p { margin: 0 0 10px; }

/* ============================================================
   13. FINAL CTA
   ============================================================ */

.tac-pm2-final-cta { padding-bottom: 120px; }
.tac-pm2-final-cta__inner {
	text-align: center;
	padding: 72px 32px;
	border-radius: var(--tac-pm2-radius-xl);
	background:
		radial-gradient(circle at top left, rgba(255,255,255,.22), transparent 36%),
		linear-gradient(135deg, #08111f 0%, #10284e 100%);
	color: #fff;
}
.tac-pm2-final-cta__inner .tac-pm2-eyebrow {
	background: rgba(255,255,255,.10);
	color: #fff;
}
.tac-pm2-final-cta__inner h2 {
	max-width: 780px;
	margin: 20px auto 14px;
	font-size: clamp(34px, 5vw, 60px);
	line-height: 1.02;
	letter-spacing: -.05em;
	font-weight: 800;
	color: #fff;
}
.tac-pm2-final-cta__inner p,
.tac-pm2-final-cta__body {
	max-width: 640px;
	margin: 0 auto 28px;
	color: rgba(255,255,255,.78);
	font-size: 18px;
	line-height: 1.55;
}
/* Doubled class → (0,3,0)=30, beats the global .tac-pm2-btn.tac-pm2-btn--primary
   fix added in v4.23 which sits at (0,2,0)=20. Without this the white button
   would inherit color:#fff → invisible text on white background. */
.tac-pm2-final-cta__inner .tac-pm2-btn.tac-pm2-btn--primary {
	background: #fff;
	color: var(--tac-pm2-primary-dark);
	box-shadow: 0 16px 32px rgba(0,0,0,.30);
}
.tac-pm2-final-cta__inner .tac-pm2-btn.tac-pm2-btn--primary:hover,
.tac-pm2-final-cta__inner .tac-pm2-btn.tac-pm2-btn--primary:visited {
	background: var(--tac-pm2-primary-soft);
	color: var(--tac-pm2-primary-dark);
}

/* v4.24 — Specificity fix: .elementor-kit-5 h2/p { color:#000 } (0,1,1=11)
 * overrides our .tac-pm2-final-cta__inner h2/p (also 0,1,1=11) because
 * Elementor's post-5.css loads after our stylesheet (last rule wins on tie).
 * Adding the section parent raises us to (0,2,1=21) — no !important needed. */
.tac-pm2-final-cta .tac-pm2-final-cta__inner h2 { color: #fff; }
.tac-pm2-final-cta .tac-pm2-final-cta__inner p,
.tac-pm2-final-cta .tac-pm2-final-cta__body   { color: rgba(255,255,255,.78); }

/* ============================================================
   14. STICKY MOBILE CTA — hidden on desktop
   ============================================================ */

.tac-pm2-mobile-cta { display: none; }

/* ============================================================
   14b. WHY NOW (problem / market tension)            v3.61
   ============================================================ */

.tac-pm2-whynow { background: var(--tac-pm2-bg-soft); }
.tac-pm2-whynow__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.tac-pm2-whynow__card {
	padding: 26px;
	display: grid;
	gap: 14px;
	border-left: 3px solid var(--tac-pm2-warning);
}
.tac-pm2-whynow__icon {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(245, 158, 11, .14);
	color: var(--tac-pm2-warning);
	font-weight: 900;
	font-size: 18px;
}
.tac-pm2-whynow__card p {
	margin: 0;
	color: var(--tac-pm2-text);
	font-size: 16px;
	line-height: 1.55;
}

/* ============================================================
   14c. VALUE PROPOSITION (TAC differentiators)        v3.61
   ============================================================ */

.tac-pm2-valueprop__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.tac-pm2-valueprop__card {
	padding: 28px;
	display: grid;
	gap: 12px;
}
.tac-pm2-valueprop__icon {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: var(--tac-pm2-primary-soft);
	color: var(--tac-pm2-primary-dark);
	font-weight: 900;
	font-size: 20px;
}
.tac-pm2-valueprop__card h3 {
	margin: 6px 0 0;
	font-size: 21px;
	letter-spacing: -.02em;
	font-weight: 800;
}
.tac-pm2-valueprop__card p,
.tac-pm2-valueprop__body {
	margin: 0;
	color: var(--tac-pm2-text-muted);
	line-height: 1.6;
	font-size: 16px;
}
.tac-pm2-valueprop__body p { margin: 0 0 8px; }
.tac-pm2-valueprop__body p:last-child { margin-bottom: 0; }

/* ============================================================
   14d. WHAT'S INCLUDED (offer stack)                  v3.61
   ============================================================ */

.tac-pm2-included { background: var(--tac-pm2-bg-soft); }
.tac-pm2-included__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}
.tac-pm2-included__item {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 16px;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--tac-pm2-border);
	border-radius: var(--tac-pm2-radius-md);
	box-shadow: var(--tac-pm2-shadow-sm);
}
.tac-pm2-included__icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(22, 163, 74, .12);
	color: var(--tac-pm2-success);
	font-weight: 900;
	font-size: 18px;
}
.tac-pm2-included__copy { display: grid; gap: 6px; }
.tac-pm2-included__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.tac-pm2-included__head strong {
	font-size: 16px;
	font-weight: 800;
}
.tac-pm2-included__tag {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--tac-pm2-primary-soft);
	color: var(--tac-pm2-primary-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .02em;
}
.tac-pm2-included__copy p {
	margin: 0;
	color: var(--tac-pm2-text-muted);
	font-size: 15px;
	line-height: 1.55;
}

/* ============================================================
   14e. RISK REVERSAL                                  v3.61
   ============================================================ */

.tac-pm2-riskreversal__inner {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 32px;
	align-items: center;
	padding: 32px;
	border-radius: var(--tac-pm2-radius-lg);
	background:
		linear-gradient(135deg, rgba(22, 163, 74, .06) 0%, rgba(22, 163, 74, .02) 100%),
		#fff;
	border: 1px solid rgba(22, 163, 74, .25);
	box-shadow: var(--tac-pm2-shadow-sm);
}
.tac-pm2-riskreversal__badge {
	display: grid;
	place-items: center;
	gap: 10px;
	padding: 24px;
	border-radius: var(--tac-pm2-radius-md);
	background: var(--tac-pm2-success);
	color: #fff;
	text-align: center;
	box-shadow: 0 12px 28px rgba(22, 163, 74, .25);
}
.tac-pm2-riskreversal__icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	font-size: 28px;
	font-weight: 900;
}
.tac-pm2-riskreversal__label {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.tac-pm2-riskreversal__title {
	margin: 0 0 10px;
	font-size: clamp(24px, 3vw, 32px);
	letter-spacing: -.03em;
	font-weight: 800;
	color: var(--tac-pm2-text);
}
.tac-pm2-riskreversal__body {
	margin: 0;
	color: var(--tac-pm2-text-muted);
	font-size: 17px;
	line-height: 1.6;
}
.tac-pm2-riskreversal__body p { margin: 0 0 10px; }
.tac-pm2-riskreversal__body p:last-child { margin-bottom: 0; }
.tac-pm2-riskreversal__body ul,
.tac-pm2-riskreversal__body ol {
	margin: 8px 0 0;
	padding-left: 22px;
}
.tac-pm2-riskreversal__body li { margin-bottom: 6px; }

/* ============================================================
   14f. PROOF METRICS (full block)                     v3.62
   ============================================================ */

.tac-pm2-proofmetrics { background: var(--tac-pm2-bg); }
.tac-pm2-proofmetrics__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.tac-pm2-proofmetrics__cell {
	display: grid;
	gap: 6px;
	padding: 26px;
	border-radius: var(--tac-pm2-radius-md);
	background: linear-gradient(180deg, var(--tac-pm2-primary-soft) 0%, #fff 100%);
	border: 1px solid var(--tac-pm2-border);
	text-align: center;
}
.tac-pm2-proofmetrics__value {
	font-size: clamp(36px, 5vw, 56px);
	line-height: 1;
	letter-spacing: -.04em;
	font-weight: 800;
	color: var(--tac-pm2-primary-dark);
}
.tac-pm2-proofmetrics__label {
	font-size: 14px;
	color: var(--tac-pm2-text-muted);
	line-height: 1.4;
}

/* ============================================================
   14g. CERTIFICATION (career ROI timeline)            v3.62
   ============================================================ */

.tac-pm2-certification { background: var(--tac-pm2-bg-soft); }
.tac-pm2-certification__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 18px;
	max-width: 880px;
}
.tac-pm2-certification__step {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 22px;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--tac-pm2-border);
	border-radius: var(--tac-pm2-radius-md);
	box-shadow: var(--tac-pm2-shadow-sm);
	position: relative;
}
.tac-pm2-certification__step + .tac-pm2-certification__step::before {
	content: "";
	position: absolute;
	left: 53px;
	top: -20px;
	width: 2px;
	height: 20px;
	background: var(--tac-pm2-primary-soft);
}
.tac-pm2-certification__badge {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--tac-pm2-primary);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: -.02em;
	box-shadow: 0 8px 18px rgba(37, 99, 235, .25);
}
.tac-pm2-certification__copy h3 {
	margin: 0 0 6px;
	font-size: 19px;
	letter-spacing: -.02em;
	font-weight: 800;
}
.tac-pm2-certification__copy p {
	margin: 0;
	color: var(--tac-pm2-text-muted);
	line-height: 1.6;
	font-size: 16px;
}

/* ============================================================
   14h. TRAINERS                                       v3.62
   ============================================================ */

.tac-pm2-trainers__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.tac-pm2-trainer {
	display: grid;
	gap: 0;
	overflow: hidden;
	padding: 0;
}
.tac-pm2-trainer__photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--tac-pm2-bg-soft);
}
.tac-pm2-trainer__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.tac-pm2-trainer__copy { padding: 22px 24px 26px; display: grid; gap: 6px; }
.tac-pm2-trainer__name {
	margin: 0;
	font-size: 19px;
	letter-spacing: -.02em;
	font-weight: 800;
}
.tac-pm2-trainer__role {
	margin: 0;
	color: var(--tac-pm2-text);
	font-size: 14px;
	font-weight: 600;
}
.tac-pm2-trainer__cred {
	margin: 0;
	color: var(--tac-pm2-primary-dark);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
}
.tac-pm2-trainer__bio {
	margin-top: 8px;
	color: var(--tac-pm2-text-muted);
	font-size: 15px;
	line-height: 1.55;
}
.tac-pm2-trainer__bio p { margin: 0 0 8px; }
.tac-pm2-trainer__bio p:last-child { margin-bottom: 0; }
.tac-pm2-trainer__links {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 700;
}
.tac-pm2-trainer__links a {
	color: var(--tac-pm2-primary);
	text-decoration: none;
}
.tac-pm2-trainer__links a:hover { color: var(--tac-pm2-primary-dark); }

/* ============================================================
   14i. LONG DESCRIPTION (SEO bottom)                  v3.62
   ============================================================ */

.tac-pm2-longdesc {
	background: var(--tac-pm2-bg-soft);
	padding-top: 56px;
	padding-bottom: 80px;
}
.tac-pm2-longdesc__title {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 700;
	color: var(--tac-pm2-text);
	letter-spacing: -.02em;
}
.tac-pm2-longdesc__body {
	max-width: 760px;
	color: var(--tac-pm2-text-muted);
	font-size: 16px;
	line-height: 1.7;
}
.tac-pm2-longdesc__body p { margin: 0 0 12px; }
.tac-pm2-longdesc__body p:last-child { margin-bottom: 0; }
.tac-pm2-longdesc__body h2,
.tac-pm2-longdesc__body h3,
.tac-pm2-longdesc__body h4 {
	margin: 24px 0 8px;
	color: var(--tac-pm2-text);
	font-weight: 700;
	letter-spacing: -.01em;
}
.tac-pm2-longdesc__body h2 { font-size: 20px; }
.tac-pm2-longdesc__body h3 { font-size: 17px; }
.tac-pm2-longdesc__body h4 { font-size: 15px; }
.tac-pm2-longdesc__body ul,
.tac-pm2-longdesc__body ol { padding-left: 22px; }
.tac-pm2-longdesc__body li { margin-bottom: 6px; }
.tac-pm2-longdesc__body a {
	color: var(--tac-pm2-primary-dark);
	text-decoration: underline;
}

/* ============================================================
   15. SCROLL REVEAL — driven by premium-v2.js
   ============================================================ */

.tac-pm2-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s ease, transform .6s ease;
}
.tac-pm2-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   16. RESPONSIVE
   ============================================================ */

/* Hero stacks on tablets and below. */
@media (max-width: 900px) {
	.tac-pm2-hero__grid          { grid-template-columns: 1fr; gap: 32px; }
	.tac-pm2-outcomes__grid      { grid-template-columns: 1fr; }
	.tac-pm2-audience__grid      { grid-template-columns: 1fr; }
	.tac-pm2-sessions__grid      { grid-template-columns: 1fr; }
	.tac-pm2-pricing__grid       { grid-template-columns: 1fr; gap: 32px; }
	.tac-pm2-testimonials__grid  { grid-template-columns: 1fr; }
	/* v3.61 — sales-flow sections */
	.tac-pm2-whynow__grid        { grid-template-columns: 1fr; }
	.tac-pm2-valueprop__grid     { grid-template-columns: 1fr; }
	.tac-pm2-included__list      { grid-template-columns: 1fr; }
	.tac-pm2-riskreversal__inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 24px;
		padding: 28px 22px;
	}
	.tac-pm2-riskreversal__badge { max-width: 240px; margin: 0 auto; }
	/* v3.62 — completing the ideal order */
	.tac-pm2-proofmetrics__grid    { grid-template-columns: repeat(2, 1fr); }
	.tac-pm2-trainers__grid        { grid-template-columns: 1fr; }
	.tac-pm2-certification__step   { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px; }
	.tac-pm2-certification__step + .tac-pm2-certification__step::before { left: 44px; }
	.tac-pm2-certification__badge  { width: 48px; height: 48px; font-size: 16px; }
}

/* Mobile-only refinements for the v3.62 partials. */
@media (max-width: 540px) {
	.tac-pm2-proofmetrics__grid { grid-template-columns: 1fr; }
}

/* Mobile-first refinements + sticky bar. */
@media (max-width: 768px) {
	.tac-pm2-section { padding: 56px 18px; }
	.tac-pm2-hero    { padding-top: 64px; }
	.tac-pm2-title   { font-size: clamp(38px, 12vw, 52px); }
	.tac-pm2-subtitle{ font-size: 17px; }
	.tac-pm2-btn     { width: 100%; }

	.tac-pm2-trust__inner,
	.tac-pm2-trust__metrics {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.tac-pm2-mobile-cta {
		position: fixed;
		z-index: 9999;
		left: 12px;
		right: 12px;
		bottom: 12px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 12px 14px;
		background: rgba(255,255,255,.94);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
		border: 1px solid var(--tac-pm2-border);
		border-radius: 20px;
		box-shadow: var(--tac-pm2-shadow-lg);
	}
	.tac-pm2-mobile-cta__copy strong {
		display: block;
		font-size: 13px;
		font-weight: 800;
	}
	.tac-pm2-mobile-cta__copy span {
		display: block;
		font-size: 12px;
		color: var(--tac-pm2-text-muted);
	}
	.tac-pm2-mobile-cta .tac-pm2-btn {
		width: auto;
		min-height: 40px;
		padding: 10px 18px;
		flex-shrink: 0;
	}

	/* Add bottom padding so the sticky bar never covers the final CTA */
	.tac-pm2-final-cta { padding-bottom: 140px; }
}

/* Reduce motion — disables reveal + button hover translation. */
@media (prefers-reduced-motion: reduce) {
	.tac-pm2-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.tac-pm2-btn { transition: none; }
	.tac-pm2-btn:hover { transform: none; }
}

/* ============================================================
 * 7b. PROGRAM DETAILS (v3.68 Étape 8)
 *    Fact sheet rendue entre audience et curriculum.
 *    Layout: dl en grid 2 colonnes label/value, lignes séparées,
 *    scan rapide. Mobile: stacké en 1 colonne.
 * ============================================================ */

.tac-pm2-program-details {
	background: var(--tac-pm2-bg-soft, #f8fafc);
}

.tac-pm2-program-details__grid {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	border: 1px solid var(--tac-pm2-border, #e5e7eb);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.tac-pm2-program-details__row {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) 2fr;
	gap: 24px;
	padding: 14px 20px;
	border-bottom: 1px solid var(--tac-pm2-border, #e5e7eb);
}

.tac-pm2-program-details__row:last-child {
	border-bottom: 0;
}

.tac-pm2-program-details__label {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--tac-pm2-text-muted, #64748b);
	letter-spacing: 0.01em;
}

.tac-pm2-program-details__value {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--tac-pm2-text, #0f172a);
	line-height: 1.5;
}

@media (max-width: 768px) {
	.tac-pm2-program-details__row {
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 12px 16px;
	}
	.tac-pm2-program-details__label {
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 0.04em;
	}
	.tac-pm2-program-details__value {
		font-size: 15px;
	}
}

/* ============================================================
 * 7c. PACK CONTENT (v3.68 Étape 9)
 *    Remplace la grid sessions quand product_type='pack'.
 *    Liste ordonnée des items du pack + méta agrégée + CTA cart.
 * ============================================================ */

.tac-pm2-pack-content {
	background: var(--tac-pm2-bg, #fff);
}

.tac-pm2-pack-content__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 0 0 28px;
	padding: 18px 22px;
	background: var(--tac-pm2-bg-soft, #f8fafc);
	border: 1px solid var(--tac-pm2-border, #e5e7eb);
	border-radius: 10px;
}

.tac-pm2-pack-content__meta-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 140px;
}

.tac-pm2-pack-content__meta-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--tac-pm2-text-muted, #64748b);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tac-pm2-pack-content__meta-value {
	font-size: 16px;
	font-weight: 600;
	color: var(--tac-pm2-text, #0f172a);
}

.tac-pm2-pack-content__list {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: grid;
	gap: 14px;
}

.tac-pm2-pack-content__item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	padding: 18px 22px;
	background: #fff;
	border: 1px solid var(--tac-pm2-border, #e5e7eb);
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.tac-pm2-pack-content__item-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--tac-pm2-primary-soft, #eef2ff);
	color: var(--tac-pm2-primary, #4f46e5);
	font-size: 18px;
	font-weight: 700;
}

.tac-pm2-pack-content__item-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.tac-pm2-pack-content__item-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--tac-pm2-text, #0f172a);
}

.tac-pm2-pack-content__item-meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 13px;
	color: var(--tac-pm2-text-muted, #64748b);
}

.tac-pm2-pack-content__item-meta li {
	position: relative;
}

.tac-pm2-pack-content__item-meta li + li::before {
	content: "·";
	margin-right: 14px;
	color: var(--tac-pm2-text-muted, #64748b);
}

.tac-pm2-pack-content__cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px;
	margin: 0 0 16px;
	background: var(--tac-pm2-bg-soft, #f8fafc);
	border-radius: 12px;
}

.tac-pm2-pack-content__price {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tac-pm2-pack-content__price-amount {
	font-size: 28px;
	font-weight: 700;
	color: var(--tac-pm2-text, #0f172a);
	line-height: 1;
}

.tac-pm2-pack-content__price-label {
	font-size: 13px;
	color: var(--tac-pm2-text-muted, #64748b);
}

.tac-pm2-pack-content__btn {
	min-height: 48px;
	padding: 0 28px;
	font-weight: 600;
}

.tac-pm2-pack-content__reassurance {
	margin: 0;
	padding: 8px 4px 0;
	font-size: 13px;
	color: var(--tac-pm2-text-muted, #64748b);
	text-align: center;
	font-style: italic;
}

@media (max-width: 768px) {
	.tac-pm2-pack-content__meta {
		gap: 14px;
		padding: 14px 16px;
	}
	.tac-pm2-pack-content__meta-item {
		min-width: 0;
		flex: 1 0 calc(50% - 14px);
	}
	.tac-pm2-pack-content__item {
		grid-template-columns: 40px 1fr;
		gap: 12px;
		padding: 14px 16px;
	}
	.tac-pm2-pack-content__item-num {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
	.tac-pm2-pack-content__item-title {
		font-size: 16px;
	}
	.tac-pm2-pack-content__cta-row {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 16px;
	}
	.tac-pm2-pack-content__price {
		align-items: center;
	}
	.tac-pm2-pack-content__btn {
		width: 100%;
	}
}

/* ============================================================
 * 8. SESSIONS CARD — DATE RANGE + RHYTHM + ALL DATES (v3.69)
 *    Refonte de la card session : H3 affiche start–end, rhythm
 *    line dessous (count + weekdays), <details> "View all dates"
 *    avec liste groupée par mois.
 * ============================================================ */

/* v4.53 — p.selector beats .entry-content p (WP default, specificity 0,1,1) */
.tac-pm2-session-card p.tac-pm2-session-card__rhythm {
	margin: 6px 0 2px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--tac-pm2-text-muted, #64748b);
}

/* TZ dans un span (remplace l'ancienne parenthèse). Reste sur la même
   ligne que les heures, en muted secondaire. */
.tac-pm2-session-card__tz {
	margin-left: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--tac-pm2-text-muted, #64748b);
}

/* <details> View all dates — caret rotate au lieu du marker natif. */
.tac-pm2-session-card__all-dates {
	margin: 10px 0 14px;
	padding-top: 10px;
	border-top: 1px dashed var(--tac-pm2-border, #e5e7eb);
}

.tac-pm2-session-card__all-dates-summary {
	cursor: pointer;
	list-style: none;
	font-size: 13px;
	font-weight: 600;
	color: var(--tac-pm2-primary, #4f46e5);
	user-select: none;
}

.tac-pm2-session-card__all-dates-summary::-webkit-details-marker { display: none; }
.tac-pm2-session-card__all-dates-summary::marker                 { display: none; }

.tac-pm2-session-card__all-dates-summary::before {
	content: "▸";
	display: inline-block;
	margin-right: 6px;
	transition: transform 0.15s ease;
}

.tac-pm2-session-card__all-dates[open] .tac-pm2-session-card__all-dates-summary::before {
	transform: rotate(90deg);
}

.tac-pm2-session-card__all-dates-list {
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.tac-pm2-session-card__all-dates-list li {
	display: grid;
	grid-template-columns: minmax(95px, max-content) 1fr;
	gap: 8px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--tac-pm2-text, #0f172a);
}

.tac-pm2-session-card__all-dates-list strong {
	font-weight: 600;
	color: var(--tac-pm2-text-muted, #64748b);
}

.tac-pm2-session-card__all-dates-list span {
	color: var(--tac-pm2-text, #0f172a);
}

@media (max-width: 768px) {
	.tac-pm2-session-card h3 {
		font-size: 27px;
		line-height: 1.1;
	}
	.tac-pm2-session-card__rhythm {
		font-size: 13px;
	}
	.tac-pm2-session-card__all-dates-list li {
		grid-template-columns: 1fr;
		gap: 2px;
	}
	.tac-pm2-session-card__all-dates-list strong {
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 0.04em;
	}
}

/* ============================================================
 * 9. SESSIONS FILTERS BAR + FILTERED OUT + NO RESULTS (v3.70)
 *    Barre flex 3 selects (Timezone / Timeslot / Currency),
 *    classe .--filtered-out pour cacher les cards hors filtre,
 *    .__no-results message si tout filtré.
 * ============================================================ */

.tac-pm2-sessions__filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	flex: 1 1 auto;
	gap: 14px;
	margin: 0;
}

.tac-pm2-sessions__filter {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 158px;
}

.tac-pm2-sessions__filter .tac-pm2-sessions__control-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 650;
	color: rgba(15, 55, 88, 0.72);
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.2;
}

.tac-pm2-sessions__filter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: inset 0 0 0 1px rgba(26, 62, 120, 0.08);
	font-size: 13px;
	line-height: 1;
}

.tac-pm2-sessions__filter .tac-pm2-sessions__control-select {
	min-height: 48px;
	padding: 12px 42px 12px 15px;
	border: 1px solid rgba(26, 62, 120, 0.13);
	border-radius: 14px;
	background-color: #f8fbff;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%23475569' d='M6 8L0 2l1.5-1.5L6 5l4.5-4.5L12 2z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 10px;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 14px;
	font-weight: 650;
	color: var(--tac-pm2-text, #0f172a);
	cursor: pointer;
	min-width: 158px;
	transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.tac-pm2-sessions__filter .tac-pm2-sessions__control-select:hover {
	border-color: rgba(26, 62, 120, 0.26);
	background-color: #fff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.tac-pm2-sessions__filter .tac-pm2-sessions__control-select:focus-visible {
	outline: 2px solid var(--tac-pm2-primary, #4f46e5);
	outline-offset: 2px;
	background-color: #fff;
}

/* Card cachée par le filtre Timeslot — display:none direct (pas d'animation
   parce que l'utilisateur a explicitement filtré, pas besoin de fade). */
.tac-pm2-session-card--filtered-out {
	display: none !important;
}

/* ─── v3.91 — Initial cohort cap ───────────────────────────────────
 * The grid renders all upcoming cohorts in the DOM, but cards 4+ get
 * `--overflow` and are hidden by default. Clicking "View all upcoming
 * cohorts" adds `.is-expanded` on the grid → reveals all cohorts.
 * Filter compatibility: --filtered-out wins over --overflow because
 * the rule above uses !important and is more specific (single class
 * with !important > combined selector without).
 * ───────────────────────────────────────────────────────────────── */
.tac-pm2-sessions__grid:not(.is-expanded) .tac-pm2-session-card--overflow {
	display: none;
}

/* v4.22 — When a timeslot filter is active, override the overflow cap so
   sessions beyond the initial 3 are shown if they match the filter.
   .--filtered-out uses !important so non-matching overflow cards are still
   hidden correctly. */
.tac-pm2-sessions__grid.has-active-filter .tac-pm2-session-card--overflow {
	display: block;
}

.tac-pm2-sessions__more {
	display: flex;
	justify-content: center;
	margin: 24px 0 0;
}

/* v3.92 — Theme-agnostic armor. Astra/Hello/etc. inject button styles
 * (typically dark bg + white text on :hover) that bleed into our
 * `.tac-pm2-btn--secondary`. Lock the 4 key properties (bg, color,
 * border, font-weight) at every interactive state so the button always
 * matches the brand: white card with navy text by default, navy fill
 * with white text on hover/focus. !important is unavoidable here
 * because some themes ship `button:hover` rules with !important too.
 */
.tac-pm2 .tac-pm2-sessions__more-btn,
.tac-pm2 .tac-pm2-sessions__more-btn[aria-expanded="true"] {
	min-width: 280px;
	background: #fff !important;
	color: var(--tac-pm2-primary, #1a3e78) !important;
	border: 1px solid var(--tac-pm2-primary, #1a3e78) !important;
	font-weight: 700 !important;
}

.tac-pm2 .tac-pm2-sessions__more-btn:hover,
.tac-pm2 .tac-pm2-sessions__more-btn:focus,
.tac-pm2 .tac-pm2-sessions__more-btn:focus-visible,
.tac-pm2 .tac-pm2-sessions__more-btn:active {
	background: var(--tac-pm2-primary, #1a3e78) !important;
	color: #fff !important;
	border-color: var(--tac-pm2-primary, #1a3e78) !important;
}

@media (max-width: 640px) {
	.tac-pm2 .tac-pm2-sessions__more-btn,
	.tac-pm2 .tac-pm2-sessions__more-btn[aria-expanded="true"] {
		min-width: 0;
		width: 100%;
	}
}

/* No-results banner — rendu hidden par défaut, JS toggle si tout filtré. */
.tac-pm2-sessions__no-results {
	margin: 16px 0 0;
	padding: 22px 24px;
	border: 1px dashed var(--tac-pm2-border, #cbd5e1);
	border-radius: 12px;
	text-align: center;
	font-size: 14px;
	color: var(--tac-pm2-text-muted, #64748b);
	background: var(--tac-pm2-bg-soft, #f8fafc);
}

.tac-pm2-sessions__no-results[hidden] {
	display: none;
}

/* Time spans wrappés (start, sep, end) — inline pour rester sur la même ligne
   que la TZ. La sep "–" garde un peu d'espace via le contenu HTML. */
.tac-pm2-session-card__time-start,
.tac-pm2-session-card__time-end {
	font-variant-numeric: tabular-nums;
}

.tac-pm2-session-card__time-sep {
	color: var(--tac-pm2-text-muted, #64748b);
}

/* ============================================================
 * 10. GUARANTEED-TO-RUN BADGE (v3.70)
 *     Promu hors meta-list pour être plus visible.
 *     Pill verte success, icône check, sous le rhythm/time line.
 * ============================================================ */

.tac-pm2-session-card__guarantee {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 8px 0 12px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(22, 163, 74, 0.10);   /* light green background */
	color: var(--tac-pm2-success, #16a34a);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.tac-pm2-session-card__guarantee-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--tac-pm2-success, #16a34a);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
}

.tac-pm2-session-card__guarantee-text {
	white-space: nowrap;
}

/* Mobile responsive : filters stack vertical, badge guarantee s'adapte. */
@media (max-width: 768px) {
	.tac-pm2-sessions__filters {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.tac-pm2-sessions__filter,
	.tac-pm2-sessions__filter .tac-pm2-sessions__control-select {
		min-width: 0;
		width: 100%;
	}
	.tac-pm2-session-card__guarantee {
		font-size: 12px;
		padding: 5px 10px;
	}
}

/* ============================================================
 * 11. SESSION CARD TIME EMPHASIS (v3.71 → boostée v3.73)
 *    v3.72 ajoutait font-size:17px / weight:700 sur __time-start
 *    et __time-end, mais la règle générique L.710
 *    .tac-pm2-session-card__date span (héritée pré-v3.69) gagnait
 *    par spécificité 0,2,1 et imposait 14px / 600 muted. Résultat :
 *    aucun saut visuel vs le rhythm line.
 *
 *    v3.73 : tous les sélecteurs sont préfixés par
 *    .tac-pm2-session-card__date (spécificité 0,2,1 — match) ET
 *    la taille bumpée à 20px / weight 800 pour vraiment dominer la
 *    card comme dans la référence design.
 * ============================================================ */

.tac-pm2-session-card__date {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.35;
	color: var(--tac-pm2-text-muted, #64748b);
}

.tac-pm2-session-card__date .tac-pm2-session-card__time-start,
.tac-pm2-session-card__date .tac-pm2-session-card__time-end {
	font-size: 20px;
	font-weight: 800;
	color: var(--tac-pm2-text, #0f172a);
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.01em;
}

.tac-pm2-session-card__date .tac-pm2-session-card__time-sep {
	color: var(--tac-pm2-text-muted, #64748b);
	font-weight: 600;
	font-size: 18px;
	margin: 0 4px;
}

/* Override le styling __tz défini en v3.69 (margin-left bumpé à 10px
   pour respirer derrière les heures plus grosses, weight 500 muted). */
.tac-pm2-session-card__date .tac-pm2-session-card__tz {
	margin-left: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--tac-pm2-text-muted, #64748b);
}

@media (max-width: 768px) {
	.tac-pm2-session-card__date .tac-pm2-session-card__time-start,
	.tac-pm2-session-card__date .tac-pm2-session-card__time-end {
		font-size: 18px;
	}
	.tac-pm2-session-card__date .tac-pm2-session-card__time-sep {
		font-size: 16px;
	}
}

/* ============================================================
 * 12. HERO PANEL TIME (v3.76)
 *    Sous .tac-pm2-hero__panel-date (30px / 850), une ligne
 *    horaires (start_time – end_time) plus discrète mais
 *    tabulaire pour la lecture des chiffres. Remplace l'ancienne
 *    pattern « +N days » qui était peu informative.
 * ============================================================ */

.tac-pm2-hero__panel-time {
	margin: 4px 0 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--tac-pm2-text, #0f172a);
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.005em;
}

@media (max-width: 768px) {
	.tac-pm2-hero__panel-time {
		font-size: 16px;
	}
}

/* ============================================================
 * 13. SESSION CARD PRICE EMPHASIS (v3.76)
 *    Sprint 33C avait posé le bloc <code>.tac-pm2-session-card__price</code>
 *    à 22px / 850. La demande utilisateur v3.76 : afficher le prix
 *    « en gros » dans la card, pour remettre l'ancre tarifaire à
 *    proximité immédiate du CTA Reserve. Bump à 30px / 900 + padding
 *    plus généreux. Mobile ≤768px : 26px pour rester lisible.
 * ============================================================ */

.tac-pm2-session-card__price {
	margin: 0 0 18px;
	padding: 16px 18px;
}

.tac-pm2-session-card__price-amount {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.tac-pm2-session-card__price-label {
	font-size: 14px;
	font-weight: 600;
}
.tac-pm2-session-card__price-reg {
	font-size: 16px;
	font-weight: 750;
}

@media (max-width: 768px) {
	.tac-pm2-session-card__price-amount {
		font-size: 26px;
	}
	.tac-pm2-session-card__price {
		padding: 14px 16px;
	}
}

/* ============================================================
 * 14. SESSIONS SECTION TOP — HEADER + FILTERS/PRICE ROW (v3.94)
 *    Header above, then filters left + contextual price right on the same row.
 *    Mobile stacks the controls to preserve tap targets.
 * ============================================================ */

.tac-pm2-sessions__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, max-content);
	align-items: end;
	gap: 32px;
	margin-bottom: 28px;
}

.tac-pm2-sessions .tac-pm2-section-head {
	margin-bottom: 20px;
}

.tac-pm2 .tac-pm2-sessions .tac-pm2-section-text {
	margin: 0;
}

.tac-pm2-sessions__top-main {
	min-width: 0;
}

.tac-pm2-sessions__controls-row {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 24px;
}

.tac-pm2-sessions__top-price {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 0 0 auto;
	align-self: flex-end;
	justify-self: end;
	margin-left: 0;
	gap: 4px;
	padding: 16px 22px 18px;
	background: linear-gradient(180deg, #f8fbff 0%, var(--tac-pm2-primary-soft, #e0eaff) 100%);
	border: 1px solid rgba(26, 62, 120, 0.09);
	border-radius: 22px;
	box-shadow: 0 18px 40px rgba(15, 55, 88, 0.08);
	min-width: 180px;
	text-align: left;
}

.tac-pm2-sessions__top-price-amount {
	font-size: 36px;
	font-weight: 900;
	letter-spacing: 0;
	color: var(--tac-pm2-primary-dark, #1d3fc7);
	line-height: 1.05;
	font-variant-numeric: tabular-nums;
}

.tac-pm2-sessions__top-price-label {
	font-size: 12px;
	font-weight: 750;
	color: rgba(15, 55, 88, 0.72);
	line-height: 1.2;
}
.tac-pm2-sessions__top-price-reg {
	font-size: 15px;
	font-weight: 750;
}
/* v4.58 */
.tac-pm2-sessions__top-price-flexible {
	font-size: 11px;
	font-weight: 500;
	color: var(--tac-pm2-success, #16a34a);
	letter-spacing: .01em;
	margin-top: 2px;
}

@media (max-width: 900px) {
	.tac-pm2-sessions__top {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.tac-pm2-sessions__controls-row {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}
	.tac-pm2-sessions__top-price {
		width: 100%;
		align-items: flex-start;
		text-align: left;
		margin-left: 0;
	}
	.tac-pm2-sessions__top-price-amount {
		font-size: 30px;
	}
}

/* ============================================================
 * 15. SESSION CARD BADGES ROW (v3.78)
 *    Recommended + Guaranteed-to-run cohabitent désormais en haut
 *    de la card (au même niveau visuel). Le bloc Guaranteed
 *    standalone qu'on rendait après la time line a été retiré.
 *    L'icône check est inline dans le badge guarantee.
 * ============================================================ */

.tac-pm2-session-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.tac-pm2-session-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-bottom: 0;
	white-space: nowrap;
}


/* Le bloc standalone <div class="tac-pm2-session-card__guarantee"> qui
   existait entre la time line et la meta-list est désactivé visuellement
   (display:none) — le markup peut ne plus l'émettre, mais on garde la
   règle defensively pour les caches anciens et les events legacy. */
.tac-pm2-session-card__guarantee {
	display: none;
}

/* ============================================================
 * 16. SESSION CARD TIMESLOT BADGE COLORS (v3.82)
 *    The timeslot pill (Morning / Afternoon / Evening) sits in
 *    the top badges row alongside Recommended + Guaranteed. Each
 *    bucket gets a distinct color matched to time-of-day :
 *      - Morning   → sunrise yellow-orange
 *      - Afternoon → daylight blue
 *      - Evening   → twilight purple
 *    The bucket class is updated by the timezone IIFE in
 *    premium-v2.js (applyTz) so the color follows the user's TZ
 * ============================================================ */

/* v4.59 — Premium badge color system */

/* Recommended — premium dark blue */
.tac-pm2-session-card__badge--recommended {
	background: #1E3A8A;
	color: #ffffff;
}

/* Guaranteed to run — soft green */
.tac-pm2-session-card__badge--guarantee {
	background: #E7F6EC;
	color: #15803D;
}

.tac-pm2-session-card__badge--guarantee .tac-pm2-session-card__guarantee-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #15803D;
	color: #ffffff;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
}

/* Morning — soft warm amber */
.tac-pm2-session-card__badge--timeslot-morning {
	background: #FDF2E3;
	color: #B26A00;
}

/* Afternoon — muted teal */
.tac-pm2-session-card__badge--timeslot-afternoon {
	background: #E6F7F5;
	color: #0F766E;
}

/* Evening — deep muted blue */
.tac-pm2-session-card__badge--timeslot-evening {
	background: #E7EEFF;
	color: #1F4AA8;
}

/* Fast Track — soft electric violet */
.tac-pm2-session-card__badge--timeslot-fasttrack {
	background: #F1E8FF;
	color: #6B3CC9;
}
