body{
    padding-top: 3rem;
}

.meta{
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-size: .9rem;
    font-family: sans-serif;
    color: #3c4656;
}

.article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(1);
}

.article-card:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); 

}

.blog-header{
    margin-bottom: 45px;
}

.text-adapt{
    font-size: clamp(28px, 2.5vw, 70px);
}

.title{
    text-decoration: underline;
}
.article-card img {
    object-fit: cover;
    width: 100%;
    height: 10rem; /* Hauteur spécifique pour toutes les cartes */
}

/* Limiter la hauteur du contenu */
.article-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.5;
}