/**-------------- CSS Paginas Articulos ---------------**/
body{
    background-color: #f8f8f8;;
}

#blog{
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#blog .posts {
    width: 62%;
    background-color: #fff;
}

#blog .posts .post-item{
    margin: 15px 0;
    padding: 7px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#blog .posts .post-item .image-post{
    width: 42%;
    height: 250px;
}

#blog .posts .post-item .image-post img{
    width: 100%;
}

#blog .posts .post-item .description-post{
    width: 56%;
}

#blog .posts .post-item .description-post h1{
    width: 100%;
    font-size: 1.5em;
    font-weight: bold;
    transition: .25s;
}

#blog .posts .post-item .description-post h1:hover{
    color: #2E9AF8;
    transition: .25s;
}

#blog .posts .post-item .description-post p{
    width: 100%;
    font-size: 17px;
    color: #000;
}

#blog .posts .post-item .description-post .contenedor-boton{
    text-align: right;
}

#blog .posts .post-item .description-post .boton{
    padding: .5rem 1rem;
    background: transparent;
    color: #2E9AF8;
    border: 1px solid #2E9AF8;
    border-radius: 0px;
    text-decoration: none;
    transition: .25s;
}

#blog .posts .post-item .description-post .boton:hover{
    color: white;
    background: #2E9AF8;
    transition: .25s;
}   

#blog .sidebar{
    width: 30%;
}

#blog .sidebar .search-box{
    padding: 25px 0px;
    padding: 5px 10px;
    background-color: #fff;
}

#blog .sidebar .text-input{
    padding: .7rem 1rem;
    display: block;
    width: 100%;
    border-radius: 5px;
    outline: none;
    color: #444;
    line-height: 1.5rem;
    border: 1px solid #e0e0e0;
    font-size: 1.2rem;
}

#blog .titulos-seccion-blog{
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0px;
}


#blog .sidebar .posts-links{
    margin-top: 35px;
    padding: 5px 10px;
    width: 100%;
    height: 350px;
    background-color: #fff;
}

#blog .sidebar .posts-links ul a{
    display: block;
    padding: 15px 0px 15px 0px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
}

#blog .sidebar .posts-links ul a:hover{
    padding-left: 10px;
    transition: all 0.3s;
}

@media (max-width:992px){
    #blog .posts{
        width: 100%;
    }

    #blog .sidebar{
        margin-top: 50px;
        width: 100%;
    }
}

@media (max-width:630px){
    #blog .posts .post-item .image-post{
        width: 100%;
        padding: 15px 10px;
    }

    #blog .posts .post-item .image-post img{
        width:100%;
        height: 100%;
    }

    #blog .posts .post-item .description-post{
        width: 100%;
    }

    #blog .posts .post-item .description-post .boton{
        display: block;
        text-align: center;
    }
}