/*
Theme Name: Starter
Theme URI: https://github.com/sante-plus/wp-theme
Author: Santé+
Author URI: https://sante-plus.org
Description: Thème Santé+ / URO TV. Design aligné sur la maquette wireframe (typo Inter + Inter Tight, palette bleue).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: starter
*/

/* ==========================================================================
   Design tokens — maquette wireframe/index.html (Santé+)
   ========================================================================== */

:root {
	--bg: #fbfcfe;
	--bg-elev: #ffffff;
	--bg-soft: #eff3fa;
	--bg-muted: #dde6f3;
	--bg-sand: #e8eef8;

	--ink: #0e1726;
	--ink-2: #2c3850;
	--ink-3: #5d6a82;
	--ink-4: #9aa3b5;

	--accent: #1f6bff;
	--accent-deep: #134fcc;
	--accent-soft: #e5edff;
	--accent-ink: #0a3a99;

	--warm: #1f6bff;
	--gold: #ffb84d;

	--line: rgba(14, 23, 38, 0.07);
	--line-strong: rgba(14, 23, 38, 0.14);

	--radius-sm: 6px;
	--radius: 10px;
	--radius-lg: 18px;
	--radius-xl: 28px;

	--shadow-sm: 0 1px 2px rgba(20, 20, 15, 0.04);
	--shadow: 0 8px 24px -8px rgba(20, 20, 15, 0.12), 0 2px 6px rgba(20, 20, 15, 0.04);
	--shadow-lg: 0 24px 60px -20px rgba(20, 20, 15, 0.25), 0 4px 12px rgba(20, 20, 15, 0.06);

	/* Alias héritage */
	--starter-color-primary: var(--ink);
	--starter-color-text: var(--ink-2);
	--starter-color-muted: var(--ink-3);
	--starter-color-border: var(--line);
	--starter-spacing: 1rem;

	--sp-font-sans: "Inter", system-ui, -apple-system, sans-serif;
	--sp-font-display: "Inter Tight", "Inter", system-ui, sans-serif;
	--sp-font-serif: "Instrument Serif", Georgia, serif;

	/* Largeur type maquette : quasi plein écran, plafond pour ultra‑larges */
	--sp-layout-gutter: clamp(1.25rem, 4vw, 3.5rem);
	--sp-layout-max: min(1720px, calc(100vw - 2 * var(--sp-layout-gutter)));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.sp-body {
	margin: 0;
	font-family: var(--sp-font-sans);
	font-size: 16px;
	line-height: 1.5;
	color: var(--ink);
	background: var(--bg);
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
	color: var(--accent-deep);
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

h1, h2, h3, h4 {
	font-family: var(--sp-font-display);
	letter-spacing: -0.02em;
	color: var(--ink);
}

/* ==========================================================================
   Layout global
   ========================================================================== */

.sp-site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
	padding: clamp(1.5rem, 4vw, 3rem) 0;
	min-height: 40vh;
}

.site {
	width: 100%;
	max-width: var(--sp-layout-max);
	margin: 0 auto;
	padding: 0 var(--sp-layout-gutter);
}

/* ==========================================================================
   En-tête sticky — wireframe NavBar
   ========================================================================== */

.sp-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 250, 247, 0.85);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid var(--line);
}

.sp-header__inner {
	max-width: var(--sp-layout-max);
	margin: 0 auto;
	padding: 14px var(--sp-layout-gutter);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem 2rem;
}

.sp-header__brand {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 0.75rem 1rem;
	flex-wrap: wrap;
}

.sp-header__logo-link {
	display: flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
}

.sp-header__logo-link:hover {
	text-decoration: none;
}

