#introBlog ul li svg {
    width: 25px;
    color: gray;
}

#listeArticles .article {
    margin-bottom: 2rem;
    background-color: #fff;
    border: 1px solid transparent;
    border-color: #e0e0e0;
    border-radius: 12px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

#listeArticles .article:hover {
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15);
    transform: translateY(-10px);
}

#listeArticles .article .image {
    width: 100%;
    border-radius: 12px;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0px 0px;
}

#listeArticles .article .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0px 0px;
    transition: transform .3s ease-in-out;
}


#listeArticles .article:hover .image img {
    transform: scale(1.1)
}


#listeArticles .article .info {
    padding: 12px 15px 25px 15px;
}

#listeArticles .article .info h6 {
    font-size: 1.10rem;
    font-weight: 500;
    margin-bottom: 0;
}


#listeArticles .article .info p {
    margin: .5rem 0 1rem 0;
    font-weight: 300;
}


#listeArticles .linkAndViews {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#listeArticles .article .info a {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    background: #3e7035d1;
    width: fit-content;
    padding: 6px 18px 7px 18px;
    border-radius: 4px;
    transition: all .3s ease-in-out;
}

#listeArticles .article .info a:hover {
    border-radius: 24px;
    transform: translateY(-2px);
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15);
}



#listeArticles .article .info span {
    font-size: 1rem;
    color: #fff;
}

#listeArticles .article .info svg {
    width: 20px;
    color: #fff;
}


#listeArticles .article .views {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    background: #adb5bd;
    width: fit-content;
    padding: 5px 12px 6px 12px;
    border-radius: 20px;
}

#listeArticles .article .views span {
    font-size: 1rem;
    color: #fff;
}

#listeArticles .article .views svg {
    width: 1.5rem;
    color: #fff;
}