.shortcode-navigation {
  --title-font-size: clamp(1rem, 3vw, 2.25rem);
  display: flex;
  justify-content: space-between;
}
.shortcode-navigation__wrapper.nav-previous {
  align-items: flex-start;
}
.shortcode-navigation__wrapper.nav-next {
  align-items: flex-end;
}
.shortcode-navigation__nav-link {
  color: currentColor;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.shortcode-navigation__nav-link .shortcode-navigation__nav-title {
  font-size: var(--title-font-size);
  line-height: 1;
}
.shortcode-navigation__nav-link .shortcode-navigation__nav-label {
  text-transform: uppercase;
  min-width: clamp(1rem, 20vw, 204px);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.shortcode-navigation__nav-link .shortcode-navigation__nav-label:hover:before {
  background-image: url("/wp-content/themes/piarre-architecture/assets/icons/open.green.min.svg");
}
.shortcode-navigation__nav-link .shortcode-navigation__nav-label:before {
  content: "";
  display: inline-block;
  height: 1em;
  width: 1em;
  background-image: url("/wp-content/themes/piarre-architecture/assets/icons/open.min.svg");
  background-size: contain;
}
.nav-previous .shortcode-navigation__nav-link .shortcode-navigation__nav-label:before {
  transform: rotate(270deg);
}
.nav-next .shortcode-navigation__nav-link .shortcode-navigation__nav-label {
  flex-direction: row-reverse;
}