/**
 * LUXIMMO vitrine — PAGE ARTICLE DE BLOG
 * Chargé via theme.addCustomCSS sur la page concernée.
 * Styles strictement isolés sous .luximmo-page-blog-article.
 */

/* ========== PAGE ARTICLE BLOG ========== */

.luximmo-page-blog-article {
	/* Fonds alignés footer : --luximmo-teal, pas #143833 */
	--lux-ba-gold: var(--luximmo-gold, #daa328);
	--lux-ba-cream: #fdf5e6;
	--lux-ba-text: var(--luximmo-teal);
	--lux-ba-muted: #4a5a60;
	--lux-ba-hero-band: clamp(22rem, 62vh, 42rem);
	--lux-ba-hero-header-pull: 9.5rem;
	--lux-ba-hero-wave-h: clamp(5rem, 14vh, 9.5rem);
	--lux-ba-prefooter-wave-h: clamp(4rem, 10vh, 7rem);
	--lux-ba-content-max: 60rem; /* 960px — colonne article + slider biens */
	--lux-ba-content-pad-x: clamp(1rem, 3vw, 1.5rem);
}

.luximmo-page-blog-article .lux-ba-page {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--lux-ba-text);
	background: #fff;
}

/* Colonne article : ref. luximmo.pro (max-width 960px) */
.luximmo-page-blog-article .lux-ba-container {
	width: 100%;
	max-width: var(--lux-ba-content-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--lux-ba-content-pad-x);
	padding-right: var(--lux-ba-content-pad-x);
}

.luximmo-page-blog-article .lux-ba-container--wide {
	max-width: 80rem;
}

/* --- Hero (image + titre overlay, header overlays) --- */
.luximmo-page-blog-article .lux-ba-hero {
	position: relative;
	min-height: var(--lux-ba-hero-band);
	height: var(--lux-ba-hero-band);
	overflow: hidden;
	background-color: var(--luximmo-teal);
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.luximmo-page-blog-article .lux-ba-hero-inner {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: var(--lux-ba-hero-band);
	padding: 5.5rem 1.25rem calc(var(--lux-ba-hero-wave-h) + 0.5rem);
	text-align: center;
}

.luximmo-page-blog-article .lux-ba-hero-title {
	margin: 0;
	width: 100%;
	max-width: 80rem; /* 1280px — ref. luximmo.pro */
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 28.8px;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
	color: #fff;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.luximmo-page-blog-article .lux-ba-hero-media,
.luximmo-page-blog-article .lux-ba-hero-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(-1 * var(--lux-ba-hero-header-pull));
	height: calc(100% + var(--lux-ba-hero-header-pull));
	pointer-events: none;
}

.luximmo-page-blog-article .lux-ba-hero-media {
	z-index: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.luximmo-page-blog-article .lux-ba-hero-overlay {
	z-index: 1;
	background: rgba(30, 73, 81, 0.45);
}

/* Courbe bas de hero : arc de cercle (même technique que luximmo-blog.css) */
.luximmo-page-blog-article .lux-ba-hero-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 3;
	height: var(--lux-ba-hero-wave-h);
	overflow: hidden;
	pointer-events: none;
}

.luximmo-page-blog-article .lux-ba-hero-wave-arc {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 180%;
	max-width: none;
	aspect-ratio: 1;
	transform: translate(-50%, 50%);
	border-radius: 50%;
	background: #fff;
}

/* --- Intro (fil d’Ariane + pill sous la courbe) --- */
.luximmo-page-blog-article .lux-ba-intro {
	background: #fff;
	padding: 0.25rem 0 1.25rem;
}

.luximmo-page-blog-article .lux-ba-bc {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	margin: 0 0 1rem;
	font-size: 0.8rem;
	line-height: 1.4;
}

.luximmo-page-blog-article .lux-ba-bc a {
	color: var(--lux-ba-gold);
	text-decoration: none;
	font-weight: 500;
}

.luximmo-page-blog-article .lux-ba-bc a:hover,
.luximmo-page-blog-article .lux-ba-bc a:focus {
	text-decoration: underline;
}

.luximmo-page-blog-article .lux-ba-bc-sep {
	color: #adb5bd;
	font-weight: 600;
}

.luximmo-page-blog-article .lux-ba-bc-current {
	color: var(--lux-ba-muted);
	font-weight: 500;
}

/* --- Body --- */
.luximmo-page-blog-article .lux-ba-body {
	background: #fff;
	padding: 0 0 4rem;
}

.luximmo-page-blog-article .lux-ba-body:not(.lux-ba-body--continued) {
	padding-bottom: 0;
}

.luximmo-page-blog-article .lux-ba-body--continued {
	padding-top: 2.5rem;
}

/* Toolbar back button — même styles que lux-bd-toolbar-btn (bien detail) */
.luximmo-page-blog-article .lux-ba-toolbar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 2.25rem;
	padding: 0.45rem 1.05rem;
	border: 1px solid #1d4851;
	border-radius: 999px;
	background: #fff;
	color: #1d4851;
	font-family: var(--luximmo-font-sans);
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.luximmo-page-blog-article .lux-ba-toolbar-btn:hover,
.luximmo-page-blog-article .lux-ba-toolbar-btn:focus-visible {
	background-color: #1d4851;
	border-color: #1d4851;
	color: #fff;
	outline: none;
}

.luximmo-page-blog-article .lux-ba-toolbar-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 0;
}

