.trsc-wrap {
  --trsc-gap: 16px;
  --trsc-per-view: 3;
  width: 100%;
  margin: clamp(24px, 4vw, 48px) 0;
  box-sizing: border-box;
}

.trsc-wrap *,
.trsc-wrap *::before,
.trsc-wrap *::after {
  box-sizing: border-box;
}

.trsc-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.trsc-title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.trsc-label {
  flex: 0 0 auto;
  color: currentColor;
  opacity: .55;
  font-size: .7rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trsc-carousel-shell {
  position: relative;
}

.trsc-viewport {
  overflow: hidden;
  border-radius: 12px;
}

.trsc-track {
  display: flex;
  align-items: stretch;
  gap: var(--trsc-gap);
  will-change: transform;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

.trsc-card {
  flex: 0 0 calc((100% - (var(--trsc-gap) * (var(--trsc-per-view) - 1))) / var(--trsc-per-view));
  min-width: 0;
}

.trsc-link {
  display: flex;
  width: 100%;
  min-height: 96px;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 20px);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(18, 18, 18, .11);
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.trsc-link:hover,
.trsc-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(18, 18, 18, .2);
  box-shadow: 0 9px 28px rgba(0, 0, 0, .08);
  outline: none;
}

.trsc-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .14), 0 9px 28px rgba(0, 0, 0, .08);
}

.trsc-image-box {
  display: flex;
  width: 100%;
  height: 76px;
  align-items: center;
  justify-content: center;
}

.trsc-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
  object-position: center;
}

.trsc-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #171717;
  font: inherit;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .18s ease, transform .18s ease;
}

.trsc-nav span {
  display: block;
  margin-top: -2px;
  font-size: 24px;
}

.trsc-prev { left: -12px; }
.trsc-next { right: -12px; }

.trsc-nav:hover,
.trsc-nav:focus-visible {
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

.trsc-nav[hidden] {
  display: none;
}

.trsc-is-static .trsc-track {
  justify-content: center;
}

.trsc-is-static .trsc-card:only-child {
  flex-basis: min(100%, 760px);
  max-width: 760px;
}

@media (max-width: 767px) {
  .trsc-wrap {
    --trsc-gap: 12px;
    --trsc-per-view: 1;
    margin: 28px 0;
  }

  .trsc-heading-row {
    margin-bottom: 10px;
  }

  .trsc-label {
    font-size: .62rem;
  }

  .trsc-link {
    min-height: 100px;
    padding: 14px 18px;
  }

  .trsc-image-box,
  .trsc-image {
    height: 72px;
    max-height: 72px;
  }

  .trsc-prev { left: -8px; }
  .trsc-next { right: -8px; }
}

@media (prefers-reduced-motion: reduce) {
  .trsc-track,
  .trsc-link,
  .trsc-nav {
    transition: none !important;
  }
}


.trsc-wrap .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.trsc-auto-relocate {
  display: none;
  width: 100%;
  padding: 20px 0 24px;
  background: #fff;
  border-bottom: 1px solid rgba(18, 18, 18, .12);
}

.trsc-auto-relocate.trsc-relocated {
  display: block;
}

.trsc-auto-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.trsc-auto-relocate .trsc-wrap {
  margin: 0;
}

@media (max-width: 767px) {
  .trsc-auto-relocate {
    padding: 14px 0 18px;
  }

  .trsc-auto-container {
    width: min(100% - 24px, 1180px);
  }
}
