.page-block--news-strip {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
.news-strip {
  position: relative;
  overflow: hidden;
  background: #1f2124;
}
.news-strip__stage {
  position: relative;
  min-height: 58px;
}
.news-strip__link {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
  padding-inline: 24px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  will-change: transform;
}
.news-strip:not(.is-ready) .news-strip__link:not(:first-child) {
  display: none;
}
.news-strip__link--green {
  background: #86BE3D;
  color: #101828;
}
.news-strip__link--green .news-strip__kicker {
  background: rgba(16, 24, 40, 0.12);
}
.news-strip__link--dark {
  background: #1f2124;
  color: #FFFFFF;
}
.news-strip__link--dark .news-strip__kicker {
  background: rgba(255, 255, 255, 0.16);
}
.news-strip__chevron {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.news-strip__chevron svg {
  display: block;
  width: 17px;
  height: 17px;
}
.news-strip__kicker {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 3px 9px;
  border-radius: 999px;
  line-height: 1.25;
  white-space: nowrap;
}
.news-strip__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  white-space: nowrap;
}
.news-strip__go {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.65;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.news-strip__go svg {
  display: block;
  width: 15px;
  height: 15px;
}
.news-strip__link:where(:hover, :focus-visible) .news-strip__text {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-strip__link:where(:hover, :focus-visible) .news-strip__go {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
  opacity: 1;
}
.news-strip__link:where(:hover, :focus-visible) .news-strip__chevron {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.news-strip__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -6px;
}
@media (max-width: 767.98px) {
  .news-strip__stage {
    min-height: 54px;
  }
  .news-strip__link {
    gap: 10px;
  }
  .news-strip__text {
    font-size: 14px;
  }
  .news-strip__kicker {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .news-strip__link {
    -webkit-transition: none;
    transition: none;
  }
}