.luximmo-page-blog-article .lux-ba-toolbar-btn__icon svg {
	display: block;
	width: 0.875rem;
	height: 0.875rem;
}

.luximmo-page-blog-article .lux-ba-toolbar-btn__label {
	white-space: nowrap;
}

/* Paragraphes — ref. luximmo.pro : 14.4px / #000 */
.luximmo-page-blog-article .lux-ba-para {
	margin: 0 0 1.15rem;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14.4px;
	font-size: 0.9rem;
	line-height: 1.75;
	color: #000;
}

.luximmo-page-blog-article .lux-ba-para strong {
	color: #000;
	font-weight: 700;
}

/* Liens & emphase dorée dans le texte */
.luximmo-page-blog-article .lux-ba-link,
.luximmo-page-blog-article .lux-ba-em {
	color: var(--lux-ba-gold);
	font-weight: 600;
	text-decoration: none;
}

.luximmo-page-blog-article .lux-ba-link:hover,
.luximmo-page-blog-article .lux-ba-link:focus {
	text-decoration: underline;
}

.luximmo-page-blog-article .lux-ba-em {
	font-weight: 600;
}

/* Titres H2 — ref. luximmo.pro : 25.2px / #1D4851 */
.luximmo-page-blog-article .lux-ba-h2 {
	margin: 2.5rem 0 1.25rem;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 25.2px;
	font-size: 1.575rem;
	font-weight: 700;
	line-height: 1.2;
	color: #1d4851;
	text-align: center;
}

/* --- Inline image grid (2 colonnes avec caption) --- */
.luximmo-page-blog-article .lux-ba-inline-grid {
	display: grid;
	gap: 1.25rem;
	margin: 1.5rem 0 2rem;
}

.luximmo-page-blog-article .lux-ba-inline-grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

.luximmo-page-blog-article .lux-ba-inline-figure {
	margin: 0;
	background: var(--lux-ba-cream);
	border-radius: 0.35rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.luximmo-page-blog-article .lux-ba-inline-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.luximmo-page-blog-article .lux-ba-inline-caption {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.85rem 1rem 1rem;
}

.luximmo-page-blog-article .lux-ba-inline-title {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--lux-ba-text);
	text-transform: uppercase;
}

.luximmo-page-blog-article .lux-ba-inline-meta {
	font-size: 0.78rem;
	color: var(--lux-ba-muted);
	line-height: 1.5;
}

/* --- Pleine largeur (column max) figure --- */
.luximmo-page-blog-article .lux-ba-figure {
	margin: 1.75rem 0 2rem;
	border-radius: 0.35rem;
	overflow: hidden;
}

.luximmo-page-blog-article .lux-ba-figure-img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 28rem;
	object-fit: cover;
}

/* --- CTA estimation (reprend la pillule blog) --- */
.luximmo-page-blog-article .lux-ba-cta {
	position: relative;
	min-height: 20rem;
	background-color: var(--lux-ba-cream);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 3.5rem 0;
}

.luximmo-page-blog-article .lux-ba-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(253, 245, 230, 0.35);
	z-index: 0;
}

.luximmo-page-blog-article .lux-ba-cta .lux-ba-container--wide {
	z-index: 1;
}

.luximmo-page-blog-article .lux-ba-cta-box {
	width: 100%;
	max-width: 36rem;
	background: rgba(218, 163, 40, 0.95);
	padding: 2rem 2.25rem;
	border-radius: 0.625rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.luximmo-page-blog-article .lux-ba-cta-title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
}

