/* Case-study prev/next navigation — sits at the end of each case study,
   styled to match the "Back" link already used at the top of these same
   pages (same icon, color, and type). Shared across all five case
   studies. Loaded after Webflow's generated CSS, before responsive-fixes
   so that file can still patch it for narrow screens. */
.case-nav {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 100px;
  display: flex;
}

.case-nav.next-only {
  justify-content: flex-end;
}

.case-nav-link {
  grid-column-gap: 6.4px;
  grid-row-gap: 6.4px;
  color: var(--_main-style---white);
  align-items: center;
  font-family: Parkinsans, sans-serif;
  font-size: 24px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.case-nav-link img {
  width: 25.6px;
  height: 32px;
}

.case-nav-link:hover {
  opacity: 0.7;
}

.case-nav-link.next {
  text-align: right;
}

.case-nav-link.next img {
  transform: rotate(180deg);
}
