/*
 Theme Name:   Benarroche Urologie
 Theme URI:    https://www.benarroche-urologie.fr/
 Description:  Thème enfant de Hello Elementor pour le site Benarroche Urologie.
 Author:       Benarroche Urologie
 Author URI:   https://www.benarroche-urologie.fr/
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  benarroche-urologie
 License:      GNU General Public License v3 or later.
 License URI:  https://www.gnu.org/licenses/gpl-3.0.html
 Tags:         custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, translation-ready, medical
*/

/* ==========================================================================
   Charte graphique Benarroche Urologie – variables
   Couleurs et typographie Metropolis (sans variables Elementor)
   ========================================================================== */
:root {
	/* Couleurs – palette Benarroche Urologie */
	--benarroche-primary: #0D388E;
	--benarroche-primary-hover: #1350E8;
	--benarroche-secondary: #0D388E;
	--benarroche-accent: #062A6D;
	--benarroche-primary-dark: #062A6D;
	--benarroche-text: #2d3748;
	--benarroche-text-light: #4a5568;
	--benarroche-bg: #ffffff;
	--benarroche-bg-alt: #f7fafc;
	--benarroche-border: #e2e8f0;
	--benarroche-white: #ffffff;

	/* Typographie Metropolis */
	--benarroche-font-sans: "Metropolis", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--benarroche-font-heading: "Metropolis", var(--benarroche-font-sans);
	--benarroche-fs-base: 1rem;
	--benarroche-fs-small: 0.875rem;
	--benarroche-fs-large: 1.125rem;
	/* Titres – proportions cohérentes (blog, articles, pages) */
	--benarroche-fs-h1: 1.625rem;
	--benarroche-fs-h2: 1.25rem;
	--benarroche-fs-h3: 1.125rem;
	--benarroche-fs-h4: 1.0625rem;
	--benarroche-fs-h5: 1rem;
	--benarroche-fs-h6: 0.9375rem;
	--benarroche-line-height: 1.6;
	--benarroche-line-height-tight: 1.35;

	/* Espacements & conteneur */
	--benarroche-container: 1200px;
	--benarroche-gap: 1.5rem;
	--benarroche-radius: 6px;
	--benarroche-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	--benarroche-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);

	/* Hauteur approximative du header fixe (à ajuster si besoin) */
	--benarroche-header-offset: 100px;
}

/* ==========================================================================
   Masquer le titre des pages (affiché en haut par le thème / Elementor)
   ========================================================================== */
.entry-header,
body.page .entry-header,
body.single .entry-header,
body.page .page-header,
.elementor-page-title {
	display: none !important;
}

/* ==========================================================================
   Base – Blog & articles
   ========================================================================== */
body.benarroche-blog-archive,
body.single-post {
	color: var(--benarroche-text);
	font-family: var(--benarroche-font-sans);
	font-size: var(--benarroche-fs-base);
	line-height: var(--benarroche-line-height);
}

.benarroche-content-wrap {
	max-width: var(--benarroche-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--benarroche-gap);
	padding-right: var(--benarroche-gap);
}

/* ==========================================================================
   Archive / Accueil blog – hero collé en haut, marge interne pour le texte
   ========================================================================== */
.benarroche-archive-content,
.benarroche-search-content {
	padding-top: 0;
}

/* ==========================================================================
   Hero (bannière titre – haut de page, collé en haut, image derrière)
   ========================================================================== */
.benarroche-hero {
	position: relative;
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--benarroche-primary-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 2.5rem;
	margin-top: 0;
}

@media (min-width: 768px) {
	.benarroche-hero {
		min-height: 280px;
	}
}

.benarroche-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--benarroche-primary-dark) 0%, var(--benarroche-primary) 100%);
	opacity: 0.88;
	pointer-events: none;
}

.benarroche-hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding-top: calc(var(--benarroche-header-offset) + 1.5rem);
	padding-bottom: 2rem;
	padding-left: var(--benarroche-gap);
	padding-right: var(--benarroche-gap);
}

.benarroche-hero .benarroche-archive-header {
	border-bottom: none;
	margin-bottom: 0;
	padding: 0;
}

.benarroche-hero .benarroche-archive-title {
	color: var(--benarroche-white);
	font-size: clamp(var(--benarroche-fs-h3), 2vw, var(--benarroche-fs-h2));
	margin: 0;
}

.benarroche-hero .benarroche-archive-description {
	color: rgba(255, 255, 255, 0.9);
	margin: 0.5rem 0 0;
}

/* ==========================================================================
   Archive Blog – grille 3 colonnes + cartes
   ========================================================================== */
.benarroche-archive-body {
	padding-bottom: 2rem;
}

.benarroche-posts-grid {
	display: grid;
	gap: 1.5rem;
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
	grid-template-columns: 1fr;
}

