/* Título de la noticia */
.news-title {
	margin-top: 10px;
	text-align: center;
}

/* Contenedor centrado */
.center-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* Imagen principal */
#imgNews {
    display: block;
    margin: 20px auto;
    width: 85%;
    max-width: 800px;
    height: auto;
}

/* Imágenes del cuerpo (TinyMCE) */
.center-content img:not(#imgNews) {
    display: block;
    margin: 20px auto;
    width: 85%;
    max-width: 800px;
    height: auto;
    border-radius: 5px;
}

/* Videos del cuerpo (TinyMCE) */
.center-content video {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 5px;
}

/* Responsive breakpoints */
@media screen and (min-width: 1150px) {
    #imgNews,
    .center-content img:not(#imgNews) {
        width: 85%;
    }

    .center-content video {
        width: 85%;
    }
}

@media screen and (max-width: 1149px) {
    #imgNews,
    .center-content img:not(#imgNews),
    .center-content video {
        width: 85%;
    }
}