.sp-header__logo {
	height: 30px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.sp-header__logo--mark {
	height: 36px;
	max-width: none;
}

.sp-header__title {
	margin: 0;
	font-family: var(--sp-font-display);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.sp-header__title a {
	color: var(--ink);
	text-decoration: none;
}

.sp-header__title a:hover {
	color: var(--accent);
	text-decoration: none;
}

.sp-header__tagline {
	display: none;
	margin: 0.25rem 0 0;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

@media (min-width: 960px) {
	.sp-header__tagline {
		display: block;
	}
}

.sp-header__nav {
	flex: 1;
	min-width: 0;
}

.sp-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 1.5rem;
}

.sp-nav a {
	display: inline-block;
	padding: 0.35rem 0;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: var(--ink-2);
	border-bottom: 1px solid transparent;
	text-decoration: none;
}

.sp-nav a:hover,
.sp-nav .current-menu-item > a,
.sp-nav .current_page_item > a {
	color: var(--ink);
	border-bottom-color: var(--accent);
	text-decoration: none;
}

/* ==========================================================================
   Pied de page — wireframe footer
   ========================================================================== */

.sp-footer {
	margin-top: auto;
	padding: clamp(2rem, 5vw, 4rem) var(--sp-layout-gutter) 2.5rem;
	border-top: 1px solid var(--line);
	color: var(--ink-3);
	font-size: 0.8125rem;
}

.sp-footer__inner {
	max-width: var(--sp-layout-max);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1.5rem;
}

.sp-footer__logo-wrap {
	margin: 0 0 0.75rem;
	line-height: 0;
}

.sp-footer__logo {
	height: 32px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
	opacity: 0.85;
}

.sp-footer__name {
	margin: 0 0 0.35rem;
	font-family: var(--sp-font-display);
	font-weight: 700;
	font-size: 1rem;
	color: var(--ink);
}

.sp-footer__copy {
	margin: 0;
}

.sp-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.75rem;
}

.sp-footer__links a {
	color: var(--ink-3);
	font-weight: 500;
	text-decoration: none;
}

.sp-footer__links a:hover {
	color: var(--ink);
	text-decoration: underline;
}

/* ==========================================================================
   Contenu générique (posts, pages, archives)
   ========================================================================== */

.entry-title,
.page-title {
	margin-top: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.entry-content {
	margin-bottom: 2rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink-2);
}

.entry-content p:last-child {
	margin-bottom: 0;
}

.page-header {
	margin-bottom: 1.5rem;
}

/* ==========================================================================
   Hub pays — rails & titres section
   ========================================================================== */

.country-hub .country-code,
.campaign-landing .country-badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin-bottom: 0.5rem;
}

.country-hub__hero {
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
	padding-bottom: clamp(1.5rem, 3vw, 2rem);
	border-bottom: 1px solid var(--line);
}

.country-hub__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	margin: 0 0 1rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.country-hub__eyebrow-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	flex-shrink: 0;
}

.country-hub__hero-title {
	margin: 0;
	font-family: var(--sp-font-display);
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--ink);
}

.country-hub__section {
	margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.country-hub__section-title {
	margin: 0 0 1.25rem;
	font-family: var(--sp-font-display);
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--ink);
}

.country-hub__cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: clamp(1.25rem, 3vw, 1.75rem);
}

.country-hub__cards-item {
	margin: 0;
}

.country-hub__empty {
	color: var(--ink-3);
	margin: 3rem 0;
	font-size: 1.0625rem;
}

/* ==========================================================================
   Card campagne — wireframe ContentCard
   ========================================================================== */

.card-campaign {
	background: var(--bg-elev);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease;
}

.card-campaign:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.card-campaign__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--bg-muted);
}

.card-campaign__media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.45) 100%);
}

.card-campaign__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-campaign__link {
	color: inherit;
	text-decoration: none;
}

.card-campaign__link:hover {
	text-decoration: none;
}

