/* ___ Blog _________________________________________________*/
.header {
    width: 80%;
}

.sectionCards a {
    display: flex;
}

.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card .blogMore {
    margin-top: auto;
}

article {
    font-size: var(--text-md);
    line-height: 1.7rem;
    width: 90vw;
    display: block;
    margin: auto;
    text-align: justify;
    padding-bottom: 5vh;
}

article p {
    padding-bottom: 10px;
}

article ul {
    padding-left: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
}

article table {
    margin: auto;
    width: 100%;
    border-collapse: collapse;    
    margin-bottom: 20px;
    margin-top: 20px;
    table-layout: fixed;
    font-size: var(--text-sm);
}

 th, td {
    padding-left: 30px!important;
    padding: 10px;
    width: 33%;
    text-align: left;
    background-color: var(--glow);
}

th {
    border-bottom: 1px solid var(--glow-plus);
    text-align: center;
}

tfoot {
    border-top: 1px solid var(--glow-plus);
}

.retrait {
    padding-left: 30px;
}

hr {
    width: 50%;
    margin: auto;
    background-color: var(--glow-plus);
}

.blogMore {
    padding: 10px;
    margin-top: 30px;
    background: var(--glow-plus);
    border-radius: var(--radius);
    text-align: center;  
    transition: all 0.1s ease;   
}

.blogMore:hover {
    transform: translate(2px, 2px);
}

article h1, article h2, article h3 {
    padding-bottom: 20px;
    padding-top: 20px;
}

article .question {
    font-style: italic;    
}

article .question::before {
    content: "";
}

article .reponse::before {
    content: "✔️ ";
    
}

ul .num {
    list-style-type:decimal;
}

ul {
    padding-left: var(--text-lg)!important;
}