.liste-librairies {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.librairie-item {
    width: 45%; /* 📌 2 Librairies par ligne */
	min-width: 350px;
    background: #fff;
    background: #FBF7F3;
    overflow: hidden;
    text-align: center;
    padding: 15px;
}

.librairie-item h2 {
    margin-bottom: 10px;
	font-size: 25px;
	font-weight: 400;
	margin: 10px 0;
}

.librairie-thumbnail img {
    width: auto;
	max-height: 250px;
}

.librairie-adresse {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

/* 📌 Responsive - 2 colonnes sur mobile */
@media (max-width: 768px) {
    .librairie-item {
        width: 43%; /* Ajustement pour bien tenir en 2 colonnes */
        min-width: unset; /* Supprime la min-width */
    }
}

/* 📌 Full-width en dessous de 500px */
@media (max-width: 500px) {
    .librairie-item {
        width: 100%; /* 1 colonne sur très petits écrans */
    }
}


/* ---------------- */
/* Librairie */
/* ---------------- */
.librairie-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 📌 Conteneur principal */
.librairie-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
	padding: 20px 40px;
	background: #FBF7F3;
}

/* 📌 Colonne gauche (Infos + Google Maps) */
.librairie-info {
    width: 50%;
   
/*     padding: 20px; */
}

.librairie-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.librairie-info strong {
    font-weight: bold;
    color: #333;
}

/* 📌 Affichage de l'adresse */
.librairie-info .adresse {
    font-style: italic;
    color: #666;
}

/* 📌 Affichage du site internet */
.librairie-info a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.librairie-info a:hover {
    text-decoration: underline;
}

/* 📌 Google Maps */
.librairie-map iframe {
    width: 100%;
    height: 250px;
   
}

/* 📌 Colonne droite (Image) */
.librairie-image {
    width: 45%;
    text-align: center;
}

.librairie-image img {
    width: 100%;
    height: auto;
}