@media (min-width: 600px) {
	.benarroche-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.benarroche-posts-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.benarroche-post-card {
	background: var(--benarroche-bg);
	border: 1px solid var(--benarroche-border);
	border-radius: var(--benarroche-radius);
	overflow: hidden;
	box-shadow: var(--benarroche-shadow);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Carte entièrement cliquable : overlay lien */
.benarroche-post-card-inner {
	position: relative;
}

.benarroche-post-card-link-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.benarroche-post-card-link-overlay:focus {
	outline: 2px solid var(--benarroche-accent);
	outline-offset: 2px;
}

.benarroche-post-card:hover {
	box-shadow: var(--benarroche-shadow-md);
	border-color: var(--benarroche-accent);
}

/* Carte verticale (image au-dessus, corps en dessous) */
.benarroche-post-card-inner--vertical {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
}

.benarroche-post-card--grid .benarroche-post-thumbnail {
	aspect-ratio: 16 / 10;
	background: var(--benarroche-bg-alt);
	overflow: hidden;
	flex-shrink: 0;
	padding: 0;
	margin: 0;
}

.benarroche-post-card--grid .benarroche-post-thumbnail a,
.benarroche-post-card--grid .benarroche-post-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
	pointer-events: none;
}

.benarroche-post-card--grid .benarroche-post-thumbnail img {
	object-fit: cover;
	object-position: center;
	vertical-align: middle;
}

.benarroche-post-card--grid .benarroche-post-thumbnail-placeholder {
	width: 100%;
	height: 100%;
	min-height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--benarroche-bg-alt) 0%, #edf2f7 100%);
	color: var(--benarroche-text-light);
	font-size: var(--benarroche-fs-small);
	text-decoration: none;
}

.benarroche-post-card--grid .benarroche-post-thumbnail-placeholder span {
	pointer-events: none;
}

.benarroche-post-card--grid .benarroche-post-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 0.75rem 1rem 1rem;
	min-width: 0;
	position: relative;
	z-index: 2;
}

/* Zone d'aperçu à hauteur fixe (3 lignes) pour éviter superposition / barre blanche */
.benarroche-post-card--grid .benarroche-post-excerpt {
	flex: 0 0 auto;
	height: calc(1.45em * 3);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.45;
}

.benarroche-post-card--grid .benarroche-post-excerpt p {
	margin: 0;
}

.benarroche-post-card-inner {
	display: grid;
	gap: var(--benarroche-gap);
	padding: var(--benarroche-gap);
}

/* Grille archives : image en pleine largeur, pas d'espace entre image et bloc titre/excerpt */
.benarroche-post-card--grid .benarroche-post-card-inner--vertical {
	padding: 0;
	gap: 0;
}

.benarroche-post-body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.benarroche-post-date {
	font-size: var(--benarroche-fs-small);
	color: var(--benarroche-text-light);
	margin-bottom: 0.35rem;
}

/* Grille blog / archives : date masquée sur les cartes */
.benarroche-post-card--grid .benarroche-post-date {
	display: none;
}

.benarroche-post-title {
	font-family: var(--benarroche-font-heading);
	font-size: var(--benarroche-fs-h4);
	font-weight: 600;
	line-height: var(--benarroche-line-height-tight);
	margin: 0 0 0.5rem;
}

/* Grille blog / archives : titres des cartes plus discrets (surcharge styles globaux h2) */
.benarroche-posts-grid .benarroche-post-title,
.benarroche-post-card--grid .benarroche-post-title {
	font-size: var(--benarroche-fs-h6) !important;
	font-family: var(--benarroche-font-heading) !important;
	font-weight: 600 !important;
	line-height: var(--benarroche-line-height-tight) !important;
}

.benarroche-post-title a,
.benarroche-post-card--grid .benarroche-post-title {
	color: var(--benarroche-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.benarroche-post-title a:hover {
	color: var(--benarroche-accent);
}

.benarroche-post-excerpt {
	font-size: var(--benarroche-fs-base);
	color: var(--benarroche-text-light);
	margin: 0 0 0.5rem;
	flex-grow: 1;
}

.benarroche-post-excerpt p:last-child {
	margin-bottom: 0;
}

.benarroche-post-link {
	display: inline-block;
	font-size: var(--benarroche-fs-small);
	font-weight: 600;
	color: var(--benarroche-accent);
	text-decoration: none;
	transition: color 0.2s ease;
	margin-top: 0.25rem;
}

.benarroche-post-link:hover,
a:hover .benarroche-post-link {
	color: var(--benarroche-primary-hover);
}

/* Pagination archive */
.benarroche-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin: 2.5rem 0;
	padding: 0;
	list-style: none;
}

.benarroche-pagination a,
.benarroche-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	font-size: var(--benarroche-fs-small);
	font-weight: 500;
	text-decoration: none;
	color: var(--benarroche-primary);
	background: var(--benarroche-bg);
	border: 1px solid var(--benarroche-border);
	border-radius: var(--benarroche-radius);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.benarroche-pagination a:hover {
	background: var(--benarroche-bg-alt);
	border-color: var(--benarroche-accent);
	color: var(--benarroche-accent);
}

.benarroche-pagination .current {
	background: var(--benarroche-primary);
	border-color: var(--benarroche-primary);
	color: var(--benarroche-white);
	cursor: default;
}

/* ==========================================================================
   Single Article – hero collé en haut (header en superposition), puis aération
   ========================================================================== */
.benarroche-single-content-wrap {
	/* Pas de padding-top : le hero part du haut, le header fixe se superpose (comme archives) */
	padding-top: 0;
	min-height: 0;
}

/* Ancrage scroll : le titre ne reste pas caché sous le header */
#benarroche-article-title {
	scroll-margin-top: var(--benarroche-header-offset);
}

/* Layout principal + sidebar : espace sous le hero, aération entre blocs */
.benarroche-single-layout {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-top: 2.5rem;
}

