.galerie {
	padding: 10px 10px;
}
.galerie img {
	max-height: 300px;
	object-fit: cover;
	object-position: center;
	min-width: auto;
}
.title {
	color: var(--bs-primary);
	font-family: "TrajanPro";
	font-weight: 900;
	font-size: 2rem;
}
.main .card {
	/* border-radius: 0px !important; */
	border: white solid 2px;
	/* max-height: 480px; */ /* CONFLIT - empêche les cards de s'adapter */
	min-width: 268px;
	position: relative;
	overflow: hidden;
}
.shadow-lg {
	background-color: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5) !important;
}
.main .card-img-top {
	/* border-radius: 0px !important; */
}
.main .card img {
	width: 100%;
	/* height: 100%; */ /* CONFLIT - écrase notre height: 160px */
	/* max-height: 177px; */ /* CONFLIT - écrase notre height: 160px */
	object-fit: cover;
	filter: brightness(100%);
	transition: filter 0.6s ease;
}
.main .card:hover img {
	filter: brightness(40%);
}

.main .card::before {
	content: '\2192'; /* Code de flèche dans Unicode */
	font-size: 2em;
	color: #fff; /* Couleur de la flèche (blanc) */
	position: absolute;
	top: 18%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2; /* Assure que la flèche est au-dessus de l'image */
	opacity: 0; /* La flèche est initialement invisible */
	transition: opacity 0.6s ease;
}

.main .card:hover::before {
	opacity: 1; /* La flèche devient visible au survol */
}

.main .card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* Assure que le lien est au-dessus de la flèche */
    opacity: 0; /* Le lien est initialement invisible */
    transition: opacity 0.6s ease;
}

.main .card:hover .card-link {
    opacity: 1; /* Le lien devient visible au survol */
}

.main .card-title {
	/* color: #303133; */
	text-decoration: none;
	font-family: "TrajanPro";
	font-weight: 900;
	margin: 10px 0 5px;
	font-size: 1.2em;
	text-transform: uppercase;
}
.main .card-text {
	font-size: 14px;
	font-family: "HelveticaNeue";
	font-weight: 400;
	margin-bottom: 0;
}
.suite {
	color: var(--bs-primary);
	font-size: 12px;
	font-weight: 500;
	font-family: "HelveticaNeue";
}

.text-gris {
	/* color: #7a7a7a; */
	font-family: "HelveticaNeue";
	font-size: 10pt;
}
.text-gris div {
	padding-bottom: 1rem!important;
}
.text-gris h2 {
	padding-bottom: 1rem!important;
	/* color: #54595f; */
	font-family: "HelveticaNeue";
	font-weight: 900;
	font-size: 18px;
}
.fond-blanc {
	background-color: white;
}

/* .card-body {
	min-height: 480px;
} */ /* CONFLIT MAJEUR - force une hauteur énorme sur le contenu */

/* .container.container-galerie.pb-1.pt-5 .col-lg-4 {
	width: 25%;
} */ /* CONFLIT - écrase Bootstrap col-lg-4 (33.33%) */

.card-body p {
	font-size: 14px;
	font-family: "HelveticaNeue";
	font-weight: 400;
	margin-bottom: 0;
}

.contact-presse {
	padding: 20px;
}

.contact-presse h2 {
	font-size: 18px;
	font-family: "TrajanPro";
	font-weight: 900;
	/* color: #54595f; */
	margin-bottom: 20px;
}

.contact-presse div {
	font-family: "HelveticaNeue";
	font-size: 13.33px;
	font-weight: 400;
	color: rgb(122, 122, 122);
	line-height: 24.79px;
}

h2.card-title {
	text-transform: none;
	font-family: "TrajanPro";
	font-weight: 700;
	font-size: 18px;
}

h2:hover {
	color: var(--bs-secondary);
	transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1220px) {
	/* .container.container-galerie.pb-1.pt-5 .col-lg-4 {
		width: 33%;
	} */ /* CONFLIT - laissons Bootstrap gérer */
}
@media screen and (max-width: 990px) {
	.galerie img {
		max-height: 190px;
	}
	.galerie {
		padding: 10px 25px;
	}

	/* .container.container-galerie.pb-1.pt-5 .col-lg-4 {
		width: 50%;
	} */ /* CONFLIT - laissons Bootstrap gérer avec col-md-6 */
}

@media screen and (max-width: 768px) {

	footer.pt-5 {
		padding-top: 0 !important;
	}

	.container.container-links {
		margin-left: auto;
		margin-right: auto;
		padding-left: 20px;
		padding-right: 20px;
	}

	h1.title-default.text-center {
		margin-top: 160px !important;
		font-size: 35px;
	}

	.col-12.col-lg-4.col-md-6.galerie {
		width: 50%;
		padding: 10px 10px;
	}
}

@media screen and (max-width: 660px) {
	/* .container.container-galerie.pb-1.pt-5 .col-lg-4 {
		width: 100%;
	} */ /* CONFLIT - Bootstrap gère déjà avec col-12 */
}

@media screen and (max-width: 500px) {
	.col-12.col-lg-4.col-md-6.galerie {
		width: 100%;
		padding: 10px 10px;
	}
}