/*----------- Biographie -----------*/

.title-bar.menu {
  justify-content: center;

  li:first-of-type {
    display: flex;
  }
}

.content-display.bio {
  display: grid;
  grid-template-columns: 4fr 6fr 3fr;
  overflow-y: scroll;

  .images-display {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    img {
      display: block;
      height: auto;
      width: 100%;
    }
  }
}

.bio-caption {
  font-size: 1.4rem;
  line-height: calc(1.4rem * 1.2);
  text-align: justify;
  word-break: normal;
  hyphens: auto;
}

.bio-text-column {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 45ch;

  .bio-title {
    text-wrap: balance;
    font-size: 2.5rem;
    line-height: calc(2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
  }

  .bio-text {
    max-width: 60ch;
  }
}


/*----------- Contact -----------*/

.content-display.contact {
  display: grid;
  grid-template-columns: 1fr 2fr;
  overflow-y: scroll;

  .images-display {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    img {
      display: block;
      height: auto;
      width: 100%;
    }
  }
}