.card-campaign__body {
	padding: 1rem 1.125rem 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-campaign__title {
	margin: 0 0 0.5rem;
	font-family: var(--sp-font-display);
	font-size: 1.0625rem;
	line-height: 1.25;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.card-campaign__title a {
	color: inherit;
}

.card-campaign__title a:hover {
	color: var(--accent);
	text-decoration: none;
}

.card-campaign__date {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	color: var(--ink-3);
}

.card-campaign__cta {
	margin: auto 0 0;
	padding-top: 0.5rem;
}

.card-campaign__cta-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1.25rem;
	background: var(--accent);
	color: #fafaf7;
	border-radius: 999px;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: background 0.15s ease;
}

.card-campaign__cta-link:hover {
	background: var(--accent-deep);
	color: #fafaf7;
	text-decoration: none;
}

/* ==========================================================================
   Single émission
   ========================================================================== */

.single-emission__thumbnail {
	margin-bottom: 1.5rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.single-emission__content {
	margin-bottom: 1.5rem;
}

.single-emission__section-title {
	margin: 0 0 0.5rem;
	font-family: var(--sp-font-display);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.single-emission__experts {
	margin-bottom: 1.25rem;
	padding: 1.25rem 1.5rem;
	background: var(--bg-soft);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
}

.single-emission__experts-text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--ink-2);
}

.single-emission__duration {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	color: var(--ink-3);
}

.single-emission__player {
	margin: 2rem 0;
}

.single-emission__player-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.single-emission__player-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.single-emission__cta-block {
	margin: 2rem 0;
	padding: clamp(1.5rem, 4vw, 2rem);
	background: var(--accent-soft);
	border: 1px solid rgba(31, 107, 255, 0.2);
	border-radius: var(--radius-lg);
}

.single-emission__cta-text {
	margin: 0 0 1rem;
	color: var(--ink-2);
	font-size: 1rem;
}

.single-emission__cta-link-wrap {
	margin: 0;
}

.single-emission__cta-link {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	background: var(--accent);
	color: #fafaf7;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	transition: background 0.15s ease;
}

.single-emission__cta-link:hover {
	background: var(--accent-deep);
	color: #fafaf7;
	text-decoration: none;
}

/* ==========================================================================
   Player UROTV
   ========================================================================== */

.urotv-player {
	margin: 1rem 0;
}

.urotv-player__embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.urotv-player__embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.urotv-player--placeholder {
	padding: 2rem;
	background: var(--bg-soft);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	text-align: center;
}

.urotv-player__placeholder-text {
	margin: 0;
	color: var(--ink-3);
}

/* ==========================================================================
   Checkout recommandations
   ========================================================================== */

.urotv-checkout-recommended {
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
	background: var(--accent-soft);
	border: 1px solid rgba(31, 107, 255, 0.22);
	border-radius: var(--radius);
}

.urotv-checkout-recommended__title {
	margin: 0 0 0.5rem;
	font-weight: 600;
	font-size: 0.9375rem;
	font-family: var(--sp-font-display);
	color: var(--ink);
}

.urotv-checkout-recommended__list {
	margin: 0 0 0.75rem;
	padding-left: 1.25rem;
	list-style: none;
}

.urotv-checkout-recommended__list li {
	position: relative;
	margin-bottom: 0.25rem;
	color: var(--ink-2);
}

.urotv-checkout-recommended__list li::before {
	content: "✓ ";
	position: absolute;
	left: -1.25rem;
	color: var(--accent);
	font-weight: 600;
}

.urotv-checkout-recommended__message {
	margin: 0;
	font-size: 0.875rem;
	color: var(--ink-2);
}

/* ==========================================================================
   Campaign landing — hero plein + grille type détail
   ========================================================================== */

.campaign-landing-content {
	width: 100%;
	max-width: none;
	margin: 0;
}

.campaign-landing__header {
	margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.campaign-landing__country {
	margin: 0 0 0.5rem;
}

.campaign-landing__title {
	margin: 0 0 0.75rem;
	font-family: var(--sp-font-display);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.05;
	color: var(--ink);
}

.campaign-landing__until {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--ink-3);
}

.campaign-landing__hero {
	margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: var(--bg-muted);
	box-shadow: var(--shadow-lg);
}

.campaign-landing__hero img {
	width: 100%;
	height: auto;
	display: block;
}

.campaign-landing__section-title {
	margin: 0 0 0.75rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.campaign-landing__experts .campaign-landing__section-title,
.campaign-landing__summary .campaign-landing__section-title,
.campaign-landing__trailer .campaign-landing__section-title {
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	text-transform: none;
	color: var(--ink);
	margin-bottom: 1rem;
}

.campaign-landing__experts,
.campaign-landing__summary,
.campaign-landing__trailer {
	margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.campaign-landing__experts {
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: var(--bg-soft);
	border-radius: var(--radius-xl);
	border: 1px solid var(--line);
}

.campaign-landing__experts-text {
	margin: 0;
	max-width: 70ch;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--ink-2);
}

.campaign-landing__summary-content {
	margin: 0;
	max-width: 70ch;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--ink-2);
}

.campaign-landing__trailer-embed {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.campaign-landing__trailer-embed iframe {
	max-width: 100%;
}

.campaign-landing__cta {
	margin: clamp(2rem, 5vw, 3rem) 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: flex-start;
}

.campaign-landing__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: background 0.15s ease, transform 0.1s ease;
}

.campaign-landing__cta-btn--watch {
	background: var(--accent);
	color: #fafaf7;
}

.campaign-landing__cta-btn--watch:hover {
	background: var(--accent-deep);
	color: #fafaf7;
	text-decoration: none;
}

.campaign-landing__cta-btn--buy {
	background: var(--ink);
	color: #fafaf7;
}

.campaign-landing__cta-btn--buy:hover {
	background: var(--ink-2);
	color: #fafaf7;
	text-decoration: none;
}

.campaign-landing__cta-muted {
	margin: 0;
	color: var(--ink-3);
	font-size: 0.9375rem;
}

.campaign-landing__player {
	margin-top: 1.5rem;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.campaign-landing__player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   Landing indisponible & région
   ========================================================================== */

.campaign-landing-unavailable {
	margin: 2rem 0;
	padding: clamp(1.5rem, 4vw, 2rem);
	background: var(--bg-soft);
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-lg);
}

.campaign-landing-unavailable__title {
	margin: 0 0 0.75rem;
	font-family: var(--sp-font-display);
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.campaign-landing-unavailable__text {
	margin: 0 0 1rem;
	color: var(--ink-2);
	line-height: 1.6;
}

.campaign-landing-unavailable__switch {
	margin: 0;
}

.campaign-landing-unavailable__link {
	font-weight: 600;
	color: var(--accent);
}

.country-unavailable .country-unavailable-content {
	margin-top: 1rem;
	max-width: 640px;
}

.country-unavailable .urotv-browse-link {
	display: inline-flex;
	align-items: center;
	margin-top: 0.75rem;
	padding: 0.75rem 1.5rem;
	background: var(--accent);
	color: #fafaf7;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.15s ease;
}

.country-unavailable .urotv-browse-link:hover {
	background: var(--accent-deep);
	color: #fafaf7;
	text-decoration: none;
}

/* ==========================================================================
   Scrollbar discrète (WebKit)
   ========================================================================== */

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: rgba(14, 23, 38, 0.12);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(14, 23, 38, 0.22);
}

/* ==========================================================================
   Recherche, 404, widgets
   ========================================================================== */

.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	margin: 1rem 0;
}

