.trust-marquee {
  overflow: hidden;
  padding: 18px 0;
  background: #171f2b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-marquee-inner {
  max-width: 100%;
  padding: 0;
}

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

.trust-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: trust-marquee-scroll 42s linear infinite;
  will-change: transform;
}

.trust-marquee-group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex: 0 0 auto;
}

.trust-marquee-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
}

.trust-marquee-item img {
  display: block;
  width: auto;
  height: 22px;
  max-width: none;
  opacity: 0.82;
  filter: brightness(0) invert(1);
}

.trust-marquee-item-sportschosun img {
  height: 18px;
}

@keyframes trust-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.trust-marquee:hover .trust-marquee-track {
  animation-play-state: paused;
}

@media (max-width: 760px) {
  .trust-marquee-group {
    gap: 32px;
    padding-right: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-marquee-track {
    animation: none;
    transform: none;
  }
}

.site-footer {
  padding: 38px .875rem 34px;
  background: #171f2b;
  color: #9aa5b3;
}

.footer-inner {
  display: grid;
  gap: 18px;
  max-width: 100%;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong {
  display: block;
  color: #d5dce6;
  font-size: 14px;
  font-weight: 600;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.footer-company-info span {
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(213, 220, 230, 0.22);
  border-radius: 50%;
  color: #d5dce6;
}

.social-link:hover {
  border-color: #d5dce6;
  color: #ffffff;
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.site-footer a {
  color: #d5dce6;
  text-decoration: none;
}

.site-footer p a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 760px) {
  .trust-marquee {
    padding: 14px 0;
  }

  .trust-marquee-track {
    gap: 32px;
    animation-duration: 20s;
  }

  .trust-marquee-item {
    min-width: 104px;
  }

  .trust-marquee-item img {
    height: 18px;
  }

  .footer-top {
    align-items: flex-start;
  }
}
