/*NOTICIA*/
.detalleNoticiaEnBlanco img {
    max-width: 100%;

}

.detalleNoticiaEnBlanco h2,
.detalleNoticiaEnBlanco .h2 {
    line-height: 1.2;
    font-weight: bold;
}

.detalleNoticiaEnBlanco h3 {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    font-size: 32px;
}

.detalleNoticiaEnBlanco h4 {
    font-size: 28px;
}

.detalleNoticiaEnBlanco .imagen {
    max-width: 100%;
}

@media (min-width: 768px) {
    .detalleNoticiaEnBlanco .imagen {
        flex-basis: 40%;
    }
}

@media (min-width: 768px) {
    .detalleNoticiaEnBlanco .texto-noticia {
        flex-basis: calc(60% - 3rem);
    }
}



.detalleNoticiaEnBlanco .noticias-rel {
   /* margin-left: 2%;*/
    margin-top: 25%;
}

.detalleNoticiaEnBlanco .titular {
    font-weight: bold;
	margin-top: 30px;
    margin-bottom: 20px;
}

.detalleNoticiaEnBlanco .letra-noticia {
    font-size: 21px;
}


/*GALERIA NOTICIAS*/

.detalleNoticiaEnBlanco .galeria-noticia {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 95%;
    grid-gap: 10px;
    /*padding: 40px 0;*/
    overflow: hidden;
	margin-top: 4%;
}

@media (max-width:750px) {
    .detalleNoticiaEnBlanco .galeria-noticia {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        margin: auto;
    }
    .detalleNoticiaEnBlanco .close {
        top: 20px;
        right: 20px;
    }
}

.detalleNoticiaEnBlanco .galeria-noticia>a {
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(64, 14, 241, 0.267);
}

.detalleNoticiaEnBlanco .galeria-noticia img {
    width: 100%;
    vertical-align: top;
    height: 150px;
    object-fit: cover;
    filter: grayscale(90%);
    transition: transform 0.5s;
}

.detalleNoticiaEnBlanco .galeria-noticia a:hover img {
    filter: none;
    transform: scale(1.3);
}

.detalleNoticiaEnBlanco .light-box {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: transform .4s ease-in-out;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
}

.detalleNoticiaEnBlanco .light-box img {
    /*width: 75vw;*/
	width: 75%;
    max-height: 70vh;
}

.detalleNoticiaEnBlanco .light-box:target {
    transform: scale(1);
}

.detalleNoticiaEnBlanco .close {
    display: block;
    position: absolute;
    top: 40px;
    right: 40px;
    background: #154481;
    color: #fff;
    text-decoration: none;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
	opacity: 1;
}

.detalleNoticiaEnBlanco .next {
    display: block;
    background: #154481;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-decoration: none;
    text-align: center;
}

.detalleNoticiaEnBlanco .next:hover,
.detalleNoticiaEnBlanco .close:hover {
    color: #FFC500;
    font-weight: bold;
}


.detalleNoticiaEnBlanco a {
    text-decoration: none;
}
