/* =========================
   LIVEGALERIE - ACCUEIL V1.5
   ========================= */

/* =========================
   LAYOUT HAUT DE PAGE
   ========================= */

.lg-home-top {
	display: grid;
	grid-template-columns: minmax(0, 740px) minmax(260px, 390px);
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto 18px auto;
	padding: 0 18px;
	box-sizing: border-box;
}

.lg-home-top__left,
.lg-home-top__right {
	min-width: 0;
	width: 100%;
}

#conteneur {
	padding-top: 12px;
}

.lg-home-top__left #conteneur_vitrine {
	float: none;
	width: 100%;
	margin: 0;
}

.lg-home-top__left #vitrine_v15.lg-home-hero {
	max-width: none;
	margin: 0;
}

/* =========================
   HERO COMPACT
   ========================= */

#vitrine_v15.lg-home-hero {
	margin: 0;
	max-width: 760px;
}

.lg-home-hero__header {
	background: linear-gradient(180deg, #efe7d5 0%, #e6dac0 100%);
	border: 1px solid #d9c8a5;
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
	padding: 8px 12px;
	box-sizing: border-box;
}

.lg-home-hero__header h2 {
	margin: 0;
	color: #3d2f1d;
	font-size: 14px;
	line-height: 1.2;
	font-weight: bold;
}

.lg-home-hero__card {
	display: flex;
	align-items: stretch;
	gap: 12px;
	background: linear-gradient(to bottom, #fffdf8 0%, #f8f3e7 100%);
	padding: 12px;
	border: 1px solid #e2d4b4;
	border-top: 0;
	border-radius: 0 0 10px 10px;
	box-sizing: border-box;
	min-width: 0;
	box-shadow:
		0 14px 32px rgba(88, 68, 28, 0.07),
		0 2px 8px rgba(88, 68, 28, 0.04);
}

/* =========================
   HERO MEDIA
   ========================= */

.lg-home-hero__media {
	position: relative;
	flex: 0 0 430px;
	width: 430px;
	height: 340px;
	min-width: 0;
	max-width: 430px;
	border-radius: 10px;
	overflow: hidden;
	background: #ece4d3;
	box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.lg-home-hero__image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 10px;
	cursor: pointer;
	background: #f3ede0;
}

.lg-home-hero__image-link img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	background: transparent;
	transition: transform .35s ease, filter .35s ease;
	will-change: transform;
}

.lg-home-hero__media:hover .lg-home-hero__image-link img {
	transform: scale(1.045);
	filter: brightness(1.04);
}

/* =========================
   HERO OVERLAY
   ========================= */

.lg-home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	pointer-events: none;
}

.lg-home-hero__overlay-top,
.lg-home-hero__overlay-bottom {
	padding: 10px;
}

.lg-home-hero__overlay-top {
	text-align: left;
}

.lg-home-hero__overlay-bottom {
	padding: 12px 14px;
	background: none;
	transition: none;
}

.lg-home-hero__media:hover .lg-home-hero__overlay-bottom {
	background: none;
}

.lg-home-hero__artist,
.lg-home-hero__title {
	display: inline-block;
	max-width: 86%;
}

.lg-home-hero__artist a,
.lg-home-hero__title a,
.lg-hero-badge {
	display: inline-block;
	padding: 3px 8px;
	background: rgba(61, 43, 15, 0.34);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 8px;
}

.lg-home-hero__artist a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	text-shadow: none;
}

.lg-home-hero__title {
	margin-top: 6px;
}

.lg-home-hero__title a {
	color: rgba(255,255,255,0.98);
	text-decoration: none;
	font-size: 12px;
	font-weight: 200;
	line-height: 0.8;
	text-shadow: none;
}

.lg-home-hero__title a:hover {
	color: #fff;
	text-decoration: underline;
}

.lg-hero-badge {
	padding: 5px 8px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
}

.lg-hero-badge--cert {
	background: rgba(255,255,255,0.95);
	color: #0f5e3b;
	border: 1px solid rgba(15,94,59,0.14);
}

