/* ============================================================
   DAL'ALU — Page "Les 7 bonnes raisons de choisir DAL'ALU ?"
   ============================================================ */

.dal-7r {
	padding-bottom: 90px;
	overflow: hidden;
}

.dal-7r .dal-container {
	width: 80%;
	margin: 0 auto;
}

/* ── Fil d'ariane ── */
.dal-7r__fil {
	padding: 18px 0 8px;
	font-size: 13px;
	color: #888;
}

.dal-7r__fil .dal-container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.dal-7r__fil a {
	color: #888;
	text-decoration: none;
}

.dal-7r__fil a:hover {
	color: var(--dal-red, #DC0D15);
}

.dal-7r__fil span {
	margin: 0 6px;
}

/* ── Bannière : bandeau + panneau rouge centré (blend séparé) ── */
.dal-7r__hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	min-height: 300px;
	margin: 8px auto 0;
	background: #cfcfcf;
	border-radius: 24px;
}

.dal-7r__hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	display: block;
}

.dal-7r__hero-panel {
	position: relative;
	color: #fff;
	text-align: center;
	padding: 24px 64px;
	border-radius: 100px;
	max-width: 90%;
}

.dal-7r__hero-panel-bg {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: var(--dal-red, #DC0D15);
	mix-blend-mode: hard-light;
}

.dal-7r__hero-panel-texte {
	position: relative;
	z-index: 1;
}

.dal-7r__hero-titre {
	margin: 0;
	font-size: clamp(1.6rem, 2.6vw, 44px);
	font-weight: 800;
}

.dal-7r__hero-sous {
	margin: 6px 0 0;
	font-size: clamp(1rem, 1.4vw, 17px);
	font-weight: 500;
}

/* ── Blocs alternés ── */
.dal-container.dal-7r__bloc {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 90px);
	align-items: center;
	margin-top: clamp(56px, 7vw, 90px);
}

/* Par défaut (DOM) : image à gauche, texte à droite.
   Modifieur : image à droite (texte à gauche). */
.dal-7r__bloc--img-right .dal-7r__col-visuel {
	order: 1;
}

/* ── Visuel + badge numéro ── */
.dal-7r__media {
	position: relative;
}

.dal-7r__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 24px;
	display: block;
	background: #cfcfcf;
}

/* Badge "N° X" en haut, débordant vers l'extérieur.
   Par défaut (image à gauche) : badge en haut à gauche. */
.dal-7r__num {
	position: absolute;
	top: 26px;
	left: -18px;
	background: var(--dal-red, #DC0D15);
	color: #fff;
	font-weight: 800;
	font-size: clamp(1.3rem, 1.8vw, 26px);
	line-height: 1;
	padding: 12px 26px;
	border-radius: 12px;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Image à droite : badge en haut à droite */
.dal-7r__bloc--img-right .dal-7r__num {
	left: auto;
	right: -18px;
}

/* ── Texte ── */
.dal-7r__titre {
	font-size: clamp(1.6rem, 2.2vw, 32px);
	font-weight: 800;
	color: #000;
	margin: 0 0 20px;
}

.dal-7r__texte {
	font-size: 15px;
	line-height: 1.6;
	color: #000;
	font-weight: 400;
}

.dal-7r__texte p {
	margin: 0 0 14px;
}

/* Liste à puces rouges */
.dal-7r__liste {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
}

.dal-7r__liste li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 8px;
}

.dal-7r__liste li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--dal-red, #DC0D15);
}

/* ── Boutons ── */
.dal-7r__boutons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

.dal-7r__btn {
	padding: 10px 34px;
	font-size: 15px;
	font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1440px) {

	.dal-7r .dal-container,
	.dal-7r__hero {
		width: 90%;
	}
}

@media (max-width: 900px) {

	/* Bannière : texte calé en bas, panneau titre sans arrondi (image inchangée) */
	.dal-7r__hero {
		align-items: flex-end;
		overflow: hidden;
	}

	.dal-7r__hero-panel {
		margin-bottom: 18px;
		border-radius: 0;
	}

	/* Blocs : image d'abord, puis le texte (dans les deux sens) */
	.dal-container.dal-7r__bloc {
		grid-template-columns: 1fr;
	}

	.dal-7r__col-visuel,
	.dal-7r__bloc--img-right .dal-7r__col-visuel {
		order: -1;
	}
}

@media (max-width: 560px) {
	.dal-7r__btn {
		flex: 1 1 100%;
		text-align: center;
	}
}

/* Mobile : marge latérale 16px */
@media (max-width: 600px) {
	.dal-7r .dal-container {
		width: 100%;
		padding-left: max(16px, 4vw);
		padding-right: max(16px, 4vw);
		box-sizing: border-box;
	}
}
