@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 {
	--bcc-noir: #414042;
	--bcc-dore: #C5BA9B;
	--bcc-beige: #FDF8F3;
	--bcc-white: #FFFFFF;
	--bcc-grey: #716F6F;
	--bcc-font-sans: "articulat-cf", 'Inter', 'Helvetica Neue', Arial, sans-serif;
	--bcc-font-serif: 'Fraunces', 'Georgia', serif;
}
.bcc-section {
	padding: 80px 0 70px;
	background: var(--bcc-white);
	text-align: center;
	font-family: var(--bcc-font-sans);
	color: var(--bcc-noir);
}
.bcc-section *, .bcc-section *::before, .bcc-section *::after {
	box-sizing: border-box;
}
.bcc-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
}
.bcc-title {
	font-family: var(--bcc-font-sans);
	font-size: 70px;
	font-weight: 600;
	line-height: 1.1;
	margin: 0 0 40px;
	color: var(--bcc-noir);
}
.bcc-title em {
	font-family: var(--bcc-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 70px;
}
.bcc-subtitle {
	font-size: 20px;
	color: var(--bcc-noir);
	margin: 0 0 40px;
	line-height: 1.55;
}
.bcc-grid__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px 32px;
	text-align: left;
}
.bcc-grid__list--single,
.bcc-grid__list--double {
	justify-content: center;
}
.bcc-grid__list--single {
	grid-template-columns: calc((100% - 2 * 32px) / 3);
}
.bcc-grid__list--double {
	grid-template-columns: repeat(2, calc((100% - 2 * 32px) / 3));
}
.bcc-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
	background-color: var(--bcc-white);
	border: 1px solid var(--bcc-dore);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bcc-card__link:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.bcc-card__img {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--bcc-beige);
}
.bcc-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.bcc-card__link:hover .bcc-card__img img {
	transform: scale(1.04);
}
.bcc-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px 22px 24px;
	flex: 1;
}
.bcc-card__title {
	font-family: var(--bcc-font-sans);
	font-size: 20px;
	font-weight: 700;
	color: var(--bcc-noir);
	margin: 0;
	line-height: 1.3;
}
.bcc-card__meta {
	list-style: none;
	padding: 0;
	margin: 6px 0 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.bcc-card__meta li {
	font-size: 16px;
	color: var(--bcc-noir);
	line-height: 1.45;
}
.bcc-card__honoraires {
	color: var(--bcc-grey);
	font-size: 13px;
}
.bcc-card__ref {
	font-size: 13px !important;
	opacity: 0.5 !important;
}
.bcc-card__cta {
	margin-top: 10px;
	font-family: var(--bcc-font-sans);
	font-size: 18px;
	font-weight: 700;
	color: var(--bcc-dore);
	text-underline-offset: 3px;
	transition: color 0.3s ease;
	align-self: flex-start;
}
.bcc-card__link:hover .bcc-card__cta {
	color: var(--bcc-noir);
}
.bcc-cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}
.bcc-cta, .bcc-cta:visited {
	display: inline-block;
	font-family: var(--bcc-font-sans);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 28px;
	border: 1px solid var(--bcc-dore);
	background-color: var(--bcc-dore);
	color: var(--bcc-white);
	transition: all 0.3s ease;
	cursor: pointer;
}
.bcc-cta:hover {
	background-color: #b0a688;
	border-color: #b0a688;
	color: var(--bcc-white);
}

@media (max-width: 1079px) {
	.bcc-title, .bcc-title em {
		font-size: 2.2rem;
	}
	.bcc-section {
		padding: 40px 0 40px;
	}
	.bcc-card__img {
		height: 400px;
		aspect-ratio: inherit;
	}
	.bcc-grid__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 22px;
	}
	.bcc-grid__list--single {
		grid-template-columns: calc((100% - 22px) / 2);
	}
	.bcc-grid__list--double {
		grid-template-columns: repeat(2, calc((100% - 22px) / 2));
	}
}

@media (max-width: 768px) {
	.bcc-grid__list,
	.bcc-grid__list--single,
	.bcc-grid__list--double {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 550px) {
	.bcc-container {
		padding: 0 24px;
	}
	.bcc-section {
		padding: 24px 0;
	}
	.bcc-title, .bcc-title em {
		font-size: 1.6rem;
	}
	.bcc-title {
		margin: 0 0 24px;
	}
}