/* =========================
   HERO INFOS
   ========================= */

.lg-home-hero__infos {
	flex: 0 0 250px;
	min-width: 0;
	height: 340px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: linear-gradient(to bottom, #ffffff 0%, #fcfaf6 100%);
	border: 1px solid #e7dcc2;
	border-radius: 14px;
	padding: 12px;
	box-shadow:
		0 10px 22px rgba(88, 68, 28, 0.05),
		0 2px 6px rgba(88, 68, 28, 0.03);
	box-sizing: border-box;
	overflow: hidden;
}

.lg-home-hero__intro {
	margin-bottom: 8px;
	font-size: 11px;
	color: #7b6a4c;
	font-weight: bold;
}

.lg-home-hero__meta {
	flex: 1 1 auto;
	min-height: 0;
	margin-bottom: 8px;
}

.lg-home-hero__follow {
	margin-top: auto;
	padding-top: 6px;
}

.lg-home-hero__row {
	padding: 6px 0;
	border-bottom: 1px solid #eee5cf;
}

.lg-home-hero__row:last-child {
	border-bottom: 0;
}

.lg-home-hero__label {
	display: block;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .4px;
	color: #8a7d5f;
	margin-bottom: 2px;
}

.lg-home-hero__value {
	display: block;
	font-size: 11px;
	color: #1c1c1c;
	line-height: 1.25;
}

.lg-home-hero__value a {
	color: #0b4f9c;
	text-decoration: none;
	font-weight: bold;
}

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

.lg-home-hero__row--price .lg-home-hero__value {
	font-size: 16px;
	font-weight: bold;
	color: #c46d00;
}

.lg-home-hero__stamp {
	margin: 0 0 8px 0;
	padding: 6px 8px;
	background: #f2fbf5;
	border: 1px solid #cfe6d6;
	border-radius: 7px;
	font-size: 11px;
	text-align: center;
}

.lg-home-hero__stamp a {
	color: #15603f;
	text-decoration: none;
	font-weight: bold;
}

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

.lg-home-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

/* =========================
   BOUTONS GENERIQUES
   ========================= */

.lg-home-btn {
	display: inline-block;
	text-align: center;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	transition: transform .15s ease;
	box-sizing: border-box;
}

.lg-home-btn:hover {
	transform: translateY(-1px);
}

.lg-home-btn--primary {
	background: linear-gradient(180deg, #334766 0%, #243654 100%);
	color: #fff;
	box-shadow: 0 6px 16px rgba(36,54,84,.18);
}

.lg-home-btn--primary:hover {
	color: #fff;
}

/* =========================
   SUIVI DANS LE HERO
   ========================= */

.lg-home-hero__follow .lg-follow-box {
	width: 100%;
	margin: 0;
	float: none;
	text-align: center;
}

.lg-home-hero__follow .lg-follow-meta {
	margin-bottom: 4px;
}

.lg-home-hero__follow .lg-follow-count {
	display: block;
	font-size: 10px;
	line-height: 1.15;
	color: #8a7d5f;
}

.lg-home-hero__follow .lg-follow-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	max-width: 100%;
	padding: 8px 10px;
	font-size: 12px;
	box-sizing: border-box;
	border-radius: 999px;
	overflow: hidden;
}

.lg-home-hero__follow .lg-follow-box,
.lg-home-hero__follow .lg-follow-meta,
.lg-home-hero__follow .lg-follow-btn {
	max-width: 100%;
}

.lg-home-hero__follow .lg-follow-label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lg-home-hero__follow .lg-follow-label {
	white-space: nowrap;
	font-size: 12px;
}

.lg-home-hero__follow .lg-heart {
	font-size: 13px;
}

.lg-home-hero__follow .lg-follow-sticky-wrap {
	display: none !important;
}

.lg-home-follow-head__cta {
	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;
}

.lg-home-follow-head__cta:hover {
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

/* =========================
   THEMES A DROITE
   ========================= */

.lg-home-seo-h1 {
	margin: 0 0 8px 0;
	font-size: 18px;
	line-height: 1.15;
	color: #2b2114;
	font-weight: 600;
	letter-spacing: -0.04em;
}

.lg-home-seo-intro {
	margin: 0 0 14px 0;
	font-size: 14px;
	line-height: 1.5;
	color: #6f5a31;
}

.lg-home-themes {
	min-width: 0;
	padding: 18px 18px 16px 18px;
	background: linear-gradient(180deg, #fffdf8 0%, #f7efdf 100%);
	border: 1px solid #dccaa3;
	border-radius: 16px;
	box-sizing: border-box;
	box-shadow:
		0 14px 30px rgba(88, 68, 28, 0.08),
		0 2px 8px rgba(88, 68, 28, 0.04);
}

.lg-home-themes h2 {
	margin: 0 0 10px 0;
	font-size: 18px;
	line-height: 1.2;
	color: #3a2b17;
	font-weight: 700;
}

.lg-home-themes__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 8px;
}

.lg-theme-card {
	display: inline-block;
	padding: 8px 12px;
	background: linear-gradient(180deg, #fffefb 0%, #f7f1e4 100%);
	border: 1px solid #decdaa;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	color: #4a3920;
	line-height: 1.2;
	box-shadow: 0 2px 6px rgba(88, 68, 28, 0.04);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease,
		color 0.15s ease,
		border-color 0.15s ease;
}

.lg-theme-card:hover {
	background: linear-gradient(180deg, #31588d 0%, #1f3f68 100%);
	color: #fff;
	border-color: #1f3f68;
	box-shadow: 0 8px 16px rgba(31, 63, 104, 0.18);
	transform: translateY(-1px);
}

/* =========================
   LIEN SERVICES
   ========================= */

.lg-home-services-link {
	clear: both;
	text-align: center;
	margin: 6px auto 22px auto;
	width: 100%;
	max-width: 1180px;
	padding: 0 18px;
	box-sizing: border-box;
}

/* =========================
   SUIVI - CONTENEUR
   ========================= */

#conteneur_suivi {
	clear: both;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto 18px auto;
	padding: 0 18px;
	box-sizing: border-box;
}

#conteneur_suivi .contenu_suivi {
	width: 100%;
	box-sizing: border-box;
}

#conteneur_suivi h2 {
	margin: 0 0 10px 0;
	font-size: 16px;
}

.lg-home-suivi {
	width: 100%;
	overflow: hidden;
}

/* =========================
   ARTISTES SUIVIS - HOME V1.5
   ========================= */

.lg-home-follow-section {
	clear: both;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto 22px auto;
	padding: 0 18px;
	box-sizing: border-box;
}

.lg-home-follow-shell {
	background: linear-gradient(180deg, #fffdf8 0%, #f8f1e2 100%);
	border: 1px solid #d9c7a0;
	border-radius: 16px;
	padding: 18px 18px 15px 18px;
	box-shadow:
		0 16px 34px rgba(88, 68, 28, 0.10),
		0 3px 10px rgba(88, 68, 28, 0.05);
}

.lg-home-follow-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}

.lg-home-follow-head__titles h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.02;
	color: #1f1a12;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.lg-home-follow-head__titles h2 a {
	color: #173f70;
	text-decoration: none;
}

