@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&display=swap');
:root {
	--presse-noir: #414042;
	--presse-dore: #C5BA9B;
	--presse-beige: #FDF8F3;
	--presse-white: #FFFFFF;
	--presse-font-sans: "articulat-cf", 'Inter', 'Helvetica Neue', Arial, sans-serif;
	--presse-font-serif: 'Fraunces', 'Georgia', serif;
}
.presse-page {
	color: var(--presse-noir);
	font-family: var(--presse-font-sans);
	line-height: 1.6;
	overflow-x: hidden;
}
.presse-page *,
.presse-page *::before,
.presse-page *::after {
	box-sizing: border-box;
}
.presse-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
}
.presse-section-title {
	font-family: var(--presse-font-sans);
	font-size: 70px;
	font-weight: 600;
	line-height: 85px;
	margin: 0 0 16px;
	color: var(--presse-noir);
}
.presse-section-title em {
	font-family: var(--presse-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 70px;
}
.presse-section-title--center {
	text-align: center;
}
.presse-section-subtitle {
	font-size: 20px;
	color: var(--presse-noir);
	margin: 0 0 48px;
	line-height: 1.6;
}
.presse-section-subtitle--center {
	text-align: center;
}
.presse-hero {
	position: relative;
	min-height: 870px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: url('../img/hero-presse-c21-paris.jpg') center center / cover no-repeat;
	overflow: hidden;
}
.presse-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 100%);
	pointer-events: none;
}
.presse-hero__content {
	position: relative;
	z-index: 1;
	padding: 80px 24px;
	margin-top: -200px;
}
.presse-hero__title {
	font-family: var(--presse-font-sans);
	font-size: 110px;
	font-weight: 600;
	color: var(--presse-white);
	line-height: 1.05;
	margin: 0 0 20px;
}
.presse-hero__title em {
	font-family: var(--presse-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 130px;
}
.presse-hero__subtitle {
	font-family: var(--presse-font-sans);
	font-size: 20px;
	color: var(--presse-white);
	margin: 0;
	line-height: 1.55;
}
.presse-articles {
	padding: 80px 0;
	background-color: var(--presse-white);
}
.presse-articles .presse-section-title {
	margin-bottom: 14px;
}
.presse-articles .presse-section-subtitle {
	margin-bottom: 56px;
}
.presse-articles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.presse-articles__grid > li {
	list-style: none;
	display: flex;
}
.presse-articles__grid > li > .presse-card {
	width: 100%;
}
.presse-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background-color: var(--presse-white);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.presse-card:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}
.presse-card__img {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.presse-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.presse-card:hover .presse-card__img img {
	transform: scale(1.05);
}
.presse-card__body {
	padding: 22px 24px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.presse-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 14px;
}
.presse-card__media {
	font-family: var(--presse-font-sans);
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--presse-dore);
}
.presse-card__date {
	font-family: var(--presse-font-sans);
	font-size: 0.78rem;
	color: var(--presse-noir);
	white-space: nowrap;
	opacity: 0.5;
}
.presse-card__title {
	font-family: var(--presse-font-sans);
	font-size: 25px;
	font-weight: 700;
	color: var(--presse-noir);
	line-height: 1.35;
	margin: 0 0 22px;
	flex: 1;
}
.presse-card__link {
	font-family: var(--presse-font-sans);
	font-size: 18px;
	font-weight: 700;
	color: var(--presse-dore);
	letter-spacing: 0.02em;
	transition: color 0.3s ease;
}
.presse-card:hover .presse-card__link {
	color: var(--presse-noir);
}

@media screen and (max-width: 1079px) {
	.presse-hero {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 30px;
		height: fit-content;
		min-height: fit-content;
		max-height: none;
	}
	.presse-hero__content {
		margin-top: 0px;
		padding: 155px 24px;
	}
	.presse-section-title, .presse-section-title em {
		font-size: 2.2rem;
	}
	.presse-hero__title, .presse-hero__title em {
		font-size: 3.2rem;
	}
	.presse-articles__grid {
		gap: 24px;
		grid-template-columns: 1fr;
	}
	.presse-articles {
		padding: 40px 0;
	}
	.presse-articles .presse-section-title {
		line-height: initial;
	}
	.presse-card__img {
		aspect-ratio: inherit;
	}
	.presse-card__img img {
		height: 400px;
	}
}

@media screen and (max-width: 768px) {
	.presse-card__img {
		aspect-ratio: inherit;
	}
	.presse-card__img img {
		max-height: 400px;
	}
	.presse-container {
		padding: 0 24px;
	}
	.presse-section-title, .presse-section-title em {
		font-size: 1.9rem;
	}
	.presse-hero__title, .presse-hero__title em {
		font-size: 2.4rem;
	}
	.presse-hero__subtitle br {
		display: none;
	}
	.presse-articles {
		padding: 30px 0px 50px 0px;
	}
	.presse-articles .presse-section-subtitle {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 550px) {
	.presse-section-title, .presse-section-title em {
		font-size: 1.6rem;
	}
	.presse-section-subtitle, .presse-hero__subtitle, .presse-card__title {
		font-size: 20px;
	}
	.presse-hero__title, .presse-hero__title em {
		font-size: 2rem;
	}
}
