.mignardise-page-nav {
  display: flex !important;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mignardise-page-nav {
  margin: 3rem auto 0 !important;
  background-color: #fff;
  border: 1px solid #000;
  padding: 3rem;

  display: flex !important;
  justify-content: space-between;
  flex-wrap: wrap;


  align-items: top;

  >span {
    text-align: center;
    white-space: nowrap;
	font-style: italic;
	font-size: var(--wp--preset--font-size--medium);
	  
	.title {
	  display: none;
	}
  }

  >span[rel="prev"] {
    align-items: flex-start;

    & a {
	  gap: 2rem;
      display:flex;
	  flex-direction: row-reverse;
    }
  }

  >span[rel="next"] {
    align-items: flex-end;

    & a {
	  gap: 1rem;
      display:flex;
	  flex-direction: row;
    }
  }

  .link {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    .title {
      font-weight: bold;
      text-transform: uppercase;
    }
  }
}