.luximmo-page-blog-article .lux-ba-cta-form {
	width: 100%;
}

.luximmo-page-blog-article .lux-ba-cta-pill {
	display: flex;
	align-items: stretch;
	width: 100%;
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}

.luximmo-page-blog-article .lux-ba-cta-field {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
}

.luximmo-page-blog-article .lux-ba-cta-pin {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--luximmo-teal);
	pointer-events: none;
	z-index: 1;
}

.luximmo-page-blog-article .lux-ba-cta-input {
	width: 100%;
	height: 2.875rem;
	padding: 0 1rem 0 2.5rem;
	border: 0;
	border-radius: 999px 0 0 999px;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 0.9rem;
	background: #fff;
	color: #374151;
	box-shadow: none;
}

.luximmo-page-blog-article .lux-ba-cta-input:focus {
	outline: none;
	box-shadow: inset 0 0 0 2px rgba(33, 73, 81, 0.25);
}

.luximmo-page-blog-article .lux-ba-cta-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 1.5rem;
	min-height: 2.875rem;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff !important;
	background: var(--luximmo-teal) !important;
	border: 1px solid var(--luximmo-teal) !important;
	border-radius: 0 999px 999px 0 !important;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.luximmo-page-blog-article .lux-ba-cta-btn:hover,
.luximmo-page-blog-article .lux-ba-cta-btn:focus-visible {
	background: #fff !important;
	color: var(--luximmo-teal) !important;
	border-color: var(--luximmo-teal) !important;
}

/* --- Bandeau doré : flex 50/50 + courbe (ref. luximmo.pro) --- */
.luximmo-page-blog-article .lux-ba-prefooter-gold {
	position: relative;
	background-color: var(--lux-ba-gold);
	background-image:
		radial-gradient(ellipse 45% 55% at 12% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 70%),
		radial-gradient(ellipse 40% 50% at 88% 65%, rgba(255, 255, 255, 0.1) 0%, transparent 65%),
		radial-gradient(ellipse 35% 45% at 55% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
	background-repeat: no-repeat;
	overflow: hidden;
}

.luximmo-page-blog-article .lux-ba-prefooter-gold-inner {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	width: 100%;
	max-width: 69rem; /* ~1104px */
	min-height: 28.875rem; /* ~462px — ref. luximmo.pro */
	margin: 0 auto;
	padding: 5rem 5rem calc(5rem + var(--lux-ba-prefooter-wave-h));
	box-sizing: border-box;
}

.luximmo-page-blog-article .lux-ba-prefooter-gold-col {
	flex: 0 0 50%;
	max-width: 50%;
	min-width: 0;
}

.luximmo-page-blog-article .lux-ba-prefooter-gold-col--spacer {
	/* colonne gauche vide — ref. luximmo.pro */
}

.luximmo-page-blog-article .lux-ba-prefooter-gold-col--content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding-left: 1.5rem;
	text-align: left;
}

.luximmo-page-blog-article .lux-ba-publish-meta,
.luximmo-page-blog-article .lux-ba-publish-text {
	margin: 0;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14.4px;
	font-size: 0.9rem;
	line-height: 1.75;
	color: #fff;
}

.luximmo-page-blog-article .lux-ba-publish-meta {
	margin-bottom: 0.75rem;
}

.luximmo-page-blog-article .lux-ba-prefooter-gold-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 1;
	height: var(--lux-ba-prefooter-wave-h);
	overflow: hidden;
	pointer-events: none;
}

.luximmo-page-blog-article .lux-ba-prefooter-gold-wave-arc {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 180%;
	max-width: none;
	aspect-ratio: 1;
	transform: translate(-50%, 50%);
	border-radius: 50%;
	background: var(--luximmo-teal);
}

/* --- « Vous apprécierez également… » + lunettes — ref. luximmo.pro --- */
.luximmo-page-blog-article .lux-ba-also {
	background: var(--luximmo-teal);
	border-top: 0.5rem solid var(--lux-ba-gold);
	border-bottom: 0.5rem solid var(--lux-ba-gold);
}

.luximmo-page-blog-article .lux-ba-also-inner {
	display: grid;
	grid-template-rows: auto 1fr;
	align-items: start;
	justify-items: center;
	width: 100%;
	max-width: 80rem;
	min-height: 25.25rem; /* ~404px */
	margin: 0 auto;
	padding: 4.5rem 5rem 5.5rem;
	box-sizing: border-box;
}

