.atl-banner-slider {
  box-sizing: border-box;
  padding: 10px;
}
.atl-banner-slider__inner {
  position: relative;
  height: 60vh;
  min-height: 500px;
  max-height: 700px;
  max-width: 1920px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--color-jakarta);
}
.atl-banner-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.atl-banner-slider__slide.is-active {
  opacity: 1;
}
.atl-banner-slider__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.atl-banner-slider__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.atl-banner-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(53, 52, 82, 0.9), rgba(53, 52, 82, 0.6), transparent);
}
.atl-banner-slider__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
@media (max-width: 767px) {
  .atl-banner-slider__content {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}
.atl-banner-slider__content-inner {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  font-family: "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
}
.atl-banner-slider__content-inner .atl-banner-slider__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.atl-banner-slider__content-inner .atl-banner-slider__type,
.atl-banner-slider__content-inner .atl-banner-slider__booth {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.875rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.atl-banner-slider__content-inner .atl-banner-slider__type {
  gap: 0.5rem;
  background: var(--color-vermilion, #ce493c);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(204, 66, 54, 0.3);
}
.atl-banner-slider__content-inner .atl-banner-slider__type-dot {
  position: relative;
  display: inline-flex;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #fff;
}
.atl-banner-slider__content-inner .atl-banner-slider__type-dot::before {
  position: absolute;
  inset: -0.2rem;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  content: "";
  animation: atl-banner-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.atl-banner-slider__content-inner .atl-banner-slider__booth {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@keyframes atl-banner-ping {
  75%, 100% {
    opacity: 0;
    transform: scale(2);
  }
}
@media (min-width: 768px) {
  .atl-banner-slider__content-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.atl-banner-slider__content-inner h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 1rem 0 0;
}
.atl-banner-slider__content-inner p {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.625;
  margin: 1rem 0 0;
  max-width: 32rem;
}
@media (min-width: 768px) {
  .atl-banner-slider__content-inner h2 {
    font-size: 2.25rem;
  }
  .atl-banner-slider__content-inner p {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .atl-banner-slider__content-inner h2 {
    font-size: 3rem;
  }
}
.atl-banner-slider__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}
@media (max-width: 480px) {
  .atl-banner-slider__ctas {
    gap: 1.5rem;
  }
}
.atl-banner-slider__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-teal);
  color: #fff;
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.atl-banner-slider__cta:hover {
  background-color: #fff;
  color: var(--color-jakarta);
}
.atl-banner-slider__cta--secondary {
  background: none;
  border: none;
  padding: 0;
  min-height: 44px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.atl-banner-slider__cta--secondary:hover {
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}
.atl-banner-slider__indicators {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  padding: 0.25rem 0.625rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: #fff;
  font-family: monospace;
  font-size: 0.875rem;
}
.atl-banner-slider__arrows {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: none;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}
.atl-banner-slider__prev, .atl-banner-slider__next, .atl-banner-slider__pause {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.atl-banner-slider__prev svg, .atl-banner-slider__next svg, .atl-banner-slider__pause svg {
  width: 1.5rem;
  height: 1.5rem;
}
.atl-banner-slider__prev span, .atl-banner-slider__next span, .atl-banner-slider__pause span {
  font-size: 1rem;
  line-height: 1;
}
.atl-banner-slider__prev:hover, .atl-banner-slider__prev:focus-visible, .atl-banner-slider__next:hover, .atl-banner-slider__next:focus-visible, .atl-banner-slider__pause:hover, .atl-banner-slider__pause:focus-visible {
  background-color: #fff;
  color: var(--color-jakarta);
}
.atl-banner-slider__prev:focus-visible, .atl-banner-slider__next:focus-visible, .atl-banner-slider__pause:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}
.atl-banner-slider__progress-bar {
  width: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
  overflow: hidden;
}
.atl-banner-slider__progress-fill {
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: 1px;
}

.editor-styles-wrapper .atl-banner-slider__slide {
  opacity: 1 !important;
  position: relative !important;
  height: auto;
  min-height: 500px;
}
.editor-styles-wrapper .atl-banner-slider__slide:not(:last-child) {
  margin-bottom: 1rem;
}

.editor-styles-wrapper .atl-banner-slider__inner {
  height: auto;
}

@media (min-width: 768px) {
  .atl-banner-slider__arrows {
    display: flex;
    right: 1.5rem;
    gap: 0.75rem;
  }
  .atl-banner-slider__indicators {
    left: auto;
    right: 13rem;
  }
}
