.news-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}
.news-track {
  display: flex;
  transition: transform 0.5s ease;
}
.news-card {
  flex: 0 0 20%; /* desktop por defecto */
  box-sizing: border-box;
  padding: 7px 10px; /* reducido 30% */
}
@media (max-width: 767px) {
  .news-card {
    flex: 0 0 100% !important; /* móvil: 1 noticia */
  }
}
.thumb-link img {
  width: 250px !important;
  height: 200px !important;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: auto;
}
.news-content { padding: 7px; }
.btn-vermas {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
}
.btn-vermas:hover { background: #cc5200; }
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: #fff;
}
.arrow.prev { left: 10px; }
.arrow.next { right: 10px; }
.btn-todas {
  text-align: center;
  margin-top: 15px;
}
.btn-leer-todas {
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}
.btn-leer-todas:hover { background: #000; }

@media (max-width: 767px) {
  .thumb-link img {
    width: 100% !important;   /* ocupa todo el ancho disponible */
    height: auto !important;  /* mantiene proporción */
    max-height: 300px;        /* límite para que no se dispare demasiado */
    object-fit: cover;
  }
  .news-card {
    flex: 0 0 100% !important; /* 1 columna en móvil */
    padding: 5px 8px;          /* más compacto */
  }
}