.luximmo-page-blog-article .lux-ba-also-text {
	margin: 0;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 25.2px;
	font-size: 1.575rem;
	line-height: 1.2;
	text-align: center;
	color: #fff;
}

.luximmo-page-blog-article .lux-ba-also-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	align-self: center;
}

.luximmo-page-blog-article .lux-ba-also-glasses {
	display: block;
	width: 7.5rem;
	height: 7.5rem;
	color: var(--lux-ba-gold);
}

.luximmo-page-blog-article .lux-ba-also-strong {
	font-weight: 700;
	color: #fff;
}

.luximmo-page-blog-article .lux-ba-also-rest {
	font-weight: 400;
	color: #fff;
}

/* --- Slider biens (sous bandeau teal) --- */
.luximmo-page-blog-article .lux-ba-biens {
	background: #fff;
	padding: 2.5rem 0 3.5rem;
}

.luximmo-page-blog-article .lux-ba-biens-inner {
	width: 100%;
	max-width: var(--lux-ba-content-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--lux-ba-content-pad-x);
	padding-right: var(--lux-ba-content-pad-x);
	box-sizing: border-box;
}

.luximmo-page-blog-article .lux-ba-biens-slider {
	position: relative;
}

.luximmo-page-blog-article .lux-ba-biens-viewport {
	position: relative;
	overflow: hidden;
	margin: 0;
}

.luximmo-page-blog-article .lux-ba-biens-track {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: nowrap;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.luximmo-page-blog-article .lux-ba-biens-track::-webkit-scrollbar {
	display: none;
}

.luximmo-page-blog-article .lux-ba-biens-slide {
	flex: 0 0 calc(50% - 0.75rem);
	min-width: calc(50% - 0.75rem);
	scroll-snap-align: start;
}

.luximmo-page-blog-article .lux-ba-biens .luximmo-bien-card-badge {
	display: none;
}

/* Blog : pas de carousel interne par carte (1ère photo uniquement) */
.luximmo-page-blog-article .lux-ba-biens .luximmo-bien-card-carousel,
.luximmo-page-blog-article .lux-ba-biens .luximmo-bien-carousel-dots,
.luximmo-page-blog-article .lux-ba-biens .luximmo-bien-carousel-btn {
	display: none !important;
}

/* Pas d’effet hover sur la carte (listing nos-biens en importe un par défaut) */
.luximmo-page-blog-article .lux-ba-biens .luximmo-bien-card {
	transition: none;
}

.luximmo-page-blog-article .lux-ba-biens .luximmo-bien-card:hover {
	box-shadow: 0 0.35rem 1.25rem rgba(20, 56, 51, 0.12);
	transform: none;
}

.luximmo-page-blog-article .lux-ba-biens .luximmo-bien-card-title-link:hover {
	color: inherit;
}

.luximmo-page-blog-article .lux-ba-biens .lux-ba-bien-cta:hover {
	background: var(--lux-ba-gold);
	color: #fff !important;
}

.luximmo-page-blog-article .lux-ba-biens .luximmo-bien-card-title-link {
	color: inherit;
}

.luximmo-page-blog-article .lux-ba-biens .lux-ba-bien-cta:focus-visible {
	outline: 2px solid var(--luximmo-teal);
	outline-offset: 2px;
	background: var(--lux-ba-gold);
	color: #fff !important;
}

.luximmo-page-blog-article .lux-ba-bien-exclusivity {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 7;
	padding: 0.3rem 0.65rem;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	background: #e67e22;
	border-radius: 0.2rem;
	line-height: 1.2;
	pointer-events: none;
}

.luximmo-page-blog-article .lux-ba-bien-excerpt {
	margin: 0.75rem 0 1rem;
	font-size: 0.82rem;
	line-height: 1.55;
	color: #6c757d;
	flex: 1 1 auto;
}

.luximmo-page-blog-article .lux-ba-bien-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 0.45rem 1.15rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-decoration: none !important;
	color: #fff !important;
	background: var(--lux-ba-gold);
	border-radius: 999px;
	transition: background 0.2s ease;
}

.luximmo-page-blog-article .lux-ba-biens-empty {
	text-align: center;
	padding: 2rem 0;
}

.luximmo-page-blog-article .lux-ba-biens-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	transition: opacity 0.2s ease, background 0.2s ease;
}

.luximmo-page-blog-article .lux-ba-biens-nav[hidden] {
	display: none !important;
}

.luximmo-page-blog-article .lux-ba-biens-nav--prev {
	left: 0.4rem;
	background: var(--lux-ba-gold);
	color: #fff;
}

