@font-face {
	font-family: 'Laviossa';
	src: url('Assets/Fonts/Laviossa-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Outfit';
	src: url('Assets/Fonts/Outfit-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Outfit';
	src: url('Assets/Fonts/Outfit-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

body {
	background: #ffefd7;
	margin: 0;
	font-family: 'Outfit', Arial, sans-serif;
	color: #475747;
}

/* Header hérité de style.css : pas de styles supplémentaires ici */

.actualite-bandeau {
	width: 100%;
	background: #475747;
	padding: 28px 0;
	overflow: hidden;
	position: relative;
	margin-bottom: 30px;
	border-radius: 28px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.actualite-bandeau-content {
	display: flex;
	width: fit-content;
	animation: scroll-bandeau 30s linear infinite;
	white-space: nowrap;
}

.actualite-bandeau-text {
	font-family: 'Outfit', Arial, sans-serif;
	color: #ffefd7;
	font-size: 1.1rem;
	padding: 0 30px;
	display: inline-block;
}

@keyframes scroll-bandeau {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.actualite-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 40px 20px;
}

.actualite-title {
	font-family: 'Laviossa', serif;
	color: #475747;
	font-size: 3rem;
	text-align: center;
	margin: 16px 0 40px 0;
	letter-spacing: 2px;
	font-weight: bold;
}

.actualite-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin: 0 auto;
}

.actualite-post {
	background: #475747;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 280px;
}

.actualite-post:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.actualite-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.actualite-content {
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
	justify-content: center;
	flex: 1;
}

.actualite-post-title {
	font-family: 'Laviossa', serif;
	color: #ffefd7;
	font-size: 1.5rem;
	margin: 0;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}

.actualite-text {
	font-family: 'Outfit', Arial, sans-serif;
	color: #ffefd7;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
	text-align: center;
}

@media (max-width: 900px) {
	.actualite-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.actualite-title {
		font-size: 2.1rem;
	}
}

/* Responsive */
@media (max-width: 900px) {
	.galerie-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: repeat(3, 1fr);
		height: auto;
		gap: 15px;
	}

	.large-vertical {
		grid-row: span 1;
		grid-column: span 2;
		height: 200px;
	}

	.medium-horizontal {
		height: 150px;
	}
}

@media (max-width: 600px) {
	.galerie-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, 1fr);
	}

	.large-vertical,
	.medium-horizontal {
		grid-column: span 1;
		grid-row: span 1;
		height: 200px;
	}
}