.sfw-accreditation {
  height: 74px;
  display: flex;
  background: #ffffff;
  border-top: 8px solid var(--sfw-red);
  border-bottom: 8px solid var(--sfw-red);
  overflow: hidden;
  position: relative;
}

.sfw-accreditation-title {
  width: 340px;
  min-width: 340px;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}

.sfw-accreditation-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.92) 40%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.sfw-accreditation-slider {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.sfw-accreditation-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 100%;
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
  z-index: 3;
  pointer-events: none;
}

.sfw-logo-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: sfwLogoScroll 26s linear infinite;
  padding-left: 40px;
}

.sfw-logo-track img {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: .95;
  flex: 0 0 auto;
}

@keyframes sfwLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .sfw-accreditation {
    height: auto;
    flex-direction: column;
  }

  .sfw-accreditation-title {
    width: 100%;
    min-width: 100%;
    height: 54px;
    font-size: 18px;
  }

  .sfw-accreditation-title::after {
    display: none;
  }

  .sfw-accreditation-slider {
    height: 58px;
  }

  .sfw-logo-track {
    gap: 34px;
    padding-left: 24px;
    animation-duration: 18s;
  }

  .sfw-logo-track img {
    height: 30px;
  }
}