.news-strip article strong,
.page-links,
.page-links a,
.page-links button,
.footer small,
.footer__copyright {
  font-family: var(--latin), var(--sans);
  font-synthesis: none;
}

.news-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 16px;
  align-items: center;
  padding: 104px max(32px, calc((100vw - 1360px) / 2)) 100px;
  background: var(--white);
}

.news-strip__button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--muted-blue);
  color: var(--white);
  cursor: pointer;
  transition:
    transform 140ms ease,
    background-color 180ms ease;
}

.news-strip__button:hover,
.news-strip__button:focus-visible {
  background: color-mix(in srgb, var(--muted-blue) 88%, var(--white) 12%);
  transform: scale(1.04);
}

.news-strip__button:active {
  transform: scale(0.96);
}

.news-strip__button img {
  width: 32px;
  height: 16px;
  transition: transform 140ms ease;
  will-change: transform;
}

.news-strip__button--next:hover img,
.news-strip__button--next:focus-visible img {
  animation: banner-arrow-next-nudge 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-strip__button--next:active img {
  transform: translateX(7px);
}

.news-strip__button--prev img {
  transform: rotate(180deg);
}

.news-strip__button--prev:hover img,
.news-strip__button--prev:focus-visible img {
  animation: banner-arrow-prev-nudge 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-strip__button--prev:active img {
  transform: translateX(-7px) rotate(180deg);
}

@keyframes banner-arrow-next-nudge {
  0% {
    transform: translateX(0);
  }

  46% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes banner-arrow-prev-nudge {
  0% {
    transform: translateX(0) rotate(180deg);
  }

  46% {
    transform: translateX(-5px) rotate(180deg);
  }

  100% {
    transform: translateX(0) rotate(180deg);
  }
}

.news-strip__viewport {
  overflow: hidden;
}

.news-strip__track {
  display: flex;
  gap: 20px;
  transition: transform var(--banner-slide-duration, 800ms) cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.news-strip article {
  flex: 0 0 calc((100% - 40px) / 3);
}

.news-strip__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-strip__media {
  aspect-ratio: 350 / 189;
  overflow: hidden;
  border-radius: 4px;
  background: var(--off-white);
}

.news-strip__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.news-strip article.is-linked .news-strip__link:hover .news-strip__media img,
.news-strip article.is-linked .news-strip__link:focus-visible .news-strip__media img {
  transform: scale(1.045);
}

.news-strip article p {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.news-strip article strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.global-footer {
  position: relative;
  z-index: 2;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body:not(.home) .global-footer {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.page-links {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
  padding: 0 max(var(--side), calc((100vw - 1340px) / 2));
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--muted-blue);
  background: var(--white);
  color: var(--ink);
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.page-links a,
.page-links button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.page-links__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 40px;
  padding-left: 50px;
}

.page-links__top::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--light-gray);
  content: "";
}

.page-links__top span {
  display: block;
  width: 27px;
  height: 3px;
  background-image: radial-gradient(circle, currentColor 1px, transparent 1.5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
}

.footer {
  position: relative;
  z-index: 0;
  background: linear-gradient(235deg, var(--muted-blue) 50%, #2f566f 100%);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.global-footer *,
.footer * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body:not(.home) .footer {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.c-parallax {
  position: relative;
  z-index: 0;
}

.c-parallax.-top {
  height: calc(var(--parallax-height) * 2);
  margin-top: calc(var(--parallax-height) * -1);
}

.footer .js-ui-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100svh);
  pointer-events: none;
}

.c-parallax__body {
  position: sticky;
  top: 0;
}

.c-parallax__body.-type2 {
  top: calc(100svh - var(--parallax-height));
}

.footer__body {
  display: flex;
  min-height: var(--parallax-height);
  align-items: flex-end;
  padding: 0 max(var(--side), calc((100vw - 1340px) / 2)) 30px;
  overflow: hidden;
  background: linear-gradient(235deg, var(--muted-blue) 50%, #2f566f 100%);
  will-change: transform;
}

.footer__inner {
  max-width: 520px;
}

.footer__brand {
  margin-bottom: 76px;
  font-weight: 400;
}

.footer address,
.footer p,
.footer small {
  display: block;
  margin: 0 0 32px;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

.footer small {
  margin-top: 120px;
  font-family: var(--latin), var(--sans);
}

.footer__copyright-break {
  display: none;
}

@media (max-width: 1024px) {
  body:not(.home) .news-strip {
    grid-template-columns: 1fr 52px 52px;
    gap: 18px;
    padding: 64px var(--side);
  }

  body:not(.home) .news-strip__button {
    position: static;
    z-index: auto;
    display: grid;
    width: 52px;
    height: 52px;
  }

  body:not(.home) .news-strip__button--prev {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  body:not(.home) .news-strip__button--next {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }

  body:not(.home) .news-strip__button img {
    width: 28px;
    height: 14px;
  }

  body:not(.home) .news-strip__viewport {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    overflow: hidden;
  }

  body:not(.home) .news-strip article {
    flex: 0 0 100%;
    min-width: 0;
  }

  body:not(.home) .news-strip__media {
    height: auto;
    aspect-ratio: 350 / 189;
    margin-inline: 0;
  }

  body:not(.home) .news-strip article p {
    min-height: 0;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: normal;
    writing-mode: horizontal-tb;
  }

  body:not(.home) .page-links {
    min-height: 72px;
    padding-right: var(--side);
    padding-left: var(--side);
    font-size: 12px;
  }

  body:not(.home) .page-links__top {
    gap: 12px;
    padding-left: 22px;
  }

  body:not(.home) .footer {
    width: 100%;
    margin-inline: 0;
  }

  body:not(.home) .footer__body {
    min-height: 100svh;
    padding: 132px var(--side) calc(54px + env(safe-area-inset-bottom));
  }

  body:not(.home) .footer__brand {
    margin-bottom: 52px;
  }

  body:not(.home) .footer small {
    margin-top: 56px;
    font-size: 12px;
  }

  body:not(.home) .footer address,
  body:not(.home) .footer p {
    font-size: 13px;
  }

  body:not(.home) .footer__notice {
    display: inline-block;
    margin-bottom: 14px;
  }

  body:not(.home) .footer__copyright {
    display: inline-block;
    line-height: 1.2;
  }

  body:not(.home) .footer__copyright-break {
    display: block;
  }

  body:not(.home) .footer__copyright-separator {
    display: none;
  }

  body:not(.home) .footer__license-break {
    display: none;
  }
}

@media (max-width: 820px) {
  .news-strip {
    grid-template-columns: 1fr 52px 52px;
    gap: 18px;
    padding: 64px var(--side);
  }

  .news-strip__button {
    position: static;
    z-index: auto;
    display: grid;
    width: 52px;
    height: 52px;
  }

  .news-strip__button--prev {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  .news-strip__button--next {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }

  .news-strip__button img {
    width: 28px;
    height: 14px;
  }

  .news-strip__viewport {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    overflow: hidden;
  }

  .news-strip article {
    flex: 0 0 100%;
    min-width: 0;
  }

  .news-strip__media {
    height: auto;
    aspect-ratio: 350 / 189;
    margin-inline: 0;
  }

  .news-strip article p {
    min-height: 0;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: normal;
    writing-mode: horizontal-tb;
  }

  body.home .page-links,
  body:not(.home) .page-links {
    min-height: 72px;
    padding-right: var(--side);
    padding-left: var(--side);
    font-size: 12px;
  }

  body.home .page-links__top,
  body:not(.home) .page-links__top {
    gap: 12px;
    padding-left: 22px;
  }

  body.home .footer {
    min-height: var(--parallax-height);
  }

  body.home .footer__body,
  body:not(.home) .footer__body {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 140px var(--side) 0;
  }

  body.home .footer small,
  body:not(.home) .footer small {
    margin: 0 0 20px;
    font-size: 12px;
  }

  .footer address,
  .footer p {
    font-size: 13px;
  }

  body.home .footer__notice,
  body:not(.home) .footer__notice {
    display: inline-block;
    margin-bottom: 14px;
  }

  body.home .footer__copyright,
  body:not(.home) .footer__copyright {
    display: inline-block;
    line-height: 1.2;
  }

  body.home .footer__copyright-break,
  body:not(.home) .footer__copyright-break {
    display: block;
  }

  body.home .footer__copyright-separator,
  body:not(.home) .footer__copyright-separator {
    display: none;
  }

  body.home .footer__license-break,
  body:not(.home) .footer__license-break {
    display: none;
  }
}
