.soundscape-artistes-wrapper{
	position: relative;
	width: 100%;
	margin: 0;
	color: #fff7de;
}

.soundscape-artistes-header{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

.soundscape-artistes-heading-left{
	max-width: 760px;
}

.soundscape-artistes-kicker{
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #e4b833;
	margin-bottom: 10px;
}

.soundscape-artistes-title{
	margin: 0;
	font-size: 46px;
	line-height: 1.02;
	font-weight: 400;
	color: #fff7de;
}

.soundscape-artistes-link-all{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: #e4b833;
	transition: opacity .25s ease, transform .25s ease;
}

.soundscape-artistes-link-all:hover{
	opacity: .9;
	transform: translateX(2px);
}

.soundscape-artistes-stage{
	position: relative;
	padding: 0 44px; /* laisse la place aux flèches */
}

.soundscape-artistes-slider{
	position: relative;
	overflow: hidden;
}

.soundscape-artiste-card{
	position: relative;
	background: linear-gradient(180deg, rgba(30,30,34,0.98) 0%, rgba(24,24,28,1) 100%);
	border: 1px solid rgba(228, 184, 51, 0.18);
	border-radius: 6px;
	overflow: hidden;
	transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.soundscape-artiste-card:hover{
	transform: translateY(-6px);
	border-color: rgba(228, 184, 51, 0.42);
	box-shadow: 0 18px 40px rgba(0,0,0,.34);
}

.soundscape-artiste-thumb{
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: #111;
	overflow: hidden;
}

.soundscape-artiste-thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .65s ease, filter .35s ease;
}

.soundscape-artiste-card:hover .soundscape-artiste-thumb img{
	transform: scale(1.05);
	filter: saturate(1.02);
}

.soundscape-artiste-overlay{
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.55) 100%);
	pointer-events: none;
}

.soundscape-artiste-content{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 16px 18px;
	flex: 1;
}

.soundscape-artiste-text{
	flex: 1;
	min-width: 0;
}

.soundscape-artiste-name{
	margin: 0 0 8px 0;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 600;
}

.soundscape-artiste-name a{
	color: #fff7de;
	text-decoration: none;
}

.soundscape-artiste-name a:hover{
	color: #fff7de;
	opacity: .95;
}

.soundscape-artiste-meta{
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
	color: rgba(255,247,222,.78);
}

.soundscape-artiste-play{
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(228, 184, 51, 0.65);
	background: rgba(25,25,26,.92);
	color: #e4b833;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset;
	transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.soundscape-artiste-play:hover{
	background: #e4b833;
	color: #19191a;
	border-color: #e4b833;
	transform: scale(1.06);
	box-shadow: 0 10px 20px rgba(228,184,51,.18);
}

.soundscape-artiste-play svg{
	width: 14px;
	height: 14px;
	display: block;
	fill: currentColor;
	margin-left: 1px;
}

.soundscape-artistes-nav{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(228, 184, 51, 0.50);
	background: rgba(25,25,26,.96);
	color: #e4b833;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .25s ease;
}

.soundscape-artistes-nav:hover{
	background: #e4b833;
	color: #19191a;
	border-color: #e4b833;
}

.soundscape-artistes-nav svg{
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.soundscape-artistes-prev{
	left: 0;
}

.soundscape-artistes-next{
	right: 0;
}

.soundscape-artistes-empty{
	padding: 22px;
	border: 1px solid rgba(228, 184, 51, 0.18);
	background: #1d1d1f;
	color: #fff7de;
	border-radius: 6px;
}

@media (max-width: 1200px){
	.soundscape-artistes-title{
		font-size: 40px;
	}
}

@media (max-width: 980px){
	.soundscape-artistes-title{
		font-size: 34px;
	}

	.soundscape-artistes-stage{
		padding: 0 36px;
	}
}

@media (max-width: 767px){
	.soundscape-artistes-header{
		margin-bottom: 18px;
	}

	.soundscape-artistes-title{
		font-size: 28px;
	}

	.soundscape-artistes-stage{
		padding: 0 28px;
	}

	.soundscape-artistes-nav{
		width: 36px;
		height: 36px;
	}

	.soundscape-artiste-content{
		padding: 14px 14px 16px;
	}

	.soundscape-artiste-name{
		font-size: 17px;
	}

	.soundscape-artiste-meta{
		font-size: 13px;
	}

	.soundscape-artiste-play{
		width: 38px;
		height: 38px;
	}
}
/* Correctifs Swiper / largeur des colonnes */
.soundscape-artistes-swiper {
	width: 100%;
}

.soundscape-artistes-swiper .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.soundscape-artistes-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.soundscape-artiste-card {
	height: 100%;
}

/* Empêche les cartes d'être gigantesques sur mobile */
@media (max-width: 767px){
	.soundscape-artiste-thumb{
		aspect-ratio: 16 / 11;
	}

	.soundscape-artistes-swiper .swiper-slide {
		max-width: none;
	}
}