/* Conteneur global des bannières */
.sr-banner-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 20px;
}

/* Bloc bannière */
.sr-banner-item {
	position: relative;
	width: 100%;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 20px;
}

/* Image responsive plein écran */
.sr-banner-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 6px;
	transition: transform 0.3s ease;
}

/* Lien couvrant toute l'image */
.sr-banner-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	line-height: 0;
}

/* Effet au survol */
.sr-banner-item:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
