.ver_detalles{
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  padding: 16px;
  background-color: #9F5515;
  margin: 16px 0px;
  color: white;
  font-weight:bold ;
  cursor: pointer;
}
.ver_detalles:hover{
  background-color: #20212385;
  color: #e0e0e0;
}
.titulo_compartir_noticia{
  margin: 8px 0px;
}
.p_content_acordeon{
  font-family: 'Montserrat', sans-serif;
}
.p_content_acordeon strong{
  font-family: 'Montserrat', sans-serif;
}
.body_class{
      background: #9C8779;
      background: linear-gradient(90deg,rgba(156, 135, 121, 1) 0%, rgba(253, 246, 230, 1) 50%, rgba(218, 207, 188, 1) 100%);
}
/* Contenedor principal con flex para las tarjetas */
.noticias-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

/* Cada tarjeta */
.noticia-card {
  width:35rem;
  border: 1px solid 202123;
  border-radius: 16px;
  padding: 20px;
  background: white;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

/* Fecha publicación */
.noticia-fecha {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
  margin: 16px 0px;
}

/* Título de la noticia */
.noticia-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  min-height: 6em;
}

/* Imagen portada */
.noticia-portada {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
}

/* Botón acordeón */
.accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin-top: 10px;
  width: 100%;
  background-color: #9F5515;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Contenido oculto acordeón */
.accordion-content {
  display: none;
  margin-top: 15px;
  font-size: 1em;
  color: #555;
}

/* Enlace 'Leer más' dentro del acordeón */
.accordion-content a {
  padding: 8px 12px;
  background-color: #202123;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* Paginación */
.pagination {
  list-style: none;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin: 26px 0;
  gap: 8px;
}

.pagination li {
  background-color: #202123;
  border-radius: 6px;
  padding: 6px 12px;
}

.pagination li a,
.pagination li span {
  color: rgba(255, 255, 255, 0.616);
  text-decoration: none;
}

.pagination li.current span {
  color: white;
  font-weight: 600;
}

.pagination li.pagination-previous a,
.pagination li.pagination-next a {
  color: white;
}

/* Fondo body */
body {
  background: #9C8779;
  background: linear-gradient(90deg,rgba(156, 135, 121, 1) 0%, rgba(253, 246, 230, 1) 50%, rgba(218, 207, 188, 1) 100%);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
  h1.titulo-principal{
    font-size: 2.3em;
    font-family:fantasy;
    color: #202123;
  }
  .titulo-buscar{
    font-size: 2em;
  }
  .busqueda-noticias {
  width: 100%;
  margin: 30px auto;
  padding: 6px;

}
  /* estilos para pantallas pequeñas */
}