.search-field {
	flex: 1;
	min-width: 200px;
	padding: 0.65rem 1rem;
	font-family: inherit;
	font-size: 0.9375rem;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: var(--bg-elev);
	color: var(--ink);
}

.search-field:focus {
	outline: 2px solid var(--accent-soft);
	border-color: var(--accent);
}

.search-submit {
	padding: 0.65rem 1.25rem;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	color: #fafaf7;
	background: var(--accent);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.search-submit:hover {
	background: var(--accent-deep);
}

.error-404 .page-title {
	font-family: var(--sp-font-display);
	font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.error-404 .page-content {
	color: var(--ink-2);
	font-size: 1.0625rem;
	line-height: 1.65;
}

.error-404 .page-content a {
	font-weight: 600;
}

#secondary.widget-area {
	margin-top: 2rem;
	padding: 1.5rem;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.widget-title {
	font-family: var(--sp-font-display);
	font-size: 1rem;
	font-weight: 700;
	margin-top: 0;
	color: var(--ink);
}

/* ==========================================================================
   Page d’accueil — landing Santé+ (maquette)
   ========================================================================== */

.sp-home {
	padding-bottom: clamp(2rem, 5vw, 4rem);
}

.sp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	cursor: pointer;
	border: 1px solid transparent;
}

.sp-btn--primary {
	background: var(--accent);
	color: #fafaf7;
}

.sp-btn--primary:hover {
	background: var(--accent-deep);
	color: #fafaf7;
	text-decoration: none;
}

.sp-btn--secondary {
	background: var(--bg-elev);
	color: var(--ink);
	border-color: var(--line-strong);
}

.sp-btn--secondary:hover {
	background: var(--bg-soft);
	text-decoration: none;
}

.sp-btn--on-dark {
	background: var(--accent);
	color: #fafaf7;
}

.sp-btn--ghost-light {
	background: rgba(250, 247, 242, 0.12);
	color: #faf7f2;
	border-color: rgba(250, 247, 242, 0.35);
}

.sp-btn--ghost-light:hover {
	background: rgba(250, 247, 242, 0.2);
	color: #fff;
	text-decoration: none;
}

.sp-btn--lg {
	padding: 0.9rem 2rem;
	font-size: 1rem;
}

.sp-home-notice {
	max-width: 640px;
	margin: 2rem auto;
	padding: clamp(1.5rem, 4vw, 2rem);
	background: var(--bg-soft);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	text-align: center;
}

.sp-home-notice__title {
	font-family: var(--sp-font-display);
	font-size: 1.75rem;
	margin: 0 0 1rem;
}

.sp-home-notice__text {
	color: var(--ink-2);
	margin: 0 0 1.25rem;
}

.sp-home-hero {
	margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.sp-home-hero__frame {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	min-height: min(70vh, 620px);
	background: var(--bg-muted);
	box-shadow: var(--shadow-lg);
}

.sp-home-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-home-hero__img--fallback {
	background: linear-gradient(135deg, var(--accent-deep) 0%, var(--ink) 100%);
}

.sp-home-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 12, 24, 0.82) 0%, rgba(8, 12, 24, 0.55) 38%, rgba(8, 12, 24, 0.12) 72%, rgba(8, 12, 24, 0) 100%),
		linear-gradient(180deg, rgba(8, 12, 24, 0) 45%, rgba(8, 12, 24, 0.55) 100%);
	pointer-events: none;
}

.sp-home-hero__content {
	position: relative;
	z-index: 1;
	padding: clamp(2rem, 6vw, 3.75rem) clamp(1.5rem, 5vw, 3.5rem);
	max-width: 720px;
	color: #faf7f2;
}

.sp-home-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	margin: 0 0 1.25rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(250, 247, 242, 0.78);
}

.sp-home-hero__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #7eb0ff;
	flex-shrink: 0;
}

.sp-home-hero__title {
	margin: 0 0 1rem;
	font-family: var(--sp-font-display);
	font-size: clamp(2rem, 5.5vw, 3.75rem);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #fff;
}

.sp-home-hero__subtitle {
	margin: 0 0 1.75rem;
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	line-height: 1.55;
	color: rgba(250, 247, 242, 0.88);
	max-width: 36rem;
}

.sp-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	align-items: center;
}

