/* ESTILOS DEL TEMPLATE CON LOS DATOS PEDIDOS AL BLOG */


#blog {
    display: flex;
    flex-direction: row;
   
    
}


#blog a {
    color: white;
}



#blog #article_informes_semanales a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

#blog #article_informes_semanales a:hover {
    opacity: 0.75;
}

#article_informes_semanales img {
    max-width: 99%;
    border-radius: 5px;
    

}


/* #blog hr {
    border: thin solid white;
    margin: 3rem auto;
    width: 20%;
} */

#post {
    display: flex;
    flex-direction: row;


    
    /* flex-direction: column; para Responsive */
}

#blog .post {
     display: block;
    margin: .5rem auto;
    padding: 1rem;
    border-radius: .5rem;
    max-width: 25%;
    text-align: center;
    background-color: rgb(42, 40, 41);
    font-size: 15px;
    min-height: 500px;
    max-height: 90%;
}

.post-author img {
    border-radius: 50%;
}

.post-date {
    margin: 1rem auto;
    display: block;

}


.post-excerpt {
    text-align: center;
    margin: 0px 30px;
}

.loader{
    display: none;
    margin: 0px auto;
    background-color: rgba(5, 58, 128, 0.5);
    box-shadow: 0px 0px 20px #333;
}