/* === Page Freins === */
.freins-page {
	min-height: calc(100vh - 240px);
	font-family: 'Segoe UI', Roboto, sans-serif;
	color: #2c2c2c;
	background: #ffffff;
	line-height: 1.7;
}

/* === Hero === */
.hero-freins {
	text-align: center;
	padding: 60px 20px;
	background: linear-gradient(135deg, #111, #333);
	color: #fff;
}

.hero-freins h1 {
	font-size: 38px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.hero-freins p {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	color: #ddd;
}

/* === Blocs Freins === */
.freins-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	width: 85%;
	margin: 60px auto;
}

.freins-block.reverse {
	flex-direction: row-reverse;
}

.freins-text {
	flex: 1 1 400px;
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	transition: transform 0.3s ease;
}

.freins-text:hover {
	transform: translateY(-5px);
}

.freins-text h2 {
	font-size: 26px;
	color: #c62828;
	margin-bottom: 15px;
}

.freins-text p {
	font-size: 17px;
	color: #444;
	margin-bottom: 12px;
}

.freins-img {
	flex: 1 1 300px;
	max-width: 400px;
}

.freins-img img {
	width: 100%;
	border-radius: 12px;
	aspect-ratio: 4/3;
	object-fit: cover;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.freins-img img:hover {
	transform: scale(1.03);
}

/* === Responsive === */
@media (max-width: 992px) {
	.freins-block,
	.freins-block.reverse {
		flex-direction: column;
		text-align: center;
	}
}