.luximmo-page-blog-article .lux-ba-biens-nav--prev:hover,
.luximmo-page-blog-article .lux-ba-biens-nav--prev:focus-visible {
	background: var(--luximmo-gold-hover, #c9a227);
}

.luximmo-page-blog-article .lux-ba-biens-nav--next {
	right: 0.4rem;
	background: #fff;
	color: var(--lux-ba-gold);
	box-shadow: 0 0.15rem 0.65rem rgba(20, 56, 51, 0.15);
}

.luximmo-page-blog-article .lux-ba-biens-nav--next:hover,
.luximmo-page-blog-article .lux-ba-biens-nav--next:focus-visible {
	background: var(--lux-ba-gold);
	color: #fff;
}

.luximmo-page-blog-article .lux-ba-biens-nav__icon {
	display: flex;
	line-height: 0;
}

/* --- Bandeau réseaux (avant footer — ref. luximmo.pro) --- */
.luximmo-page-blog-article .lux-ba-social {
	width: 100%;
}

.luximmo-page-blog-article .lux-ba-social-gold {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 6.9rem; /* ~110px */
	padding: 2.75rem 0;
	background: var(--lux-ba-gold);
}

.luximmo-page-blog-article .lux-ba-social-inner {
	width: 100%;
	max-width: 80rem; /* 1280px */
	margin: 0 auto;
	padding: 0 5rem;
	text-align: left;
}

.luximmo-page-blog-article .lux-ba-social-text {
	margin: 0;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 25.2px;
	font-size: 1.575rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
}

/* --- Responsive --- */
@media (max-width: 767.98px) {
	.luximmo-page-blog-article {
		--lux-ba-hero-band: clamp(18rem, 50vh, 28rem);
		--lux-ba-hero-header-pull: 5.5rem;
		--lux-ba-hero-wave-h: clamp(3.5rem, 12vh, 6rem);
	}

	.luximmo-page-blog-article .lux-ba-hero-title {
		font-size: clamp(1.25rem, 4.5vw, 1.8rem);
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}

	.luximmo-page-blog-article .lux-ba-inline-grid--2 {
		grid-template-columns: 1fr;
	}

	.luximmo-page-blog-article .lux-ba-cta-pill {
		flex-direction: column;
		border-radius: 0.625rem;
	}

	.luximmo-page-blog-article .lux-ba-cta-input {
		border-radius: 0.625rem 0.625rem 0 0;
	}

	.luximmo-page-blog-article .lux-ba-cta-btn {
		width: 100%;
		border-radius: 0 0 0.625rem 0.625rem;
	}

	.luximmo-page-blog-article .lux-ba-social-text {
		font-size: clamp(1.1rem, 4vw, 1.575rem);
	}

	.luximmo-page-blog-article .lux-ba-also-inner {
		min-height: 16rem;
		padding: 3rem 1.25rem 4rem;
	}

	.luximmo-page-blog-article .lux-ba-also-glasses {
		width: 5.5rem;
		height: 5.5rem;
	}

	.luximmo-page-blog-article .lux-ba-social-inner {
		padding: 0 1.25rem;
	}

	.luximmo-page-blog-article .lux-ba-also-text {
		font-size: clamp(1.1rem, 4vw, 1.575rem);
	}

	.luximmo-page-blog-article .lux-ba-prefooter-gold-inner {
		flex-direction: column;
		min-height: 0;
		padding: 3.5rem 1.25rem calc(3.5rem + var(--lux-ba-prefooter-wave-h));
	}

	.luximmo-page-blog-article .lux-ba-prefooter-gold-col--spacer {
		display: none;
	}

	.luximmo-page-blog-article .lux-ba-prefooter-gold-col {
		flex: 1 1 auto;
		max-width: 100%;
	}

	.luximmo-page-blog-article .lux-ba-prefooter-gold-col--content {
		padding-left: 0;
	}

	.luximmo-page-blog-article .lux-ba-biens-inner {
		padding-left: var(--lux-ba-content-pad-x);
		padding-right: var(--lux-ba-content-pad-x);
	}

	.luximmo-page-blog-article .lux-ba-biens-viewport {
		margin: 0;
	}

	.luximmo-page-blog-article .lux-ba-biens-slide {
		flex: 0 0 100%;
		min-width: 100%;
	}

	.luximmo-page-blog-article .lux-ba-biens-nav {
		width: 2.15rem;
		height: 2.15rem;
	}
}
