/* Shared continuous brand carousel used by the public pages. */
.hero-brand-marquee {
  width: 100%;
  margin: 0;
  padding: 0.65rem 0;
  overflow: hidden;
  background: var(--white, #fff);
  border-top: 1px solid var(--border, #e5e7eb);
  border-bottom: 1px solid var(--border, #e5e7eb);
  text-align: center;
}

.hero-brand-label {
  margin: 0 1.5rem 0.65rem;
  color: var(--text-light, #5b6472);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-brand-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.hero-brand-track,
.hero-brand-group {
  display: flex;
  align-items: center;
}

.hero-brand-track {
  width: max-content;
  --brand-start-offset: calc(50vw - 358px);
  transform: translateX(var(--brand-start-offset));
  animation: hero-brand-scroll 105s linear infinite;
}

.hero-brand-group {
  gap: 2.6rem;
  padding-right: 2.6rem;
}

.hero-brand-logo {
  display: flex;
  flex: 0 0 110px;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding-inline: 0.25rem;
}

.hero-brand-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
}

.hero-brand-logo img[alt="De Dietrich"],
.hero-brand-logo img[alt="Domusa"],
.hero-brand-logo img[alt="Fagor"],
.hero-brand-logo img[alt="Hisense"],
.hero-brand-logo img[alt="Junkers"],
.hero-brand-logo img[alt="Lamborghini Calor"] {
  max-width: 100%;
  max-height: 42px;
}

.hero-brand-logo img[alt="Roca"] {
  max-height: 36px;
}

.hero-brand-logo img[alt="Ferroli"],
.hero-brand-logo img[alt="Junkers"] {
  max-width: 100%;
  max-height: 38px;
}

/* Keep the carousel directly below each page hero, regardless of where the
   page-specific markup places the shared block in the source. */
main {
  display: flex;
  flex-direction: column;
}

main > * {
  order: 3;
}

main > .hero,
main > .g-hero {
  order: 1;
}

main > .hero-brand-marquee {
  order: 2;
}

@keyframes hero-brand-scroll {
  from { transform: translateX(var(--brand-start-offset)); }
  to { transform: translateX(calc(-50% + var(--brand-start-offset))); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand-track {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .hero-brand-marquee {
    padding: 0.5rem 0;
  }

  .hero-brand-label {
    margin-bottom: 0.5rem;
  }

  .hero-brand-group {
    gap: 1.7rem;
    padding-right: 1.7rem;
  }

  .hero-brand-logo {
    flex-basis: 88px;
    height: 34px;
    padding-inline: 0.2rem;
  }

  .hero-brand-logo img {
    max-width: 100%;
    max-height: 23px;
  }

  .hero-brand-logo img[alt="De Dietrich"],
  .hero-brand-logo img[alt="Domusa"],
  .hero-brand-logo img[alt="Fagor"],
  .hero-brand-logo img[alt="Hisense"],
  .hero-brand-logo img[alt="Junkers"],
  .hero-brand-logo img[alt="Lamborghini Calor"] {
    max-width: 100%;
    max-height: 30px;
  }

  .hero-brand-logo img[alt="Ferroli"],
  .hero-brand-logo img[alt="Junkers"] {
    max-width: 100%;
    max-height: 30px;
  }

  .hero-brand-track {
    --brand-start-offset: calc(50vw - 275px);
    animation-duration: 55s;
  }
}
