.sectionBlog {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: start;
}

.cajaNoticiasInicio {
    display: flex;
    flex-direction: column;
}

.cajaNoticiasInicio .itemNoticiaImagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticiaImgGrande {
    grid-column: span 2;
}

.itemNoticia {
    position: relative;
    overflow: hidden;
}
.itemNoticiaImagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.itemNoticia:hover img {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform:scale(1.3);
}

.itemNoticiaDatos {
    padding: 10px;
    background: rgba(0, 34, 76, 0.80);
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.itemNoticia:hover .itemNoticiaDatos {
    opacity: 1;
}
.itemNoticiaTitulo {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    line-height: 20px;
}
.itemNoticiaTexto {
    color: white;
    font-size: 16px;
    line-height: normal;
    font-style: italic;
}

.imagenDerecha {
    margin: 0 0 20px 30px;
    position: relative;
    float: right;
    text-align: right;
    top: 0;
    max-width: 100%;
}

.subTituloFecha {
    color: var(--secondary);
    font-size: 15px;
    font-style: italic;
}

.itemNoticiaImagen {
    height: 421px;
}

@media only screen and (max-width: 1365px) {
    .itemNoticiaImagen {
        height: 360px;
    }
}

@media only screen and (max-width: 1199px) {
    .itemNoticiaImagen {
        height: 360px;
    }
    .noticiaImgGrande {
        grid-column: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .sectionBlog {
        grid-template-columns: repeat(4, 1fr);
    }

    .cajaNoticiasInicio:nth-child(6n + 3), .cajaNoticiasInicio:nth-child(6n + 5), .current_section_inicio .cajaNoticiasInicio:nth-child(7), .current_section_inicio .cajaNoticiasInicio:nth-child(8) {
        grid-column: span 2;
    }
}
@media only screen and (max-width: 767px) {
    .sectionBlog {
        grid-template-columns: repeat(3, 1fr);
    }

    .cajaNoticiasInicio:nth-child(4n + 2), .cajaNoticiasInicio:nth-child(4n + 3) {
        grid-column: span 2;
    }
}

@media only screen and (max-width: 575px) {
    .itemNoticiaDatos {
        opacity: 1;
    }

    .itemNoticiaTitulo {
        font-size: 14px;
    }

    .itemNoticiaTexto {
        font-size: 12px;
    }

    .sectionBlog {
        display: block;
    }
    .cajaNoticiasInicio {
        margin-bottom: 12px;
    }
}