/* 
    Created on : 3/04/2015, 11:02:19 PM
    Author     : duvanj
*/
.noticia{
    padding: 10px;
    margin: 0 5px;
    position: relative;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}
.noticia:hover{
    box-shadow: 0 0 8px #ddd;
    -moz-box-shadow: 0 0 8px #ddd;
    -webkit-box-shadow: 0 0 8px #ddd;
    -webkit-transition: box-shadow 0.2s ease-in-out;
    -moz-transition: box-shadow 0.2s ease-in-out;
    -o-transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
}
.noticia-img{
    width: 100%;
    height: 400px;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.noticia-img-in{
    width: 100%;
    height: 400px;
    background-size: cover;
    position: relative;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}
.noticia:hover .noticia-img-in{
    -webkit-transform: scale(1.2) rotate(2deg);
    -moz-transform: scale(1.2) rotate(2deg);
    -o-transform: scale(1.2) rotate(2deg);
    -ms-transform: scale(1.2) rotate(2deg);
    transform: scale(1.2) rotate(2deg);
}
.noticia h3{
    font-size: 18px;
    line-height: 28px;
    color: inherit;
}
.noticia .by-author{
    margin: 0 0 8px;
    font-size: 0.8em;
}
.noticia p{
    font-size: 0.9em;
    margin: 0 0 10px;
    text-align: justify;
}
.noticia a{
}
.noticia a:hover{
    color: inherit;
}
.noticia-img-in:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.05);
}
.noticia-fecha{
    position: absolute;
    top:  25px;
    left:  10px;
    padding: 5px 15px;
    background: #fff;
    text-align: center;
    text-transform: capitalize;
}
.noticia-fecha h4{
    margin: 0;
    line-height: 16px;
    font-size: 1.1em;
}
.noticia-fecha span{
    line-height: 16px;
    font-size: 0.8em;
}