/* Grid estático de escudos - reemplaza el carrusel animado */
.escudos-marquee {
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  margin-top: 15px;
  margin-bottom: 10px;
  overflow: visible !important;
  white-space: normal !important;
  min-height: unset !important;
}

.escudos-track {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 8px 20px;
  animation: none !important;
}

.escudos-track a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.escudos-track img {
  height: 48px !important;
  width: auto !important;
  margin: 0 !important;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.escudos-track a:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Tablet */
@media (max-width: 768px) {
  .escudos-track {
    gap: 14px;
    padding: 6px 12px;
  }

  .escudos-track img {
    height: 40px !important;
  }
}

/* Móvil */
@media (max-width: 480px) {
  .escudos-track {
    gap: 10px;
    padding: 4px 8px;
  }

  .escudos-track img {
    height: 36px !important;
  }
}