@media (min-width: 992px) {
	.benarroche-single-article {
		display: grid;
		grid-template-columns: 1fr 280px;
		gap: 2rem;
		align-items: start;
		min-height: calc(100vh - var(--benarroche-header-offset) - 2rem);
	}

	.benarroche-single-main {
		grid-column: 1;
		min-height: 0;
	}

	.benarroche-single-sidebar {
		grid-column: 2;
		position: sticky;
		top: calc(var(--benarroche-header-offset) + 1rem);
		max-height: calc(100vh - var(--benarroche-header-offset) - 2rem);
		overflow-y: auto;
		overflow-x: hidden;
	}
}

/* Hero single article : fond Paris + titre en blanc */
.benarroche-single-hero {
	position: relative;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--benarroche-primary-dark);
	background-size: cover;
	background-position: center;
}

@media (min-width: 768px) {
	.benarroche-single-hero {
		min-height: 240px;
	}
}

.benarroche-single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--benarroche-primary-dark) 0%, var(--benarroche-primary) 100%);
	opacity: 0.88;
	pointer-events: none;
}

.benarroche-single-hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: calc(var(--benarroche-header-offset) + 1.5rem) var(--benarroche-gap) 2rem;
}

.benarroche-single-header--hero {
	border-bottom: none;
	margin-bottom: 0;
	padding: 0;
}

.benarroche-single-header--hero .benarroche-single-meta {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0.25rem;
}

.benarroche-single-header--hero .benarroche-single-title {
	color: var(--benarroche-white);
	font-size: clamp(var(--benarroche-fs-h3), 2.5vw, var(--benarroche-fs-h1));
	margin: 0;
}

.benarroche-single-header {
	padding: 1rem 0 0.75rem;
	border-bottom: 1px solid var(--benarroche-border);
	margin-bottom: 1.25rem;
}

.benarroche-single-meta {
	font-size: var(--benarroche-fs-small);
	color: var(--benarroche-text-light);
	margin-bottom: 0.35rem;
}

.benarroche-single-title {
	font-family: var(--benarroche-font-sans);
	font-size: var(--benarroche-fs-h1);
	font-weight: 700;
	color: var(--benarroche-primary);
	line-height: var(--benarroche-line-height-tight);
	margin: 0;
}

.benarroche-single-content {
	max-width: 720px;
	font-family: var(--benarroche-font-sans);
}

.benarroche-single-content h1,
.benarroche-single-content h2,
.benarroche-single-content h3,
.benarroche-single-content h4,
.benarroche-single-content h5,
.benarroche-single-content h6 {
	font-family: var(--benarroche-font-sans);
	font-weight: 600;
	color: var(--benarroche-primary);
	line-height: var(--benarroche-line-height-tight);
}

.benarroche-single-content h1 { font-size: var(--benarroche-fs-h1); margin: 2rem 0 0.75rem; }
.benarroche-single-content h1:first-child { margin-top: 0; }
.benarroche-single-content h2 { font-size: var(--benarroche-fs-h2); margin: 1.75rem 0 0.6rem; }
.benarroche-single-content h3 { font-size: var(--benarroche-fs-h3); margin: 1.5rem 0 0.5rem; color: var(--benarroche-text); }
.benarroche-single-content h4 { font-size: var(--benarroche-fs-h4); margin: 1.25rem 0 0.45rem; }
.benarroche-single-content h5 { font-size: var(--benarroche-fs-h5); margin: 1rem 0 0.4rem; }
.benarroche-single-content h6 { font-size: var(--benarroche-fs-h6); margin: 0.85rem 0 0.35rem; }

.benarroche-single-content p {
	margin: 0 0 1rem;
}

.benarroche-single-content ul,
.benarroche-single-content ol {
	margin: 0 0 1rem;
	padding-left: 1.5rem;
}

.benarroche-single-content li {
	margin-bottom: 0.35rem;
}

.benarroche-single-content a {
	color: var(--benarroche-accent);
	text-decoration: none;
}

.benarroche-single-content a:hover {
	text-decoration: underline;
}

.benarroche-single-content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--benarroche-accent);
	background: var(--benarroche-bg-alt);
	color: var(--benarroche-text-light);
	font-style: italic;
	border-radius: 0 var(--benarroche-radius) var(--benarroche-radius) 0;
}

.benarroche-single-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--benarroche-radius);
}

.benarroche-single-thumbnail {
	margin: 0 0 2rem;
	border-radius: var(--benarroche-radius);
	overflow: hidden;
	max-height: 420px;
}

.benarroche-single-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 420px;
	object-fit: cover;
	object-position: center;
}

.benarroche-no-posts {
	text-align: center;
	padding: 2rem;
	color: var(--benarroche-text-light);
	font-size: var(--benarroche-fs-large);
}

/* Tags & partage (single) */
.benarroche-single-footer {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--benarroche-border);
}

.benarroche-tags-label {
	font-size: var(--benarroche-fs-small);
	font-weight: 600;
	color: var(--benarroche-text-light);
	margin-bottom: 0.5rem;
}