/* Conteneur multi-intervenants */
.sp-home-hero__presenters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin: 0 0 1.25rem;
}

/* Une vignette intervenant */
.sp-home-hero__presenter {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.375rem 0.75rem 0.375rem 0.375rem;
	border-radius: 999px;
	background: rgba(12, 20, 34, 0.42);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.sp-home-hero__presenter-photo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.sp-home-hero__presenter-text {
	min-width: 0;
}

.sp-home-hero__presenter-name {
	margin: 0 0 0.1rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	color: #faf7f2;
}

.sp-home-hero__presenter-name strong,
.sp-home-hero__presenter-name span {
	font-weight: 600;
	color: #fff;
}

.sp-home-hero__presenter-role {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.35;
	color: rgba(250, 247, 242, 0.72);
}

.sp-home-hero__price-line {
	margin: 0.85rem 0 0;
	font-size: 0.95rem;
	line-height: 1.4;
	color: rgba(250, 247, 242, 0.9);
}

.sp-home-hero__episode {
	position: absolute;
	right: clamp(1rem, 4vw, 2.75rem);
	bottom: clamp(1rem, 4vw, 2.5rem);
	z-index: 1;
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(11, 18, 30, 0.7) 0%, rgba(11, 18, 30, 0.88) 100%);
	border: 1px solid rgba(255, 255, 255, 0.14);
	text-align: right;
	max-width: min(92vw, 26rem);
}

.sp-home-hero__episode-label {
	margin: 0 0 0.2rem;
	font-size: 1.05rem;
	font-family: var(--sp-font-display);
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #fff;
}

.sp-home-hero__episode-meta {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.35;
	color: rgba(250, 247, 242, 0.85);
}

@media (max-width: 860px) {
	.sp-home-hero__episode {
		position: static;
		margin: 1.25rem clamp(1rem, 5vw, 1.5rem) clamp(1rem, 5vw, 1.5rem);
		text-align: left;
		max-width: none;
	}
}

/* Bandeau 3 visuels (illustrations maquette / Unsplash local) */
.sp-home-visuals {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(0.75rem, 2vw, 1.25rem);
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (max-width: 700px) {
	.sp-home-visuals {
		grid-template-columns: 1fr;
	}
}

.sp-home-visuals__cell {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	aspect-ratio: 16 / 10;
	background: var(--bg-muted);
}

.sp-home-visuals__cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sp-home-rail {
	margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.sp-home-rail--muted {
	padding-top: clamp(1rem, 3vw, 2rem);
	border-top: 1px solid var(--line);
}

.sp-home-rail__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	margin-bottom: 1.5rem;
}

.sp-home-rail__more {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--ink-2);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s;
}

.sp-home-rail__more:hover {
	color: var(--accent);
}

.sp-home-rail__eyebrow {
	margin: 0 0 0.375rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.sp-home-rail__title {
	margin: 0;
	font-family: var(--sp-font-display);
	font-size: clamp(1.35rem, 3.5vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--ink);
}

.sp-home-cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: clamp(1.25rem, 3vw, 1.75rem);
}

.sp-home-cards__item {
	margin: 0;
}

/* Rail horizontal (scroll) pour les vignettes émissions */
.sp-home-cards--rail {
	display: flex;
	gap: 1.375rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 0.5rem;
	/* Masquer la scrollbar visuellement */
	scrollbar-width: thin;
	scrollbar-color: var(--line) transparent;
}

.sp-home-cards--rail > * {
	flex-shrink: 0;
	scroll-snap-align: start;
}

/* Liste simple (campagnes) */
.sp-home-cards--list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: clamp(1.25rem, 3vw, 1.75rem);
}

.sp-home-cards--list > li {
	margin: 0;
}

.sp-home-empty {
	margin: 2rem 0 3rem;
	padding: clamp(2rem, 5vw, 3rem);
	text-align: center;
	background: var(--bg-soft);
	border-radius: var(--radius-xl);
	border: 1px solid var(--line);
}

.sp-home-empty__title {
	font-family: var(--sp-font-display);
	font-size: 1.5rem;
	margin: 0 0 1rem;
}

.sp-home-empty__text {
	margin: 0 auto 1.5rem;
	max-width: 520px;
	color: var(--ink-2);
	line-height: 1.65;
}

.sp-home-empty__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.sp-home-intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	margin: clamp(2.5rem, 7vw, 5rem) 0;
	padding-top: clamp(2rem, 5vw, 3.5rem);
	border-top: 1px solid var(--line);
	align-items: start;
}

@media (min-width: 900px) {
	.sp-home-intro {
		grid-template-columns: 1fr 1.35fr;
	}
}

.sp-home-intro__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.sp-home-intro__title {
	margin: 0;
	font-family: var(--sp-font-display);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--ink);
}

.sp-home-intro__body p {
	margin: 0 0 1rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink-2);
}

.sp-home-intro__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
	.sp-home-intro__stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

