.scrolling-promotion-section {
  color: rgb(var(--color-text));
  background-color: rgb(var(--color-background));
}
.scrolling-promotion {
  overflow: hidden;
  position: relative;
}
.scrolling-track {
  display: flex;
  gap: var(--item-gap);
  align-items: center;
  width: max-content;
  will-change: transform;
}
.promotion-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  min-width: 120px;
}
.promotion-item--image {
  max-width: 400px;
  height: var(--image-height);
}
.promotion-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
.promotion-item--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius);
}
.promotion-item__placeholder {
  width: var(--image-height);
  height: var(--image-height);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promotion-item--image .empty-image-class {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-text), 0.05);
  border-radius: var(--border-radius);
}
.testimonial.promotion-item--testimonial {
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  flex-direction: column;
  gap: 16px;
}
.promotion-item--announcement {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.promotion-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promotion-icon svg {
  width: 100%;
  height: 100%;
}
.promotion-icon--small {
  width: 12px;
  height: 12px;
}
.promotion-icon--medium {
  width: 16px;
  height: 16px;
}
.promotion-icon--large {
  width: 24px;
  height: 24px;
}
.promotion-text {
  font-size: var(--text-size);
  font-weight: 500;
}
