/* =========================
   PROMOTION ARTISTE / GALERIE
   ========================= */

/* Neutralisation des anciens styles de styles.css pour le bloc promo */
#alaune.lg-promo {
	width: auto;
	border: 0;
	text-align: center;
	padding-bottom: 0;
	margin: 0 auto 10px auto !important;
}

#alaune.lg-promo h2,
#alaune.lg-promo h2 a {
	background: none !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.lg-promo {
	clear: both;
	width: 100%;
	margin: 0 auto 10px auto !important;
	padding: 0 18px;
	box-sizing: border-box;
	text-align: center;
	overflow: visible;
}

/* Bloc à largeur variable, centré */
.lg-promo__box {
	position: relative;
	display: inline-block;
	width: fit-content;
	max-width: 100%;
	text-align: center;
	background: linear-gradient(180deg, #fcfaf4 0%, #f6edd9 100%);
	border: 1px solid #e3d6b8;
	border-radius: 16px;
	padding: 16px 18px 16px 18px;
	box-shadow:
		0 8px 20px rgba(0,0,0,0.05),
		inset 0 1px 0 rgba(255,255,255,0.65);
	box-sizing: border-box;
	overflow: visible;
}

/* Une seule ligne décorative en haut */
.lg-promo__box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 16px;
	right: 16px;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, #173f70, #c8a96a);
}

/* Header sobre, propre */
.lg-promo__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 14px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px solid #e3d7bc;
	text-align: left;
}

.lg-promo__title {
	margin: 0;
	padding: 0;
	background: none !important;
	border: 0;
	box-shadow: none;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;
	color: #3d2f1d;
	letter-spacing: 0.1px;
}

.lg-promo__title a {
	background: none !important;
	color: #173f70;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	box-shadow: none;
	padding: 0;
}

.lg-promo__title a:hover {
	text-decoration: underline;
}

.lg-promo__btn {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	background: linear-gradient(180deg, #295c9d 0%, #163d6b 100%);
	color: #fff;
	box-shadow: 0 5px 12px rgba(22,61,107,.16);
	white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lg-promo__btn:hover {
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 8px 16px rgba(22,61,107,.22);
}

/* Rail d'images : jamais tronqué */
.lg-promo__images {
	display: inline-flex;
	width: max-content;
	max-width: 100%;
	align-items: flex-end;
	justify-content: center;
	gap: 18px;
	flex-wrap: nowrap;
	overflow: visible;
	min-height: 116px;
	margin: 0 auto;
}

/* Liens images */
.lg-promo__item {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: flex-end;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.18s ease, filter 0.18s ease;
}

.lg-promo__item:hover {
	transform: translateY(-3px);
	filter: saturate(1.04);
}

/* Image : hauteur fixe, largeur auto */
.lg-promo__item img {
	display: block;
	height: 100px;
	width: auto;
	max-width: none;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(0,0,0,0.10);
	transition: transform 0.20s ease, box-shadow 0.20s ease;
}

.lg-promo__item:hover img {
	transform: scale(1.03);
	box-shadow: 0 12px 22px rgba(0,0,0,0.16);
}

/* Mobile / petits écrans */
@media screen and (max-width: 900px) {
	.lg-promo__box {
		display: block;
		width: 100%;
		max-width: 100%;
	}

	.lg-promo__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.lg-promo__images {
		display: flex;
		width: 100%;
		max-width: 100%;
		justify-content: flex-start;
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
		-ms-overflow-style: none;
		padding-bottom: 4px;
	}

	.lg-promo__images::-webkit-scrollbar {
		display: none;
	}
}

@media screen and (max-width: 640px) {
	.lg-promo {
		padding: 0 12px;
	}

	.lg-promo__box {
		padding: 14px;
	}

	.lg-promo__title {
		font-size: 13px;
		line-height: 1.2;
		letter-spacing: .2px;
	}

	.lg-promo__title a {
		font-size: 13px;
		margin-left: 0;
	}

	.lg-promo__item img {
		height: 90px;
	}
}