.benarroche-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.benarroche-tags-list a {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	font-size: var(--benarroche-fs-small);
	color: var(--benarroche-primary);
	background: var(--benarroche-bg-alt);
	border-radius: var(--benarroche-radius);
	text-decoration: none;
	border: 1px solid var(--benarroche-border);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.benarroche-tags-list a:hover {
	background: var(--benarroche-primary);
	color: var(--benarroche-white);
	border-color: var(--benarroche-primary);
}

/* ==========================================================================
   Barre latérale single (catégories & étiquettes)
   ========================================================================== */
.benarroche-single-sidebar {
	background: var(--benarroche-bg-alt);
	border: 1px solid var(--benarroche-border);
	border-radius: var(--benarroche-radius);
	padding: 1.25rem;
	box-shadow: var(--benarroche-shadow);
}

.benarroche-sidebar-block {
	margin-bottom: 1.5rem;
}

.benarroche-sidebar-block:last-child {
	margin-bottom: 0;
}

.benarroche-sidebar-title {
	font-family: var(--benarroche-font-sans);
	font-size: var(--benarroche-fs-h3);
	font-weight: 600;
	color: var(--benarroche-primary);
	margin: 0 0 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--benarroche-accent);
}

.benarroche-sidebar-list,
.benarroche-sidebar-tags-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.benarroche-sidebar-list li {
	margin-bottom: 0.4rem;
}

.benarroche-sidebar-list a {
	display: block;
	padding: 0.35rem 0;
	font-size: var(--benarroche-fs-base);
	color: var(--benarroche-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.benarroche-sidebar-list a:hover {
	color: var(--benarroche-accent);
}

.benarroche-sidebar-count {
	font-size: var(--benarroche-fs-small);
	color: var(--benarroche-text-light);
	margin-left: 0.25rem;
}

.benarroche-sidebar-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	overflow: visible;
}

.benarroche-sidebar-tags-list li {
	margin: 0;
}

.benarroche-sidebar-tags-list a {
	display: inline-block;
	padding: 0.35rem 0.65rem;
	font-size: var(--benarroche-fs-small);
	color: var(--benarroche-primary);
	background: var(--benarroche-bg);
	border: 1px solid var(--benarroche-border);
	border-radius: var(--benarroche-radius);
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.benarroche-sidebar-tags-list a:hover {
	background: var(--benarroche-primary);
	color: var(--benarroche-white);
	border-color: var(--benarroche-primary);
}

/* ==========================================================================
   Navigation article précédent / suivant (cartes)
   ========================================================================== */
.benarroche-post-nav {
	display: grid;
	gap: 1rem;
	margin-top: 2.5rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.benarroche-post-nav {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}
}

.benarroche-post-nav-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 100px;
	padding: 1.25rem 1.5rem;
	background: var(--benarroche-bg);
	border: 1px solid var(--benarroche-border);
	border-radius: var(--benarroche-radius);
	box-shadow: var(--benarroche-shadow);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
	color: inherit;
	position: relative;
}

a.benarroche-post-nav-item:hover {
	border-color: var(--benarroche-accent);
	box-shadow: var(--benarroche-shadow-md);
	color: var(--benarroche-text);
}

.benarroche-post-nav-prev {
	text-align: left;
}

.benarroche-post-nav-next {
	text-align: right;
	align-items: flex-end;
}

.benarroche-post-nav-next .benarroche-post-nav-arrow {
	order: -1;
	margin-right: 0;
	margin-left: auto;
}

.benarroche-post-nav-label {
	font-size: var(--benarroche-fs-small);
	font-weight: 600;
	color: var(--benarroche-text-light);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 0.35rem;
}

.benarroche-post-nav-title {
	font-family: var(--benarroche-font-sans);
	font-size: var(--benarroche-fs-base);
	font-weight: 600;
	color: var(--benarroche-primary);
	line-height: 1.35;
}

a.benarroche-post-nav-item:hover .benarroche-post-nav-title {
	color: var(--benarroche-accent);
}

.benarroche-post-nav-arrow {
	font-size: 1.25rem;
	color: var(--benarroche-accent);
	margin-top: 0.5rem;
}

.benarroche-post-nav-empty {
	background: transparent;
	border: none;
	box-shadow: none;
	min-height: 0;
	padding: 0;
}

/* ==========================================================================
   Section contact (bas de page) – avec fond image optionnel
   ========================================================================== */
.benarroche-cta-section {
	position: relative;
	padding: 3rem var(--benarroche-gap);
	background-color: var(--benarroche-primary-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Page article : dégager le pied de page (CTA) de l'image et du contenu */
.benarroche-single-content-wrap .benarroche-cta-section {
	margin-top: 3rem;
}

.benarroche-cta-section-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--benarroche-primary-dark) 0%, var(--benarroche-primary) 100%);
	opacity: 0.88;
	pointer-events: none;
}

.benarroche-cta-section-inner {
	position: relative;
	z-index: 1;
}

