/* ============================================================
   Awards Block - Smooth scrolling showcase with fade masks
   ============================================================ */
.awards {
  position: relative;
  overflow: hidden;
  padding: 1.875rem 0;
}
.awards--auto-size {
  padding-block: 0;
}
@media only screen and (max-width: 991px) {
  .awards--auto-size {
    padding-block: 0;
  }
}
.awards--auto-size .awards__item {
  min-width: 5.625rem;
}
.awards--auto-size .awards__item img {
  height: auto;
  width: auto;
  min-height: 30px;
}
@media only screen and (max-width: 991px) {
  .awards {
    padding: 1.25rem 0;
  }
}

/* Container with mask applied */
.awards__container {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 6%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 6%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  padding-inline: 2px;
}
.awards__container-inner {
  position: relative;
  overflow: hidden;
}

/* Scrolling track */
.awards__track {
  display: flex;
  gap: 3.75rem;
  align-items: center;
  width: max-content;
  animation: awards-scroll 30s linear infinite;
  will-change: transform;
}
@media only screen and (max-width: 991px) {
  .awards__track {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .awards__track {
    gap: 1.875rem;
  }
}

/* Speed variants */
.awards__track--speed-slow {
  animation-duration: 50s;
}

.awards__track--speed-normal {
  animation-duration: 30s;
}

.awards__track--speed-fast {
  animation-duration: 15s;
}

.awards__track--speed-custom {
  animation-duration: 30s;
}

/* Pause on hover */
.awards__track--pausable:hover {
  animation-play-state: paused;
}

/* Individual award item */
.awards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 10.625rem;
  max-width: 13.75rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .awards__item {
    min-width: 7.5rem;
    max-width: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .awards__item {
    min-width: 6.25rem;
    max-width: 8.75rem;
  }
}
.awards__item img {
  width: 100%;
  height: 11.25rem;
  max-height: 11.25rem;
  object-fit: contain;
  transition: filter 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .awards__item img {
    max-height: 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .awards__item img {
    max-height: 6.25rem;
  }
}

/* SVG mask element (hidden) */
.awards__mask {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Scroll animation */
@keyframes awards-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Placeholder for editor preview */
.awards__placeholder {
  padding: 2.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
}
.awards__placeholder p {
  margin: 0;
  color: var(--wp--preset--color--grey, #B2B8BE);
  font-size: 0.875rem;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .awards__track {
    animation: none;
  }
  .awards__item {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* Dark background variant support */
.has-navy-blue-background-color .awards__item img,
.has-dark-background .awards__item img {
  filter: grayscale(100%) brightness(1.2);
}
.has-navy-blue-background-color .awards__item img:hover,
.has-dark-background .awards__item img:hover {
  filter: grayscale(0%) brightness(1);
}

/*# sourceMappingURL=style.css.map */
