.fecha{
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    text-align: right;
    font-size: 12px;
}

.cuerpo { 
    text-align: justify;
    text-align-last: left;
}

.iconoMedia{
    position: absolute;
    bottom: 0.25rem;
    right: 0.5rem;
    color: #ffffff;
}

#tablonNoticias{ transition: all 0.5s ease-in-out; }

@media only screen and (min-width: 768px) {
    .noticia{
        position: relative;
        width: 100%;
        height: 34vh;

        cursor: pointer;
        transition: all 0.5s ease-in-out;

        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .noticia:hover{ 
        transform: translateY(-0.1rem);
        box-shadow: 0px 0.1rem 0px rgba(0, 0, 0, 0.25);
    }

    .noticia:active{ transform: scale(0.9); }

    .tarjetaColor{
        position: absolute;
        width: 100%;
        height: 95%;
        bottom: 0px;
        left: 0px;
        box-sizing: border-box;

        color: #ffffff;
    }

    .tarjetaColor .titular{ font-size: 25px; }
    .tarjetaColor .cuerpo{ opacity: 1; }

    .tarjetaFoto{
        position: absolute;
        width: 100%;
        height: 40%;
        bottom: 0px;
        left: 0px;
        box-sizing: border-box;

        color: #ffffff;

        background: rgb(0,0,0);
        background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);

        transition: all 0.25s ease-in-out;
    }

    .noticia:hover .tarjetaFoto{ 
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .tarjetaFoto .titular{
        position: absolute;
        bottom: 0vh;
        font-size: 20px;
        padding-top: 0rem;
        transition: all 0.25s ease-in-out;
    }
    .noticia:hover .tarjetaFoto .titular{ 
        bottom: 28vh;
    }

    .tarjetaFoto .cuerpo{
        position: absolute;
        height: 0px;
        left: 0rem;
        bottom: 0vh;
        padding: 0.5rem;
        opacity: 0;
        transition: all 0.25s ease-in-out;
    }

    .noticia:hover .tarjetaFoto .cuerpo{ 
        opacity: 1;
        height: 28vh;
    }

    #footer{
        position: fixed;
        height: 50px;
        bottom: 0px;
        transition: all 0.5s ease-in-out;
    }
    #footer #flechaArribaFooter{ transition: all 0.5s ease-in-out;}

    #footer:hover{ height: 680px; }
    #footer:hover #flechaArribaFooter{ opacity: 0; }

    #espaciador{
        position: relative;
        width: 98.2vw;
        height: 60px;
    }

    #finNoticias{
        position: relative;
        width: 80vw;
        height: 175px;
        margin: auto;
        text-align: center;
    }

    .iconoMedia {font-size: 30px; }
}

/* Estilo para móviles */
@media only screen and (max-width: 768px) {
    .noticia{
        position: relative;
        width: 100%;
        height: fit-content;
        min-height: 25vh;

        transition: all 0.5s ease-in-out;

        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .tarjetaColor{ color: #ffffff; }
    
    .tarjetaColor .titular{ font-size: 25px; }
    .tarjetaColor .cuerpo{ opacity: 1; }

    .tarjetaFoto{
        position: relative;
        width: 100%;
        height: fit-content;
        bottom: 0px;
        left: 0px;
        padding: 10px;
        box-sizing: border-box;

        color: #ffffff;

        background-color: rgba(0, 0, 0, 0.5);
    }

    .titular{
        padding-top: 1.25rem;
        font-size: 20px;
    }

    .cuerpo{
        position: relative;
    }

    #footer i{ opacity: 0; }

    #espaciador{
        position: relative;
        width: 98.7vw;
        height: 60px;
    }

    #finNoticias{
        position: relative;
        height: 175px;
        margin: 0.1vw;
        text-align: center;
    }
}