.benarroche-cta-section .benarroche-cta-consultation {
	margin: 0;
	border: none;
	background: transparent;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.benarroche-cta-section .benarroche-cta-consultation p {
	color: var(--benarroche-white);
}

.benarroche-cta-section .benarroche-cta-consultation .button,
.benarroche-cta-section .benarroche-cta-consultation a.button {
	background: var(--benarroche-white);
	color: var(--benarroche-primary);
}

.benarroche-cta-section .benarroche-cta-consultation .button:hover,
.benarroche-cta-section .benarroche-cta-consultation a.button:hover {
	background: var(--benarroche-bg-alt);
	color: var(--benarroche-primary-hover);
}

/* CTA consultation (bloc commun – hors section fond) */
.benarroche-cta-consultation {
	text-align: center;
	padding: 2rem var(--benarroche-gap);
	background: var(--benarroche-bg-alt);
	border-radius: var(--benarroche-radius);
	margin: 2.5rem 0;
	border: 1px solid var(--benarroche-border);
}

.benarroche-cta-consultation p {
	margin: 0 0 1rem;
	font-size: var(--benarroche-fs-large);
	color: var(--benarroche-text);
}

.benarroche-cta-consultation .button,
.benarroche-cta-consultation a.button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-size: var(--benarroche-fs-base);
	font-weight: 600;
	color: var(--benarroche-white);
	background: var(--benarroche-primary);
	border: none;
	border-radius: var(--benarroche-radius);
	text-decoration: none;
	transition: background 0.2s ease;
	cursor: pointer;
}

.benarroche-cta-consultation .button:hover,
.benarroche-cta-consultation a.button:hover {
	background: var(--benarroche-primary-hover);
	color: var(--benarroche-white);
}

/* RTL (WPML / langues RTL) – à garder pour blog/single */
[dir="rtl"] .benarroche-post-card-inner {
	direction: rtl;
}

[dir="rtl"] .benarroche-single-content ul,
[dir="rtl"] .benarroche-single-content ol {
	padding-left: 0;
	padding-right: 1.5rem;
}

[dir="rtl"] .benarroche-single-content blockquote {
	border-left: none;
	border-right: 4px solid var(--benarroche-accent);
	border-radius: var(--benarroche-radius) 0 0 var(--benarroche-radius);
}

[dir="rtl"] .benarroche-post-nav-next {
	text-align: left;
	align-items: flex-start;
}

[dir="rtl"] .benarroche-post-nav-next .benarroche-post-nav-arrow {
	order: 0;
	margin-left: 0;
	margin-right: auto;
}

/* ==========================================================================
   Expertises + Besoins (CPT) – styles partagés
   ========================================================================== */
