.long-read-footer {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
margin-top: 50px;
max-width: 1250px;
margin-left: auto;
margin-right: auto;
padding: 0px 20px;
border: 0px solid rgb(204, 204, 204);
}
/* LE CORRECTIF EST ICI */
.long-read-txt-titre-footer {
    grid-column: 1 / -1; /* Indique de commencer à la colonne 1 et finir à la dernière */
    text-align: center;
    margin-bottom: 40px;
}
.long-read-txt-titre-footer h2 {
    border-bottom: 0px;
    padding-bottom: 0px;
}

/* Le reste de votre code reste inchangé */
.lr-item {
display: flex;
align-items: center;
gap: 20px;
text-decoration: none;
color: rgb(51, 51, 51);
padding: 0px;
background-color: rgb(241, 241, 241);
border-radius: 3px;
transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
vertical-align: middle;
}

.lr-item:hover {
  background-color: rgb(233, 233, 233);
  /* Si vous ajoutez un "transform: translateY(-3px);" par exemple, il s'animera en douceur */
  transform: translateY(-3px); 
}

/* Taille fixe du thumb à gauche */
.lr-thumb {
width: 250px;
height: 200px;
flex-shrink: 0;
}

.lr-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
background-color: #fff;
}
.lr-content {
margin-top: 0px;
padding-right: 20px;
}
.lr-content h3 {
margin: 0 0 5px 0;
font-size: 15px;
line-height: 1.4;
font-weight: 600;
border: 0;
padding: 0;
}

/* Au survol, on étend la taille du fond */
.lr-item:hover .lr-content h3 {

}
.lr-content p {
margin: 0;
color: #666;
font-size: 15px;
    line-height: 1.4 ;
}

/* Responsive : Passage en 1 colonne sur mobile */
@media (max-width: 768px) {
.long-read-footer {
grid-template-columns: 1fr;
padding-right: 10px;
padding-left: 10px;
}
.long-read-footer {
gap: 10px;
}
}

.footer {
margin-top: 20px;
float: left;
width: 100%;
margin-bottom: 40px;
border-top: 1px solid #eee;
padding-top: 40px;
}
.footer p {
font-size: 14px;
margin-bottom: 40px;
padding-left: 20px;
padding-right: 20px;
letter-spacing: 1px;
text-align: center;
line-height: 22px;
margin-top: 20px;
color: #111;
}
.footer p a {
border-bottom: 1px solid #eee;
border-bottom: 0;
text-decoration: none;
color: #111;
}