.sp-home-stat__num {
	display: block;
	font-family: var(--sp-font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 0.35rem;
}

.sp-home-stat__label {
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.sp-home-offer {
	margin: clamp(2rem, 6vw, 4rem) 0;
	padding: clamp(2rem, 5vw, 3.5rem);
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	color: #fff;
	border-radius: var(--radius-xl);
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 960px) {
	.sp-home-offer {
		grid-template-columns: 1.25fr 1fr;
		gap: 3rem;
	}
}

.sp-home-offer__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

.sp-home-offer__title {
	margin: 0 0 1rem;
	font-family: var(--sp-font-display);
	font-size: clamp(1.65rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.sp-home-offer__body {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.sp-home-offer__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.sp-home-offer__step {
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 1rem;
	align-items: flex-start;
}

.sp-home-offer__step-num {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	display: grid;
	place-items: center;
	font-family: var(--sp-font-display);
	font-weight: 700;
	font-size: 0.9375rem;
	color: #fff;
	flex-shrink: 0;
}

.sp-home-offer__step-text {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.95);
}

.sp-home-offer__step-text strong {
	color: #fff;
}

/* ── Chips spécialités ─────────────────────────────────── */
.sp-home-cats {
	margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 3rem);
}

.sp-home-cats__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.sp-home-cats__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.sp-home-cats__chip {
	display: inline-block;
	padding: 0.625rem 1.125rem;
	background: var(--bg-elev, #f5f4f0);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.875rem;
	color: var(--ink-2);
	text-decoration: none;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	white-space: nowrap;
}

.sp-home-cats__chip:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

/* ── Bloc experts ─────────────────────────────────────── */
.sp-home-experts {
	margin: clamp(2rem, 6vw, 4rem) 0;
	padding: clamp(2rem, 5vw, 3.5rem);
	background: var(--bg-soft, #f9f8f4);
	border-radius: var(--radius-xl);
}

.sp-home-experts__head {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 2rem;
}

@media (min-width: 900px) {
	.sp-home-experts__head {
		grid-template-columns: 1.2fr 1fr;
		gap: 3rem;
		align-items: end;
	}
}

.sp-home-experts__title {
	margin: 0;
	font-family: var(--sp-font-display);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--ink);
}

.sp-home-experts__intro {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ink-2);
}

.sp-home-experts__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.25rem;
}

.sp-home-experts__card {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	padding: 1.25rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg, 16px);
}

.sp-home-experts__card-photo {
	width: 64px;
	height: 64px;
	border-radius: 999px;
	object-fit: cover;
	display: block;
}

.sp-home-experts__card-photo--fallback {
	background: var(--bg-muted, #e8e6e0);
}

.sp-home-experts__card-name {
	margin: 0 0 0.25rem;
	font-family: var(--sp-font-display);
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.sp-home-experts__card-title {
	margin: 0 0 0.2rem;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--ink-2);
}

.sp-home-experts__card-org {
	margin: 0;
	font-size: 0.75rem;
	color: var(--ink-3);
}

/* ── Vignette émission (card-em) ──────────────────────── */
.card-em {
	width: 300px;
}

.sp-home-cards--rail .card-em {
	width: min(300px, 78vw);
}

.card-em__cover-link {
	display: block;
	text-decoration: none;
}

.card-em__cover {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius, 12px);
	overflow: hidden;
	background: var(--bg-muted, #e8e6e0);
	box-shadow: var(--shadow-sm, 0 1px 4px rgba(0,0,0,0.08));
	transition: box-shadow 0.25s, transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.card-em:hover .card-em__cover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.14);
	transform: translateY(-2px);
}

.card-em__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.card-em__img--fallback {
	background: var(--bg-muted, #e8e6e0);
}

.card-em__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
}

.card-em__top-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	gap: 6px;
}

.card-em__badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.card-em__badge--free {
	background: #fff;
	color: var(--accent);
	border: 1px solid var(--accent);
}

.card-em__bottom-meta {
	position: absolute;
	bottom: 12px;
	left: 12px;
	right: 12px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-size: 0.75rem;
	font-weight: 500;
}

.card-em__progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: rgba(0,0,0,0.25);
}

.card-em__progress-fill {
	height: 100%;
	background: var(--warm, #e07d40);
}

.card-em__body {
	padding-top: 0.875rem;
}

.card-em__title {
	margin: 0 0 0.25rem;
	font-family: var(--sp-font-display);
	font-size: 1.0625rem;
	line-height: 1.25;
	letter-spacing: -0.02em;
	font-weight: 600;
	color: var(--ink);
}

.card-em__title a {
	text-decoration: none;
	color: inherit;
}

.card-em__title a:hover {
	color: var(--accent);
}

.card-em__expert {
	margin-top: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: var(--ink-3);
}

.card-em__expert-photo {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	object-fit: cover;
	flex-shrink: 0;
}

.card-em__expert-name {
	color: var(--ink-2);
}

.card-em__expert-more {
	color: var(--ink-4);
	font-style: italic;
}

/* icône dans bouton hero */
.sp-btn--icon {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
}

.sp-home-cta-band {
	text-align: center;
	padding: clamp(2rem, 5vw, 3rem) 0;
	border-top: 1px solid var(--line);
}

.sp-home-cta-band__label {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--ink-3);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.sp-front__page-content {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
}

.sp-front__page-content .entry-content {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink-2);
}