.benarroche-medical-archive-wrap,
.benarroche-medical-single-wrap {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.benarroche-medical-single {
	padding-top: var(--benarroche-header-offset);
}

.admin-bar .benarroche-medical-single {
	padding-top: calc(var(--benarroche-header-offset) + 32px);
}

.benarroche-implant-archive-hero .benarroche-archive-header {
	max-width: 780px;
	margin: 0 auto;
	padding: 1.2rem 1.5rem;
	border-radius: 14px;
	background: rgba(34, 57, 59, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(2px);
}

.benarroche-implant-archive-eyebrow {
	margin: 0 0 0.55rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
}

.benarroche-implant-image-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #eef4f4 0%, #d9e8e8 100%);
	color: var(--benarroche-primary);
	border: 1px dashed rgba(47, 80, 53, 0.35);
	border-radius: 14px;
	min-height: 360px;
	font-weight: 600;
	text-align: center;
	padding: 1rem;
}

.benarroche-implant-image-placeholder--small {
	min-height: 0;
	height: 100%;
	border-radius: 0;
	border: none;
}

.benarroche-implant-link-details {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	color: var(--benarroche-primary);
	text-decoration: none;
}

.benarroche-implant-link-details:hover,
.benarroche-implant-link-details:focus {
	color: var(--benarroche-primary-dark);
	text-decoration: underline;
}

.benarroche-implant-hero {
	display: grid;
	grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
	gap: 1.75rem;
	background: var(--benarroche-white);
	border: 1px solid var(--benarroche-border);
	border-radius: 16px;
	padding: 1.25rem;
	box-shadow: 0 8px 26px rgba(34, 57, 59, 0.08);
}

.benarroche-implant-hero-media img {
	width: 100%;
	display: block;
	border-radius: 14px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.benarroche-implant-title {
	margin: 0 0 0.4rem;
}

.benarroche-implant-model {
	margin: 0 0 0.5rem;
	color: var(--benarroche-secondary);
	font-weight: 600;
}

.benarroche-implant-hero-actions {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.benarroche-implant-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	border: 1px solid var(--benarroche-border);
	background: var(--benarroche-bg-alt);
	color: var(--benarroche-primary);
	font-weight: 600;
	text-decoration: none;
}

.benarroche-implant-back-link:hover,
.benarroche-implant-back-link:focus {
	background: var(--benarroche-primary);
	color: var(--benarroche-white);
}

.benarroche-medical-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.35rem;
}

.benarroche-medical-card {
	height: 100%;
	border: 1px solid var(--benarroche-border);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 24px rgba(34, 57, 59, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benarroche-medical-card:hover,
.benarroche-medical-card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(34, 57, 59, 0.14);
}

.benarroche-medical-card-media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(180deg, #f7faf9 0%, #edf4f4 100%);
}

.benarroche-medical-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.benarroche-medical-card-body {
	padding: 0.95rem 1rem 1.2rem;
}

.benarroche-medical-card-title {
	margin: 0 0 0.35rem;
	font-size: 1.24rem;
	line-height: 1.2;
}

.benarroche-medical-card-title a {
	color: var(--benarroche-primary);
	text-decoration: none;
}

.benarroche-medical-card-subtitle {
	margin: 0 0 0.5rem;
	color: var(--benarroche-secondary);
	font-weight: 600;
}

.benarroche-medical-card-excerpt {
	font-size: 0.95rem;
	color: var(--benarroche-text);
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 5.6em;
	margin-bottom: 0.75rem;
}

.benarroche-medical-main-content {
	margin-top: 1.2rem;
	display: grid;
	gap: 1rem;
}

.benarroche-medical-entry-content {
	background: #fff;
	border: 1px solid var(--benarroche-border);
	border-radius: 14px;
	padding: 1.2rem 1.25rem;
	font-size: 1.03rem;
	line-height: 1.72;
	color: var(--benarroche-text);
	box-shadow: 0 8px 24px rgba(34, 57, 59, 0.06);
}

.benarroche-medical-blocks {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.benarroche-medical-block {
	background: #fff;
	border: 1px solid var(--benarroche-border);
	border-radius: 14px;
	padding: 1.1rem 1.2rem;
	box-shadow: 0 8px 24px rgba(34, 57, 59, 0.06);
}

.benarroche-medical-blocks .benarroche-medical-block:nth-child(odd) {
	border-left: 4px solid rgba(47, 80, 53, 0.55);
}

.benarroche-medical-blocks .benarroche-medical-block:nth-child(even) {
	border-left: 4px solid rgba(61, 101, 104, 0.45);
}

.benarroche-medical-block h2 {
	margin: 0 0 0.6rem;
	color: var(--benarroche-primary);
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	line-height: 1.25;
}

.benarroche-medical-block--image-text {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1rem;
	align-items: start;
}

.benarroche-medical-block-media img {
	width: 100%;
	border-radius: 12px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.benarroche-medical-block-video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 12px;
}

.benarroche-medical-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.benarroche-medical-gallery-item img {
	width: 100%;
	display: block;
	border-radius: 10px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.benarroche-medical-videos,
.benarroche-medical-form-block {
	margin-top: 1rem;
	background: #fff;
	border: 1px solid var(--benarroche-border);
	border-radius: 14px;
	padding: 1.1rem 1.2rem;
	box-shadow: 0 8px 24px rgba(34, 57, 59, 0.06);
}

.benarroche-medical-videos h2,
.benarroche-medical-form-block h2 {
	margin-top: 0;
	color: var(--benarroche-primary);
}

.benarroche-medical-action-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 0.2rem;
	padding: 0.8rem 0;
}

.benarroche-medical-linked-list {
	margin: 0;
	padding-left: 1.1rem;
}

.benarroche-medical-linked-list a {
	color: var(--benarroche-primary);
	font-weight: 600;
	text-decoration: none;
}

.benarroche-medical-videos-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

@media (max-width: 1024px) {
	.benarroche-medical-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.benarroche-implant-hero {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.benarroche-medical-grid,
	.benarroche-medical-videos-grid,
	.benarroche-medical-block--image-text {
		grid-template-columns: 1fr;
	}

	.benarroche-medical-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ==========================================================================
   Archive Vidéos bloc opératoire
   ========================================================================== */
.benarroche-video-bloc-archive {
	color: var(--benarroche-text);
	font-family: var(--benarroche-font-sans);
}

.benarroche-video-bloc-page-hero {
	background-position: center top;
}

.benarroche-video-bloc-wrap {
	padding: 2.75rem 0 3.5rem;
}

.benarroche-video-bloc-intro {
	max-width: 920px;
	margin: 0 0 1.5rem;
	font-size: var(--benarroche-fs-base);
	line-height: var(--benarroche-line-height);
	color: var(--benarroche-text);
}

.benarroche-video-bloc-warning {
	max-width: 920px;
	margin: 0 0 2.75rem;
	padding: 1.15rem 1.35rem;
	background: #fff8e6;
	border: 1px solid #f0d58c;
	border-left: 4px solid #d4a017;
	border-radius: var(--benarroche-radius);
}

.benarroche-video-bloc-warning-title {
	margin: 0 0 0.35rem;
	color: var(--benarroche-text);
}

.benarroche-video-bloc-warning-text {
	margin: 0;
	color: var(--benarroche-text-light);
	font-size: var(--benarroche-fs-base);
}

.benarroche-video-bloc-list {
	display: grid;
	gap: 3.5rem;
}

.benarroche-video-bloc-item {
	padding-bottom: 3rem;
	border-bottom: 1px solid var(--benarroche-border);
}

.benarroche-video-bloc-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.benarroche-video-bloc-item-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: 2rem 2.75rem;
	align-items: start;
}

.benarroche-video-bloc-item-grid--solo {
	grid-template-columns: minmax(0, 1fr);
	max-width: 760px;
}

.benarroche-video-bloc-player {
	position: relative;
	width: 100%;
	margin: 0 0 1.35rem;
	border-radius: 14px;
	overflow: hidden;
	background: #0f172a;
	box-shadow: var(--benarroche-shadow-md);
	aspect-ratio: 16 / 9;
}

.benarroche-video-bloc-player__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benarroche-video-bloc-player__overlay-label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 0.85rem 1rem;
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.78) 100%);
}

.benarroche-video-bloc-player__play {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(15, 23, 42, 0.08);
	cursor: pointer;
	transition: background 0.2s ease;
}

.benarroche-video-bloc-player__play span {
	display: block;
	width: clamp(58px, 10vw, 78px);
	height: clamp(58px, 10vw, 78px);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	position: relative;
	transition: transform 0.2s ease;
}

.benarroche-video-bloc-player__play span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 12px 0 12px 18px;
	border-color: transparent transparent transparent var(--benarroche-primary-dark, #062a6d);
}

.benarroche-video-bloc-player__play:hover,
.benarroche-video-bloc-player__play:focus-visible {
	background: rgba(15, 23, 42, 0.18);
}

.benarroche-video-bloc-player__play:hover span,
.benarroche-video-bloc-player__play:focus-visible span {
	transform: scale(1.05);
}

.benarroche-video-bloc-player.is-playing iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.benarroche-video-bloc-item-title {
	font-family: var(--benarroche-font-heading);
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	font-weight: 700;
	color: var(--benarroche-primary);
	margin: 0 0 0.85rem;
	line-height: var(--benarroche-line-height-tight);
}

.benarroche-video-bloc-item-description {
	margin-bottom: 1.15rem;
	font-size: var(--benarroche-fs-base);
	line-height: var(--benarroche-line-height);
	color: var(--benarroche-text);
}

.benarroche-video-bloc-item-description p:last-child {
	margin-bottom: 0;
}

.benarroche-video-bloc-item-cta {
	margin: 0;
}

.benarroche-video-bloc-item-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none !important;
	color: #fff !important;
	background: var(--benarroche-primary);
	border-radius: var(--benarroche-radius);
	transition: background 0.2s ease, transform 0.2s ease;
}

