.medios-04 {
  margin: 0 8px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.medios-04__inner {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  box-sizing: border-box;
}

.medios-04__title {
  font-family: 'Proxima Nova A', 'Proxima Nova', -apple-system, 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1.28px;
  color: #282834;
  font-feature-settings: "salt" 1, "calt" 0;
  text-align: center;
  padding: 0 16px;
  margin: 0;
  word-break: break-word;
}

.medios-04__marquee-wrap {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.medios-04__marquee-wrap:focus-visible {
  outline: 2px solid #434ce4;
  outline-offset: -2px;
}

.medios-04__track {
  display: flex;
  width: max-content;
  animation: medios-marquee 24s linear infinite;
}

.medios-04__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0 24px 0 0;
  box-sizing: border-box;
}

.medios-04__logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
}

.medios-04__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

@keyframes medios-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-12.5%); }
}

@media (min-width: 768px) {
  .medios-04__inner {
    min-height: 712px;
    gap: 80px;
  }
  .medios-04__title {
    font-size: 72px;
    letter-spacing: -2.88px;
    padding: 0 40px;
  }
  .medios-04__list {
    gap: 40px;
    padding-right: 40px;
  }
  .medios-04__logo {
    width: 80px;
    height: 80px;
  }
}

.medios-04__marquee-wrap:hover .medios-04__track,
.medios-04__marquee-wrap:focus-within .medios-04__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .medios-04__track { animation-play-state: paused; }
}
