@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 {
	--post-noir: #414042;
	--post-dore: #C5BA9B;
	--post-beige: #FDF8F3;
	--post-white: #FFFFFF;
	--post-font-sans: "articulat-cf", 'Inter', 'Helvetica Neue', Arial, sans-serif;
	--post-font-serif: 'Fraunces', 'Georgia', serif;
}
.post-page {
	color: var(--post-noir);
	font-family: var(--post-font-sans);
	line-height: 1.6;
	overflow-x: hidden;
}
.post-page *,
.post-page *::before,
.post-page *::after {
	box-sizing: border-box;
}
.post-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
}
.post-section-title {
	font-family: var(--post-font-sans);
	font-size: 70px;
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 16px;
	color: var(--post-noir);
}
.post-section-title em {
	font-family: var(--post-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 70px;
}
.post-btn {
	display: inline-block;
	font-family: var(--post-font-sans);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 28px;
	border: 1px solid var(--post-dore);
	background-color: var(--post-dore);
	color: var(--post-white);
	transition: all 0.3s ease;
	cursor: pointer;
}
.post-btn:hover {
	background-color: #b0a688;
	border-color: #b0a688;
	color: var(--post-white);
}
.post-btn--primary {
	background-color: var(--post-dore);
	color: var(--post-white);
	border: 1px solid var(--post-dore);
}
.post-btn--primary:hover {
	background-color: #b0a688;
}
.post-hero {
	position: relative;
	min-height: 750px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.post-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.25) 100%);
	pointer-events: none;
}
.post-hero__content {
	position: relative;
	z-index: 1;
	padding: 140px 24px 60px;
	max-width: 1300px;
	margin-top: -160px;
}
.post-hero__title {
	font-family: var(--post-font-sans);
	font-size: 80px;
	font-weight: 600;
	color: var(--post-white);
	line-height: 1.1;
	margin: 0;
}
.post-banner {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 28px 40px;
	text-align: center;
	font-family: var(--post-font-sans);
	color: white;
	background-color: var(--post-noir);
}
.post-banner p {
	max-width: 1300px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.6;
	width: 70%;
}
.post-content {
	background-color: var(--post-white);
	padding: 80px 0;
}
.post-content__layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 60px;
	align-items: start;
}
.post-sommaire {
	position: sticky;
	top: 100px;
}
.post-sommaire__title {
	font-family: var(--post-font-sans);
	font-weight: 700;
	font-size: 30px;
	color: var(--post-noir);
	margin: 0 0 24px;
}
.post-sommaire__list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(65, 64, 66, 0.15);
}
.post-sommaire__list li {
	border-bottom: 1px solid rgba(65, 64, 66, 0.15);
}
.post-sommaire__list a {
	display: block;
	padding: 16px 0;
	font-family: var(--post-font-sans);
	font-size: 16px;
	color: var(--post-noir);
	text-decoration: none;
	line-height: 1.45;
	transition: color 0.3s ease;
}
.post-sommaire__list a:hover {
	color: var(--post-dore);
}
.post-body {
	max-width: 780px;
	margin: 0 auto;
}
.post-body__text {
	font-size: 16px;
	color: var(--post-noir);
	line-height: 1.7;
}
.post-body__text h2 {
	font-family: var(--post-font-sans);
	font-size: 30px;
	font-weight: 600;
	color: var(--post-noir);
	line-height: 1.2;
	margin: 48px 0 20px;
	scroll-margin-top: 100px;
}
.post-body__text h2 em {
	font-family: var(--post-font-serif);
	font-style: italic;
	font-weight: 400;
}
.post-body__text h3 {
	font-family: var(--post-font-sans);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--post-noir);
	line-height: 1.3;
	margin: 32px 0 14px;
}
.post-body__text p {
	margin: 0 0 14px;
}
.post-body__text strong {
	font-weight: 700;
}
.post-body__text em {
	font-style: italic;
}
.post-body__text ul,
.post-body__text ol {
	margin: 0 0 18px;
	padding-left: 22px;
}
.post-body__text li {
	margin-bottom: 6px;
}
.post-body__text a {
	color: var(--post-dore);
	text-decoration: underline;
}
.post-body__text a:hover {
	color: var(--post-noir);
}
.post-estim {
	background-color: var(--post-beige);
	overflow: hidden;
}
.post-estim__layout {
	display: flex;
	align-items: center;
	gap: 0;
	max-width: 1300px;
	margin: 0 auto;
}
.post-estim__text {
	flex: 1;
	padding: 40px;
}
.post-estim__text h2 {
	line-height: 1;
}
.post-estim__text p {
	font-size: 20px;
	margin: 0 0 28px;
}
.post-estim__image {
	flex: 0 0 50%;
	padding: 40px;
}
.post-estim__image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.related-posts__title {
	font-family: var(--rp-font-sans);
	font-size: 70px;
	font-weight: 600;
	line-height: 1;
	margin: 0 0 16px;
	color: var(--rp-noir);
}
.related-posts__title em {
	font-family: var(--rp-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 70px;
}

@media screen and (max-width: 1079px) {
	.post-hero {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 30px;
		height: fit-content;
		min-height: fit-content;
		max-height: none;
	}
	.post-banner {
		position: static;
	}
	.post-banner p {
		width: 100%;
	}
	.post-hero__content {
		padding: 120px 20px 40px;
		margin-top: 0px;
	}
	.post-hero__title, .post-hero__title em {
		font-size: 3.2rem;
	}
	.post-content__layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.post-estim__layout {
		flex-direction: column;
	}
	.post-estim__text {
		flex: 1;
		padding: 50px 0 0 0;
		text-align: center;
	}
	.post-estim__image {
		flex: 100%;
		padding: 40px;
		width: 100%;
	}
	.post-estim__image img {
		width: 100%;
		height: 400px;
	}
	.post-section-title, .post-section-title em, .related-posts__title, .related-posts__title em {
		font-size: 2.2rem;
	}
	.post-content {
		padding: 50px 0;
	}
	.post-body__text h2 {
		font-size: 1.9rem;
	}
}

@media screen and (max-width: 768px) {
	.post-container {
		padding: 0 24px;
	}
	.post-hero__title, .post-hero__title em {
		font-size: 2.4rem;
	}
	.post-banner {
		padding: 24px;
	}
	.post-banner p, .post-estim__text p {
		font-size: 20px;
	}
	.post-body__text h2 {
		font-size: 1.6rem;
		margin: 30px 0 20px;
	}
	.post-section-title, .post-section-title em {
		font-size: 2rem;
	}
}

@media screen and (max-width: 550px) {
	.post-hero__title, .post-hero__title em {
		font-size: 2rem;
		padding: 0 16px;
	}
	.post-section-title, .post-section-title em {
		font-size: 1.6rem;
	}
	.post-estim__layout {
		flex-direction: column;
	}
	.post-estim__text {
		padding: 48px 24px;
		text-align: center;
	}
	.post-estim__image {
		width: 100%;
		padding: 0 24px 48px;
	}
}