.benarroche-video-bloc-item-cta-btn:hover,
.benarroche-video-bloc-item-cta-btn:focus {
	background: var(--benarroche-primary-hover);
	color: #fff !important;
}

.benarroche-video-bloc-faq-title {
	font-family: var(--benarroche-font-heading);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 700;
	color: var(--benarroche-text);
	margin: 0 0 1rem;
	line-height: var(--benarroche-line-height-tight);
}

.benarroche-video-bloc-faq-list {
	display: grid;
	gap: 0.65rem;
}

.benarroche-video-bloc-faq-item {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.benarroche-video-bloc-faq-question {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.95rem 1rem;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.35;
	cursor: pointer;
	color: #fff !important;
	background: var(--benarroche-primary);
	list-style: none;
}

.benarroche-video-bloc-faq-question::-webkit-details-marker {
	display: none;
}

.benarroche-video-bloc-faq-question__icon {
	flex: 0 0 auto;
	width: 1.1rem;
	text-align: center;
	opacity: 0.95;
	font-size: 0.85rem;
}

.benarroche-video-bloc-faq-question__text {
	flex: 1 1 auto;
}

.benarroche-video-bloc-faq-answer {
	padding: 1rem 1.1rem 1.1rem;
	font-size: var(--benarroche-fs-base);
	line-height: var(--benarroche-line-height);
	color: var(--benarroche-text);
	background: #eef6fb;
}

.benarroche-video-bloc-faq-answer p:last-child,
.benarroche-video-bloc-faq-answer ul:last-child {
	margin-bottom: 0;
}

.benarroche-video-bloc-cta-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: var(--benarroche-fs-small);
	margin: 0 0 0.5rem;
	opacity: 0.9;
}

.benarroche-video-bloc-cta-bullets {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	text-align: left;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.benarroche-video-bloc-cta-bullets li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.benarroche-video-bloc-cta-bullets li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: var(--benarroche-accent);
}

.benarroche-video-bloc-cta-text {
	max-width: 720px;
	margin: 0 auto 1.5rem;
}

.benarroche-cta-consultation--secondary {
	background: transparent !important;
	border: 2px solid #fff !important;
}

body.benarroche-archive-video-bloc .benarroche-cta-section {
	margin-top: 0;
}

@media (max-width: 991px) {
	.benarroche-video-bloc-item-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.benarroche-video-bloc-item-aside {
		order: 2;
	}
}

@media (max-width: 767px) {
	.benarroche-video-bloc-wrap {
		padding: 1.75rem 0 2.25rem;
	}

	.benarroche-video-bloc-list {
		gap: 2.5rem;
	}

	.benarroche-video-bloc-item {
		padding-bottom: 2.25rem;
	}
}

/* ==========================================================================
   Archive Vidéos bloc opératoire
   ========================================================================== */
.benarroche-video-bloc-archive {
	color: var(--benarroche-text);
	font-family: var(--benarroche-font-sans);
}

.benarroche-video-bloc-page-hero {
	background-position: center top;
}

.benarroche-video-bloc-wrap {
	padding: 2.75rem 0 3.5rem;
}

.benarroche-video-bloc-intro {
	max-width: 920px;
	margin: 0 0 1.5rem;
	font-size: var(--benarroche-fs-base);
	line-height: var(--benarroche-line-height);
	color: var(--benarroche-text);
}

.benarroche-video-bloc-warning {
	max-width: 920px;
	margin: 0 0 2.75rem;
	padding: 1.15rem 1.35rem;
	background: #fff8e6;
	border: 1px solid #f0d58c;
	border-left: 4px solid #d4a017;
	border-radius: var(--benarroche-radius);
}

.benarroche-video-bloc-warning-title {
	margin: 0 0 0.35rem;
	color: var(--benarroche-text);
}

.benarroche-video-bloc-warning-text {
	margin: 0;
	color: var(--benarroche-text-light);
	font-size: var(--benarroche-fs-base);
}

