/* =========================
   PAGE ARTISTE
========================= */

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

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

.artiste-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 70px 120px;
}

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

.artiste-header {
  width: 100%;
  margin-bottom: 120px;
}

.artiste-title {
  max-width: 1100px;
  margin: 0 0 40px;

  font-family: "Roboto Slab", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;

  color: #111;

  overflow-wrap: break-word;
  word-break: normal;
}

/* =========================
   BIOGRAPHIE
========================= */

.artiste-bio {
  width: 100%;
  max-width: 1400px;

  font-size: 16px !important;
  line-height: 1.5;

  color: #111;
}

.artiste-bio p {
  max-width: 1350px;
  margin: 0 0 20px;
}

.artiste-bio p:last-child {
  margin-bottom: 0;
}

/* =========================
   GRILLE DES OEUVRES
========================= */

.artiste-oeuvres {
  display: grid;

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

  gap: 70px 40px;

  max-width: 1200px;

  margin: 0 auto;
}

/* =========================
   OEUVRE
========================= */

.oeuvre-item {
  position: relative;

  display: block;

  color: #111;
  text-decoration: none;
}

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

.oeuvre-image {
  overflow: hidden;
}

.oeuvre-image img {
  display: block;

  width: 100%;
  height: 380px;

  object-fit: cover;

  pointer-events: none;

  transition: opacity 0.3s ease;
}

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

/* =========================
   INFORMATIONS OEUVRE
========================= */

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

  text-align: center;
}

.oeuvre-infos h2 {
  margin: 0 0 5px;

  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 400;

  color: #111;
}

.oeuvre-infos p {
  margin: 0;

  font-size: 14px;

  color: #777;
}

/* =========================
   TABLETTE / MOBILE
========================= */

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

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

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

  .artiste-title {
    max-width: 100%;

    margin-bottom: 30px;

    font-size: 38px;
    line-height: 1.1;
  }

  .artiste-bio {
    font-size: 16px !important;
    line-height: 1.5;
  }

  .artiste-bio p {
    margin-bottom: 18px;
  }

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

    gap: 50px;
  }

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

/* =========================
   MOBILE
========================= */

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

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

  .artiste-title {
    margin-bottom: 26px;

    font-size: 32px;
    line-height: 1.1;
  }

  .artiste-bio {
    font-size: 15px !important;
    line-height: 1.5;
  }

  .artiste-bio p {
    margin-bottom: 16px;
  }
}

/* =========================
   PETIT MOBILE
========================= */

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

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

  .artiste-title {
    margin-bottom: 24px;

    font-size: 28px;
    line-height: 1.1;
  }

  .artiste-bio p {
    margin-bottom: 16px;
  }
}