/* ============================================================
   PAGE ÉMISSION SINGLE — em-single
   ============================================================ */

/* ── Hero arrondi (même style que le hero accueil) ─────────── */
.em-single__hero {
	position: relative;
	min-height: clamp(360px, 52vw, 560px);
	overflow: hidden;
	background: var(--bg-muted);
	/* Inset + arrondi identique au hero accueil */
	margin: clamp(0.375rem, 0.8vw, 0.75rem) clamp(0.75rem, 2.5vw, 2.5rem);
	border-radius: var(--radius-xl, 24px);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}

.em-single__hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.em-single__hero-shade {
	position: absolute;
	inset: 0;
	/* Dégradé identique au hero accueil : sombre à gauche + bas */
	background:
		linear-gradient(90deg, rgba(8, 12, 24, 0.85) 0%, rgba(8, 12, 24, 0.58) 35%, rgba(8, 12, 24, 0.18) 65%, rgba(8, 12, 24, 0) 100%),
		linear-gradient(180deg, rgba(8, 12, 24, 0) 50%, rgba(8, 12, 24, 0.55) 100%);
}

.em-single__hero-content {
	position: relative;
	padding: clamp(1.75rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3.5rem) clamp(3rem, 6vw, 4rem);
	color: #faf7f2;
}

.em-single__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.8125rem;
	color: rgba(250, 247, 242, 0.8);
	text-decoration: none;
	margin-bottom: 1.5rem;
	transition: color 0.15s;
}

.em-single__back:hover {
	color: #fff;
}

.em-single__hero-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	font-size: 0.8125rem;
	color: rgba(250, 247, 242, 0.8);
	margin-bottom: 1rem;
}

.em-single__hero-dot {
	width: 3px;
	height: 3px;
	border-radius: 999px;
	background: rgba(250, 247, 242, 0.45);
	flex-shrink: 0;
}

.em-single__hero-title {
	margin: 0 0 1rem;
	font-family: var(--sp-font-display);
	font-size: clamp(1.75rem, 5vw, 3.5rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: #fff;
	max-width: 760px;
}

.em-single__hero-subtitle {
	margin: 0 0 1.25rem;
	font-size: clamp(1rem, 2.5vw, 1.375rem);
	color: rgba(250, 247, 242, 0.85);
	max-width: 620px;
	line-height: 1.4;
	font-family: var(--sp-font-display);
}

.em-single__hero-experts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.em-single__hero-expert {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.75rem 0.25rem 0.35rem;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 999px;
	font-size: 0.8125rem;
	color: rgba(250, 247, 242, 0.9);
}

.em-single__hero-expert-photo {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
}

/* ── Corps 2 colonnes ───────────────────────────────────────── */
.em-single__body {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	padding-bottom: clamp(3rem, 8vw, 6rem);
}

@media (min-width: 1024px) {
	.em-single__body {
		grid-template-columns: 1.5fr 1fr;
		align-items: start;
	}
}

/* ── Sections colonne gauche ────────────────────────────────── */
.em-single__section {
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

.em-single__section-eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.em-single__section-title {
	margin: 0 0 1.25rem;
	font-family: var(--sp-font-display);
	font-size: clamp(1.35rem, 3vw, 1.875rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--ink);
}

.em-single__description {
	font-size: 1.0625rem;
	line-height: 1.72;
	color: var(--ink-2);
}

/* ── Player ─────────────────────────────────────────────────── */
.urotv-player {
	margin-bottom: 0;
}

.urotv-player__embed,
.urotv-player__embed--trailer {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-xl, 20px);
	overflow: hidden;
	background: #000;
}

.urotv-player__embed iframe,
.urotv-player__embed--trailer iframe,
.urotv-player__embed video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.urotv-player__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-xl, 20px);
	background: var(--bg-muted);
	border: 1px solid var(--line);
}

.urotv-player__placeholder-text,
.urotv-player__notice {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--ink-3);
	text-align: center;
	padding: 1.5rem;
}

/* ── Façade trailer click-to-play ────────────────────────────── */
.urotv-facade {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-xl, 20px);
	overflow: hidden;
	cursor: pointer;
	background: #0a0d14;
	display: block;
	outline: none;
}

.urotv-facade:focus-visible {
	box-shadow: 0 0 0 3px var(--accent);
}

.urotv-facade__cover {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.3s;
}