.lg-home-follow-head__titles h2 a:hover {
	text-decoration: underline;
}

.lg-home-follow-head__titles p {
	margin: 6px 0 0 0;
	font-size: 14px;
	color: #6f5a31;
	line-height: 1.35;
}

.lg-home-follow-head__link {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	background: #fff;
	border: 1px solid #d9ccb0;
	color: #23456f;
	white-space: nowrap;
}

.lg-home-follow-head__link:hover {
	background: #fdfaf3;
}

.lg-home-follow-viewport {
	position: relative;
}

.lg-home-follow-rail-wrap {
	overflow: hidden;
}

.lg-home-follow-rail {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	padding: 4px 2px 10px 2px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.lg-home-follow-rail::-webkit-scrollbar {
	display: none;
}

.lg-home-follow-card {
	flex: 0 0 auto;
	width: 148px;
	text-decoration: none;
	color: inherit;
}

.lg-home-follow-card__media {
	width: 148px;
	height: 148px;
	border-radius: 12px;
	overflow: hidden;
	background: #111;
	box-shadow: 0 8px 18px rgba(0,0,0,0.12);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lg-home-follow-card:hover .lg-home-follow-card__media {
	transform: translateY(-2px);
	box-shadow: 0 12px 22px rgba(0,0,0,0.18);
}

.lg-home-follow-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lg-home-follow-card__meta {
	padding: 8px 4px 0 4px;
}

.lg-home-follow-card__artist {
	font-size: 12px;
	font-weight: bold;
	color: #2c2c2c;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lg-home-follow-card__time {
	margin-top: 3px;
	font-size: 11px;
	color: #8a7d5f;
	line-height: 1.2;
}

.lg-home-follow-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(23, 63, 112, 0.92);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 6px 14px rgba(0,0,0,0.18);
	z-index: 3;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.lg-home-follow-viewport:hover .lg-home-follow-nav {
	opacity: 1;
	pointer-events: auto;
}

.lg-home-follow-nav:hover {
	transform: translateY(-50%) scale(1.06);
}

.lg-home-follow-nav--left {
	left: -8px;
}

.lg-home-follow-nav--right {
	right: -8px;
}

.lg-home-follow-edge {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 130px;
	z-index: 2;
}

.lg-home-follow-edge--left {
	left: 0;
}

.lg-home-follow-edge--right {
	right: 0;
}

/* =========================
   RESPONSIVE
   ========================= */

@media screen and (max-width: 900px) {
	.lg-home-top {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		padding: 0 10px !important;
		box-sizing: border-box !important;
	}

	.lg-home-top__left,
	.lg-home-top__right {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box !important;
	}

	.lg-home-top__right {
		margin-top: 14px !important;
	}

	.lg-home-top__left #conteneur_vitrine,
	#vitrine_v15.lg-home-hero,
	.lg-home-themes {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		box-sizing: border-box !important;
	}

	.lg-home-hero__card {
		flex-direction: column !important;
	}

	.lg-home-hero__media {
		width: 100% !important;
		max-width: 100% !important;
		height: 240px !important;
		flex: none !important;
	}

	.lg-home-hero__infos {
		width: 100% !important;
		max-width: 100% !important;
		flex: none !important;
	}

	.lg-home-seo-h1 {
		font-size: 13px;
		margin-bottom: 4px;
	}

	.lg-home-seo-intro {
		font-size: 11px;
		line-height: 1.35;
		margin-bottom: 8px;
	}

	.lg-home-themes {
		padding: 10px 10px;
	}

	.lg-home-themes h2 {
		font-size: 13px;
		margin-bottom: 6px;
	}

	.lg-theme-card {
		padding: 5px 8px;
		font-size: 11px;
	}

	.lg-home-follow-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.lg-home-follow-head__titles h2 {
		font-size: 20px;
	}

	.lg-home-follow-card,
	.lg-home-follow-card__media {
		width: 128px;
		height: 128px;
	}
}

@media screen and (max-width: 640px) {
	.lg-home-top {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 0 8px;
	}

	.lg-home-top__right {
		margin-top: 12px !important;
	}

	.lg-home-hero__header h2 {
		font-size: 12px;
	}

	.lg-home-hero__intro,
	.lg-home-hero__value,
	.lg-home-hero__label {
		font-size: 10px;
	}

	.lg-home-hero__media {
		height: 200px;
	}

	.lg-home-themes h2 {
		font-size: 12px;
	}

	.lg-theme-card {
		font-size: 10px;
		padding: 4px 7px;
	}
}