 
   /*
----------------
slider superior
----------------
*/


main * {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

main > section {
    margin: .0em auto;
    max-width: 50rem;
    width: 100%;
    border: none;
}

    hr {
        color: #b5b5b5;
        opacity: 0.3;
    }

    .imagenpost {
        display: flex;
        position: relative;
        overflow: hidden;
        flex-grow: 1;
        width: 100%;
        min-height: 13em;
        max-height: 21em;
        object-fit:cover;
        object-position: center;
        align-items: center;
        margin-bottom: 1em;
    }

    .imagenpost img {
        object-fit:cover;
        min-height: 13em;
    }


    main section ul {
        padding: .8em 0 .8em 2em;
    }

    main section li {
        list-style:disc;
    }

    main section h1 {
        text-align: center;
        padding-top: .2em;
        border-bottom: 8px double #f74b4b;
        border-top: 6px double #f74b4b;
        margin-bottom: 1em;
        background: #fcfcfc;
        margin-top: .1em;
    }

    main section h2 {
        text-align: left;
        padding-top: .1em;
        margin-bottom: 1em;
        font-size: 1.2em;
        font-weight: normal;
        font-family: 'PT Serif', serif;
        color: #262626;
    }

    main section h3 {
        color: #f74b4b;
        font-size: 1.2em;
        line-height: 1.3em;
        margin-bottom: .3em;
    }

    .fechapost1 {
        width: auto;
        float: left;
    }

    .fechapost1 h6 {
    color: #f74b4b;
    font-style: normal;
    width: auto;
    margin-top: .6em;
    text-align: right;
    }

    .fechapost2 h6 {
    color: #535353;
    font-style: normal;
    width: auto;
    margin-top: .6em;
    text-align: right;
    }


    main > section p {
        font-size: 1em;
    }

    .noticias {
        background-color: white;
        border: 1px solid #cbc9c9;
        -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.31); 
        -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.31); 
        box-shadow: 1px 2px 5px rgba(0,0,0,.31); 
        -webkit-border-bottom-left-radius: 1.5em; 
        -moz-border-bottom-left-radius: 1.5em; 
        border-bottom-left-radius: 1.5em; 
        -webkit-border-bottom-right-radius: 1.5em; 
        -moz-border-bottom-right-radius: 1.5em; 
        border-bottom-right-radius: 1.5em;
        margin: 2em auto;
        margin-bottom: 2em;
        padding: 1.3em 2em;
        padding-bottom: 2.9em;
    }

    blockquote {
        padding: 1.4em 2em;
        padding-bottom: 1.2em;
        background: #f7f7f7;
        border-left: 4px solid #ededed;
        margin: 1em 0;
        font-style: italic;
    }

   #comillasabre {
        font-size: 1.9em;
        color: #F34747;
        float: left;
        margin-top: -.5em;
        margin-right: .5em;
    }

   #comillascierre {
        font-size: 1em;
        color: #F34747;
        margin-top: -.5em;
        margin-left: .9em;
    }

   #comentarios {
        max-width: 50rem;
        width: calc( 100% - 1rem );
        margin: 0 auto;
    }

    
@media screen and (max-width: 600px){
	    
        .noticias {
        -webkit-border-bottom-left-radius: 15px; 
        -moz-border-bottom-left-radius: 15px; 
        border-bottom-left-radius: 15px; 
        -webkit-border-bottom-right-radius: 15px; 
        -moz-border-bottom-right-radius: 15px; 
        border-bottom-right-radius: 15px; 
        border-bottom-right-radius: 15px; 
        padding: 1.3em 1em;
        padding-bottom: 3em;
        }
    
        main section h1 {
        }
    
}

/*
----------------
entradas populares
----------------
*/

.entradaspopulares {
    margin-top: 2em;
    margin-bottom: 2em;
    transition: all 1s ease;
}


.entradaspopulares a {
    text-decoration: none;
    color: black;
}

.entradaspopulares > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.entradaspopulares h3 {
    color: #6f6f6f;
    text-align: center;
    line-height: 1.3em;
}

.entradaspopulares h6 {
    margin-top: .4em;
    text-align: center;
    color: #b1b1b1;
    font-style: normal;
}


.entradaspopulares figure {
    position: relative;
    flex-grow: 1;
    width: 15%;
    padding: .6em;
    border: 1px solid #cbc9c9;
    margin: .7em;
    margin-bottom: 1.5em;
    height: 13em;
    background: white;
    -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.31); 
    -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.31); 
    box-shadow: 1px 2px 5px rgba(0,0,0,.31); 
    -webkit-border-bottom-left-radius: 8px; 
    -moz-border-bottom-left-radius: 8px; 
    border-bottom-left-radius: 8px; 
    -webkit-border-bottom-right-radius: 8px; 
    -moz-border-bottom-right-radius: 8px; 
    border-bottom-right-radius: 8px; 
    border-bottom-right-radius: 8px; 
}

.entradaspopulares figure:hover {
    transform: rotate(10deg);
    transition: all .4s ease;
}

.entradaspopulares figure img {
    height: 6em;
}

#imgpop { 
    height: 6em;
    overflow: hidden;
}

.entradaspopulares figure p {
    display: none;
}


.entradaspopulares img { 
    display: block; 
    object-fit:cover;
    object-position: center;
}

#cuerpo { 
    padding: 1em 0em 1.2em 0em; 
}

.casillas .material-icons{
    vertical-align: middle;
    font-size: 1.5em;
    color: black;
    margin-top: .5em;
}

@media (max-width: 650px) {
    
    .entradaspopulares {
        margin-bottom: 3em;
        margin-top: 2em;
    }
    
    .entradaspopulares figure {
        width: 100%;
        height: 10em;
        margin: 0em;
        margin-bottom: 1em;
    }
        
    .entradaspopulares figure:hover {
    transform: rotate(2deg);
    transition: all .4s ease;
    }
    
    #imgpop { 
        width: 40%;
        float:left;
        margin-right: 1em;
        margin-top: .2em;
        height: 8em;
    }
    
    .entradaspopulares figure img {
        object-fit:cover;
        height: 8em;
    }
    
    #cuerpo { 
        padding: .5em 1em;
    }
    
    #cuerpoparrafo { 
        max-height: 3.7em;
        overflow: hidden;
        margin-bottom: 1em;
    }
    
    .entradaspopulares h3 {
        text-align: left;
    }
    
    .entradaspopulares h6 {
        text-align: right;
        color: #F34747;
    }
    
    .entradaspopulares figure p {
	   font-size: 12px;
       display: inherit;
    }

}

@media (max-width: 430px) {
    
    #cuerpoparrafo { 
        max-height: 2.7em;
        overflow: hidden;
        margin-bottom: 1em;
    }

}