/* MAIN BLOG*/

html {
    color: #30475E;
}

/* TITULO BLOG*/

.container-titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3em;
}

.titulo-blog p {
    font-size: 2em;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

/* CONTENEDORES POSTS*/

.container-box-post {
    padding-bottom: 3em;
}

.container-post {
    display: flex;
    justify-content: left;
    flex-direction: column;
    border-radius: 0.7em;
    min-height: 40em;
    max-height: 40em;
    box-shadow: #30475E 0.3em 0.3em 2em 0.02em;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.container-post:hover {
    transform: scale(1.05);
}

.container-post p {
    margin: 0;
}

.container-img-post {
    padding-bottom: 1em;
}

.container-img-post img {
    width: 100%;
    min-height: 15em;
    max-height: 15em;
    border-radius: 0.7em 0.7em 0 0;
}

.container-text-post {
    padding: 0.5em 1.3em;
}

.title-post {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.2em;
    margin: 0;
}

.fecha-post {
    padding-top: 1em;
    font-weight: 100;
}

.container-tag-post {
    padding-top: 0.8em;
}

.tag-post {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5em 0;
}

.tag-post i {
    padding-right: 0.6em;
    font-size: 1.1em;
}

.tag-post p {
    font-size: 1.1em;
    font-weight: 500;
    padding-bottom: 0.1em;
}

.description-post {
    padding-top: 1em;
    display: -webkit-box; 
    -webkit-line-clamp: 6; 
    -webkit-box-orient: vertical; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.description-post p {
    letter-spacing: 0.04em;
    line-height: 1.7em;
}

.masInfo-post {
    padding: 1em 0;
}

.masInfo-post a {
    color: #FF7000;
}

.masInfo-post a:hover {
    color: #30475E;
}




