  body {
    font-family: 'IBM Plex Sans', sans-serif;
  }

    
    .ratio-box {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 12px;
    }

    .ratio-box img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .breadcrumb-nav {
      padding: 1rem 0;
      border-bottom: 1px solid #eee;
      font-family: 'IBM Plex Sans', sans-serif;

      margin-bottom: 95px;
    }

    .breadcrumb {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      font-size: 10px;
      color: #616161;
      font-weight: 300;
    }

    .breadcrumb li + li::before {
      content: ">";
      margin: 0 8px;
      color: #878787;
    }

    .breadcrumb a {
      color: #878787;
      text-decoration: none;
      transition: color 0.2s;
      font-weight: 200;
    }

    .breadcrumb a:hover {
      color: #FFE148;
    }


    .creation-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.creation-meta {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 0.95rem;
}

.creation-meta li {
  margin-bottom: 0.4rem;
}

.creation-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.creation-image-wrapper {
  max-width: 420px;
  margin: auto;
  aspect-ratio: 1 / 1;
  padding: 1rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: right;
}

.creation-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}


    /* Ratios fixes via padding-top */
    .square {
      padding-top: 100%; /* 1:1 */
    }

    .wide {
      padding-top: 50%; /* 2:1 */
    }

    .tall {
      padding-top: 200%; /* 1:2 */
    }

    /* Responsive spacing */
    .gap-4 > * + * {
      margin-top: 1.5rem;
    }

    @media (min-width: 768px) {
      .gap-4 > * + * {
        margin-top: 0;
      }
    }

    .img-grille {
        width: 1250px;
        height: auto; /* ou height: 200px si tu veux une taille fixe */
    }