#news {
    height: auto;
    overflow: visible;
}
#news::after {
    height: auto;
    background: none;
}
#listNew {
    margin-top: 3rem;
}
#news .itemNews {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px dotted #000;
}
#news .itemNews  > span {
    font-size: .7rem;
    color: #008cd0;
    font-weight: 700;
    text-transform: uppercase;
}
#news .itemNews  .title {
    font-size: 1.6em;
    line-height: 1.3;
    font-weight: 700;
    /*text-transform: uppercase;*/
    color: #555;
}
#news .itemNews .rectDiv {
    height: 3px;
    display: block;
    background-color: rgba(0,0,0,0.1);
    margin: 1em 0 1em;
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
    max-width: 30px;
}
#news .itemNews > p {
    font-size: .7rem;
    color: #777;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
#news .itemNews > p a {
    font-size: .7rem;
    color: #008cd0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
#news .itemNews > a:last-of-type {
    display: grid;
    grid-template-columns: 317px 1fr;
    grid-auto-rows: 1fr;
    grid-gap: 0rem;
}
#news .itemNews > a:last-of-type img {
    width: 100%;
    object-fit: contain;
    height: auto;
}
#news .itemNews > a:last-of-type .image {
    position: relative;
}
#news .itemNews > a:last-of-type .image .date {
    position: absolute;
    top: 7%;
    left: -15px;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-transform: uppercase;
    color: #0f3a85;
    border: 2px solid #0f3a85;
    font-weight: 700;
}
#news .itemNews > a:last-of-type .image .date .day {
    font-size: 25px;
    line-height: .5;
    margin-top: 6px;
}
#news .itemNews > a:last-of-type p {
    padding: 1rem;
    background:#fff;
    height: 100%;
}

@media( max-width: 992px) {
    #news .itemNews > a:last-of-type {
        grid-template-columns: 100%;
    }
    #news .itemNews > a:last-of-type p {
        height: auto;
        margin: 0px;
    }
    #news .itemNews {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    #news .itemNews > a:last-of-type {
        grid-auto-rows: 0fr;
    }
    #news .itemNews > a:last-of-type .image .date {
        top: 8px;
        left: 8px;
    }
}

#news .itemNews .detalle p {
    margin: 0 !important;
    padding: 0 !important;
}