.noticias_container{
  width: 100vw;
  margin-top: 100px;
  display: flex;
  gap: 2rem;
  padding: 2rem;  
}
.noticias_filtros{
  width: 300px;
  background-color: var(--color-principal);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.noticias_filtros h2{
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--color-secundario);
}
.filtro_item{
  margin-bottom: 1rem;
}
.filtro_item label{
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--color-textoblanco);
}
.filtro_item input,
.filtro_item select{
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#btnBuscarNoticias{
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  background-color: var(--color-secundario);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#btnBuscarNoticias:hover{
  background-color: #003d80;
}
.noticias_contenido{
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.noticia{
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}
.noticia_imagen{
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.noticia_titulo{
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}
.noticia_subtitulo{
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #555;
}
.noticia_fecha{
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}
.noticia_texto p{
  line-height: 1.6;
  color: #333;
}

.indice_paginacion{
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pagina_btn{
  padding: 0.5rem 1rem;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.pagina_btn:hover{
  background-color: #ddd;
}
@media screen and (max-width: 850px){
  .noticias_container{
    flex-direction: column;  
  }
  .noticias_filtros{
    width: 100%;
  }
}