.single-artiste {
  padding-top: 40px;
}

/* =========================
   CONTAINER
========================= */

.artiste-container {
  max-width: 1450px;

  margin: 0 auto;

  padding: 0 70px 120px;
}

/* =========================
   HEADER
========================= */

.artiste-header {
  width: 100%;

  margin-bottom: 120px;
}

.artiste-title {
  font-family: "Roboto Slab", serif;

  font-size: 72px;

  font-weight: 700;

  line-height: 0.95;

  margin-bottom: 55px;

  color: #111;

  max-width: 1100px;

  word-break: normal;

  overflow-wrap: break-word;
}

/* =========================
   BIO
========================= */

.artiste-bio {
  width: 100%;

  max-width: 1400px;

  font-size: 20px;

  line-height: 1.9;

  color: #111;
}

.artiste-bio p {
  margin-bottom: 34px;

  max-width: 1350px;
}

/* =========================
   OEUVRES
========================= */

.artiste-oeuvres {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 70px 40px;

  max-width: 1200px;

  margin: 0 auto;
}

/* =========================
   ITEM
========================= */

.oeuvre-item {
  display: block;

  text-decoration: none;

  color: #111;

  position: relative;
}

/* =========================
   IMAGE
========================= */

.oeuvre-image {
  overflow: hidden;
}

.oeuvre-image img {
  width: 100%;

  height: 380px;

  object-fit: cover;

  display: block;

  transition: opacity 0.3s ease;

  pointer-events: none;
}

.oeuvre-item:hover img {
  opacity: 0.9;
}

/* =========================
   INFOS
========================= */

.oeuvre-infos {
  padding-top: 18px;

  text-align: center;
}

.oeuvre-infos h2 {
  font-family: "Roboto Slab", serif;

  font-size: 18px;

  font-weight: 400;

  margin: 0 0 5px;

  color: #111;
}

.oeuvre-infos p {
  font-size: 14px;

  color: #777;

  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 1100px) {
  /* AJOUT IMPORTANT */
  .single-artiste {
    padding-top: 115px;
  }

  .artiste-container {
    padding: 0 32px 90px;
  }

  .artiste-header {
    margin-bottom: 55px;
  }

  .artiste-title {
    font-size: 58px;

    line-height: 0.95;

    margin-bottom: 40px;

    max-width: 100%;
  }

  .artiste-bio {
    font-size: 17px;

    line-height: 1.8;
  }

  .artiste-oeuvres {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .oeuvre-image img {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .single-artiste {
    padding-top: 135px;
  }

  .artiste-container {
    padding: 0 30px 70px;
  }

  .artiste-title {
    font-size: 46px;

    line-height: 0.95;

    margin-bottom: 34px;
  }

  .artiste-bio {
    font-size: 16px;

    line-height: 1.8;
  }
}

@media screen and (max-width: 480px) {
  .single-artiste {
    padding-top: 145px;
  }

  .artiste-container {
    padding: 0 24px 60px;
  }

  .artiste-title {
    font-size: 42px;

    line-height: 0.95;
  }
}
