
/* Contenedor de tarjetas todos-flex */
.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: center; /* centrar */
}

/* tamaño */
.news-item {
  flex: 0 0 30%;
  max-width: 30%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  transition: transform .2s ease-in-out;
}

.news-item img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.news-item:hover { transform: scale(1.03); }

/* Ocultar al buscar */
.news-item.hidden { display: none !important; }

/* Responsivo */
@media (max-width: 992px) {
  .news-item { flex-basis: 47%; max-width: 47%; }
}
@media (max-width: 576px) {
  .news-item { flex-basis: 100%; max-width: 100%; } 
}




#buscador-mapas {
  width: 40% !important;   
  margin: 0 auto;          
}

/* moviles  */
@media (max-width: 768px) {
  #buscador-mapas {
    width: 60% !important;
  }
}


#buscador-mapas .btn {
  background-color: #000 !important; 
  border-color: #000 !important;    
}