.jala-post-navigation {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  width: 100%;
}

.jala-post-navigation--space-between {
  justify-content: space-between;
}

.jala-post-navigation--left {
  justify-content: flex-start;
}

.jala-post-navigation--center {
  justify-content: center;
}

.jala-post-navigation--right {
  justify-content: flex-end;
}

.jala-post-navigation__link {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
}

.jala-post-navigation__button {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 8px 12px 0 rgba(40, 40, 40, 0.10), 0 16px 24px 0 rgba(40, 40, 40, 0.08);
}

.jala-post-navigation__icon {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.jala-post-navigation__icon--previous {
  transform: rotate(180deg);
}

.jala-post-navigation__label {
  color: var(--color-grey-950);
  margin: 0;
  font-family: var(--h4_typography-font-family);
  font-size: var(--awb-typography4-font-size);
  font-style: var(--h4_typography-font-style);
  font-weight: var(--awb-typography4-font-weight);
  letter-spacing: var(--awb-typography4-letter-spacing);
  line-height: var(--awb-typography4-line-height);
  text-transform: var(--awb-typography4-text-transform);
}

.jala-post-navigation__label--mobile {
  display: none;
}

.jala-post-navigation--space-between .jala-post-navigation__link--next {
  margin-left: auto;
}

@media (max-width: 640px) {
  .jala-post-navigation__label--desktop {
    display: none;
  }

  .jala-post-navigation__label--mobile {
    display: block;
  }

  .jala-post-navigation__spacer {
    display: none;
  }

  .jala-post-navigation {
    align-items: stretch;
  }

  .jala-post-navigation__link {
    width: 100%;
  }

  .jala-post-navigation__link--next {
    justify-content: flex-end;
  }
}