section .section-tit {
    margin-bottom: 20px;
}
section #posts .post {
    padding: 20px;
    border-top: 1px solid #aaaaaa;
    font-size: 11px;
}
section #posts .post .post-img {
    border-radius: 50%;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.3);   
    overflow: hidden;
}
section #posts .post .post-titulo {
    margin-bottom: 5px;
    font-size: 15px;
}
section #posts .post .post-texto {
    line-height: 1.2;
}
section #posts .post .post-texto img{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
section #posts .post .post-fecha {
    padding-right: 5px;
    color: #247cba;
}
section #posts .post .post-categoria {
    color: #ff7f00;
    text-transform: uppercase;
}
section #posts .post .post-categoria:hover {
    color: black;
}
section #posts .post .btn {
    font-size: 10px;
    text-transform: uppercase;
}
section #posts .post .post-visitas {
    margin-top: 10px;
    color: #247cba;
    font-size: 13px;
    text-align: center;
}
@media (min-width: 560px) {
    section #posts .post {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }
    section #posts .post .post-cont {
        margin: 0 15px;
        -webkit-flex-grow: 1;
        flex-grow: 1;
    }
}
@media (max-width: 559px) {
    section #posts .post > * + * {
        margin-top: 15px;
    }
    section #posts .post img {
        margin: 0 auto;
        display: block;
    }
}