.atl-lgal {
  position: relative;
  padding: 2rem 0;
  margin-block-start: 0 !important;
  background-color: #fff;
}
.atl-lgal__viewport {
  overflow: hidden;
  width: 100%;
}
.atl-lgal__track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation-name: atl-lgal-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.atl-lgal__track:hover, .atl-lgal__track.is-paused {
  animation-play-state: paused;
}
.atl-lgal__pause {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #353452;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background-color 0.2s ease;
}
.atl-lgal__pause:hover, .atl-lgal__pause:focus-visible {
  background: #fff;
}
.atl-lgal__card {
  position: relative;
  width: 280px;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.atl-lgal__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.atl-lgal__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 50%, transparent);
}
.atl-lgal__caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
}
.atl-lgal__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.333;
  letter-spacing: normal;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}
.atl-lgal__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .atl-lgal__card {
    width: 340px;
  }
}

@keyframes atl-lgal-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .atl-lgal__track {
    animation: none;
  }
}