.urotv-facade__cover--fallback {
	background: var(--bg-muted);
}

.urotv-facade:hover .urotv-facade__cover {
	transform: scale(1.03);
	filter: brightness(0.72);
}

.urotv-facade__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.68) 100%),
		linear-gradient(0deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 50%);
	transition: background 0.3s;
}

.urotv-facade:hover .urotv-facade__shade {
	background:
		linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.78) 100%);
}

/* Meta badges (haut gauche) */
.urotv-facade__meta {
	position: absolute;
	top: 16px;
	left: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 2;
}

.urotv-facade__badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	background: rgba(0, 0, 0, 0.45);
	color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
}

.urotv-facade__badge--free {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.urotv-facade__sep {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.75rem;
}

/* Bouton play centré */
.urotv-facade__center {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.urotv-facade__play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: var(--accent, #2055d0);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.15s;
}

.urotv-facade:hover .urotv-facade__play {
	transform: scale(1.1);
	background: #fff;
}

/* Titre + hint (bas) */
.urotv-facade__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 20px 18px;
	z-index: 2;
}

.urotv-facade__title {
	margin: 0 0 4px;
	font-family: var(--sp-font-display);
	font-size: clamp(1rem, 2.5vw, 1.375rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.urotv-facade__hint {
	margin: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.65);
}

/* Iframe active (après clic, remplace la façade) */
.urotv-player__embed--active {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-xl, 20px);
	overflow: hidden;
	background: #000;
}

/* ── Preview label ───────────────────────────────────────────── */
.em-single__preview-label {
	margin-bottom: 0.875rem;
}

/* ── Experts ─────────────────────────────────────────────────── */
.em-single__experts {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.em-single__expert-card {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--bg-soft, #f9f8f4);
	border-radius: var(--radius-xl, 20px);
}

@media (max-width: 600px) {
	.em-single__expert-card {
		grid-template-columns: 80px 1fr;
		gap: 1rem;
		padding: 1rem;
	}
}

.em-single__expert-photo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.em-single__expert-photo--fallback {
	background: var(--bg-muted);
}

.em-single__expert-name {
	margin: 0 0 0.25rem;
	font-family: var(--sp-font-display);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--ink);
}

.em-single__expert-role {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
	color: var(--ink-2);
}

.em-single__expert-bio {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--ink-2);
}

/* ── Validation scientifique ─────────────────────────────────── */
.em-single__validation {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: var(--accent-soft, #eaf1ff);
	border-radius: var(--radius-lg, 16px);
	margin-bottom: 2rem;
}

.em-single__validation-icon {
	color: var(--accent);
	flex-shrink: 0;
	margin-top: 2px;
}

.em-single__validation-title {
	margin: 0 0 0.35rem;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--accent-deep, #1a3d7e);
}

.em-single__validation-body {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--ink-2);
}

/* ── Carte achat (colonne droite sticky) ─────────────────────── */
.em-single__sidebar {
	position: relative;
}

@media (min-width: 1024px) {
	.em-single__sidebar {
		position: sticky;
		top: 100px;
		align-self: start;
	}
}

.em-single__purchase-card {
	padding: clamp(1.5rem, 3vw, 2rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl, 20px);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.em-single__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.em-single__badge--free {
	background: #fff;
	color: var(--accent);
	border: 1px solid var(--accent);
}

.em-single__price-row {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	margin: 1rem 0 0.35rem;
}

.em-single__price {
	font-family: var(--sp-font-display);
	font-size: 2.75rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--accent);
	line-height: 1;
}

.em-single__price-unit {
	font-size: 0.875rem;
	color: var(--ink-3);
}

.em-single__price-note {
	margin: 0 0 1.5rem;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.em-single__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	width: 100%;
	padding: 1rem;
	border-radius: 999px;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
	cursor: pointer;
	margin-bottom: 0.75rem;
}

.em-single__btn--primary {
	background: var(--accent);
	color: #fff;
}

.em-single__btn--primary:hover {
	background: var(--accent-deep);
	color: #fff;
}

.em-single__btn--secondary {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--line-strong, #c8c5bf);
}

.em-single__btn--secondary:hover {
	background: var(--bg-soft);
	border-color: var(--ink-3);
}

.em-single__perks {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 1.5rem 0 0;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.em-single__perk {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--ink-2);
}

.em-single__perk-icon {
	color: var(--accent);
	flex-shrink: 0;
	margin-top: 1px;
}

.em-single__access-ok {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	padding: 0.875rem 1rem;
	background: var(--accent-soft, #eaf1ff);
	border-radius: var(--radius, 12px);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--accent-deep, #1a3d7e);
}

.em-single__access-note {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--ink-3);
	text-align: center;
}

.em-single__notice {
	margin: 0.75rem 0 0;
	font-size: 0.8125rem;
	color: var(--ink-3);
	line-height: 1.5;
}