.benarroche-video-bloc-list {
	display: grid;
	gap: 3.5rem;
}

.benarroche-video-bloc-item {
	padding-bottom: 3rem;
	border-bottom: 1px solid var(--benarroche-border);
}

.benarroche-video-bloc-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.benarroche-video-bloc-item-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: 2rem 2.75rem;
	align-items: start;
}

.benarroche-video-bloc-item-grid--solo {
	grid-template-columns: minmax(0, 1fr);
	max-width: 760px;
}

.benarroche-video-bloc-player {
	position: relative;
	width: 100%;
	margin: 0 0 1.35rem;
	border-radius: 14px;
	overflow: hidden;
	background: #0f172a;
	box-shadow: var(--benarroche-shadow-md);
	aspect-ratio: 16 / 9;
}

.benarroche-video-bloc-player__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benarroche-video-bloc-player__overlay-label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 0.85rem 1rem;
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.78) 100%);
}

.benarroche-video-bloc-player__play {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(15, 23, 42, 0.08);
	cursor: pointer;
	transition: background 0.2s ease;
}

.benarroche-video-bloc-player__play span {
	display: block;
	width: clamp(58px, 10vw, 78px);
	height: clamp(58px, 10vw, 78px);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	position: relative;
	transition: transform 0.2s ease;
}

.benarroche-video-bloc-player__play span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 12px 0 12px 18px;
	border-color: transparent transparent transparent var(--benarroche-primary-dark, #062a6d);
}

.benarroche-video-bloc-player__play:hover,
.benarroche-video-bloc-player__play:focus-visible {
	background: rgba(15, 23, 42, 0.18);
}

.benarroche-video-bloc-player__play:hover span,
.benarroche-video-bloc-player__play:focus-visible span {
	transform: scale(1.05);
}

.benarroche-video-bloc-player.is-playing iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.benarroche-video-bloc-item-title {
	font-family: var(--benarroche-font-heading);
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	font-weight: 700;
	color: var(--benarroche-primary);
	margin: 0 0 0.85rem;
	line-height: var(--benarroche-line-height-tight);
}

.benarroche-video-bloc-item-description {
	margin-bottom: 1.15rem;
	font-size: var(--benarroche-fs-base);
	line-height: var(--benarroche-line-height);
	color: var(--benarroche-text);
}

.benarroche-video-bloc-item-description p:last-child {
	margin-bottom: 0;
}

.benarroche-video-bloc-item-cta {
	margin: 0;
}

.benarroche-video-bloc-item-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none !important;
	color: #fff !important;
	background: var(--benarroche-primary);
	border-radius: var(--benarroche-radius);
	transition: background 0.2s ease, transform 0.2s ease;
}

.benarroche-video-bloc-item-cta-btn:hover,
.benarroche-video-bloc-item-cta-btn:focus {
	background: var(--benarroche-primary-hover);
	color: #fff !important;
}

.benarroche-video-bloc-faq-title {
	font-family: var(--benarroche-font-heading);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 700;
	color: var(--benarroche-text);
	margin: 0 0 1rem;
	line-height: var(--benarroche-line-height-tight);
}

.benarroche-video-bloc-faq-list {
	display: grid;
	gap: 0.65rem;
}

.benarroche-video-bloc-faq-item {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.benarroche-video-bloc-faq-question {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.95rem 1rem;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.35;
	cursor: pointer;
	color: #fff !important;
	background: var(--benarroche-primary);
	list-style: none;
}

.benarroche-video-bloc-faq-question::-webkit-details-marker {
	display: none;
}

.benarroche-video-bloc-faq-question__icon {
	flex: 0 0 auto;
	width: 1.1rem;
	text-align: center;
	opacity: 0.95;
	font-size: 0.85rem;
}

.benarroche-video-bloc-faq-question__text {
	flex: 1 1 auto;
}

.benarroche-video-bloc-faq-answer {
	padding: 1rem 1.1rem 1.1rem;
	font-size: var(--benarroche-fs-base);
	line-height: var(--benarroche-line-height);
	color: var(--benarroche-text);
	background: #eef6fb;
}

.benarroche-video-bloc-faq-answer p:last-child,
.benarroche-video-bloc-faq-answer ul:last-child {
	margin-bottom: 0;
}

.benarroche-video-bloc-cta-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: var(--benarroche-fs-small);
	margin: 0 0 0.5rem;
	opacity: 0.9;
}

.benarroche-video-bloc-cta-bullets {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	text-align: left;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.benarroche-video-bloc-cta-bullets li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.benarroche-video-bloc-cta-bullets li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: var(--benarroche-accent);
}

.benarroche-video-bloc-cta-text {
	max-width: 720px;
	margin: 0 auto 1.5rem;
}

.benarroche-cta-consultation--secondary {
	background: transparent !important;
	border: 2px solid #fff !important;
}

body.benarroche-archive-video-bloc .benarroche-cta-section {
	margin-top: 0;
}

@media (max-width: 991px) {
	.benarroche-video-bloc-item-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.benarroche-video-bloc-item-aside {
		order: 2;
	}
}

@media (max-width: 767px) {
	.benarroche-video-bloc-wrap {
		padding: 1.75rem 0 2.25rem;
	}

	.benarroche-video-bloc-list {
		gap: 2.5rem;
	}

	.benarroche-video-bloc-item {
		padding-bottom: 2.25rem;
	}
}

