/* === Section Wrapper === */
#marquee-banner {
  user-select: none;
  padding: clamp(1.5em, 1.5em + 5vw, 7em) 0;
  padding-top: 0;
}
#marquee-banner .section__container{
  padding-top:clamp(1.5em, 1.5em + 5vw, 7em);
  padding-bottom:1em;
  text-align: left;
}

/* === Marquee Container === */
.marquees {
  overflow: hidden;
}

/* === Marquee Base === */
.marquee {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100vw;
  padding: var(--marquee-padding, 0.25em);
  background-color: var(--color-deep-shadow);
}

/* === Directional Variant === */
.marquee-top {
  flex-direction: row-reverse;
}

.marquee-bottom {
  background-color: var(--color-primary);
}

/* === Track === */
.marquee__track {
  display: flex;
  align-items: center;
  position: relative;
}

/* === Content Block === */
.marquee__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  width: max-content;
  margin-right: clamp(2em, 2em + 1vw, 3.5em);
  color: white;
}

/* === Bottom Variant Overrides === */
.marquee-bottom .marquee__content {
  gap: 2.5em;
  margin-right: 2.5em;
}

/* === Item === */
.marquee__item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 400;
  color: white;
}

/* === Text Styling === */
.marquee-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.95rem, 1.95rem + 1vw, 3rem);
}

.marquee__item p {
  font-size: clamp(1rem, 0.5rem + 1vw, 1.25rem);
}

/* === Image Styling === */
.marquee__img {
  border-radius: 10em;
  overflow: hidden;
  margin: 0 1.25em;
}

.marquee__img img {
  height: auto;
  width: clamp(7em, 7em + 5vw, 11em);
}

/* === Icon Styling === */
.marquee-icon {
  display: flex;
  gap: 0.25em;
  padding: 0 clamp(0.5em, 0.5em + 0.5vw, 1em);
  color: var(--color-accent);
}

.marquee-icon [class^="ico-"] {
  display: flex;
  font-size: clamp(1.5rem, 1.5rem + 1vw, 2.5rem);
}

.marquee-icon .ico-logo {
  font-size: clamp(1.75rem, 1.75rem + 1vw, 2.75rem);
}

.marquee-icon .ico-7 {
  font-size: clamp(1.5rem, 1.5rem + 1vw, 2.125rem);
}

#marquee-toggle {
  position: relative;
  text-align: center;
  background: none;
  border:none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(.875rem, .5rem + .5vw, .9375rem);
}
#marquee-toggle::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
}
#marquee-toggle.is-paused::after {
  content: "Play motion";
}
#marquee-toggle:not(.is-paused)::after {
  content: "Pause motion";
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation: none !important;
    transform: none !important;
  }
}