
/* ===== ABOUT PAGE – Design deux colonnes, Henry 17px, responsive ===== */
/* Thème clair : bordeaux | Thème dark : cream */
p{
  padding-left: 10px;
}
.about-page {
  --about-text: var(--oasis-bordeaux);
}


body.dark-mode .about-page {
  --about-text: var(--oasis-cream);
}

.about-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-page__grid {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  row-gap: 60px;
  column-gap: 40px;
  align-items: start;
}

/* Ligne 1 : titre À propos (col 1) + contenu (col 2) */
.about-page__nav-title:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}
.about-page__content--propos {
  grid-column: 2;
  grid-row: 1;
}

/* Ligne 2 : titre Collaborations (col 1) + contenu (col 2) */
.about-page__nav-title:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
}
.about-page__content--collaborations {
  grid-column: 2;
  grid-row: 2;
}

.about-page__nav-title {
  font-family: "Henry", serif;
  font-size: 17px;
  font-weight: inherit;
  font-style: italic;
  color: var(--about-text);
  margin: 0;
  line-height: 1.3;
  padding-top: 0.15em;
  text-transform: capitalize;
  letter-spacing: -0px;
}

.about-page__content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.about-page__block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-page__subtitle {
  font-family: "Henry", serif;
  font-size: 17px;
  font-weight: inherit;
  color: var(--about-text);
  margin: 0;
  line-height: 1.3;
  text-transform: capitalize;
  letter-spacing: -0px;
}

.about-page__text {
  font-family: "Henry", serif;
  font-size: 17px;
  font-weight: inherit;
  font-style: normal;
  color: var(--about-text);
  margin: 0;
  line-height: 1.1em;
  
}


.about-page__text--intro {
  font-style: normal;
}

.about-page__credits {
  font-family: "Henry", serif;
  font-size: 17px;
  font-weight: inherit;
  font-style: italic;
  color: var(--about-text);
  margin: 0;
  line-height: 1.1em;
}

.about-page__link {
  width: fit-content;
  font-family: "Henry", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--about-text);
  text-decoration: none;
  margin-top: clamp(8px, 1vw, 16px);
  display: inline-block;
  position: relative;
  transition: color 0.35s ease, opacity 0.35s ease;
}

/* Ligne animée au hover (smooth) */
.about-page__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.about-page .about-page__link:hover {
  color: var(--about-text) !important;
  opacity: 0.88;
}

.about-page .about-page__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Responsive : 2 colonnes – h2 col 1, contenu col 2 (mobile à partir de 1125px) */
@media (max-width: 1125px) {

  .about-page__grid {
    grid-template-columns: minmax(50px, 90px) 1fr;
    gap: clamp(24px, 5vw, 32px) clamp(16px, 3vw, 24px);
  }

  .about-page__nav-title:nth-of-type(1),
  .about-page__nav-title:nth-of-type(2) {
    grid-column: 1;
    margin-top: 0;
    padding-top: 0;
  }

  .about-page__nav-title {
    font-size: clamp(15px, 4vw, 17px);
  }


  .about-page__content--propos,
  .about-page__content--collaborations {
    grid-column: 2;
    margin-top: 0;
  }

  .about-page__content--collaborations {
    margin-top: 0;
  }

  .about-page__subtitle {
    font-size: clamp(15px, 4vw, 17px);
  }

  .about-page__text,
  .about-page__text--intro {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 20px;
  }

  .about-page__credits {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    
  }

  .about-page__link {
    font-size: clamp(15px, 4vw, 17px);
    margin-top: clamp(12px, 2vw, 20px);
    display: inline-flex;
    align-items: center;
  }
}


/* Section à propos (695528b3643d271eb5c515e7) : bloc image en ratio 4/5 */
section[data-section-id="695528b3643d271eb5c515e7"] .fe-block-8b6bcc35522a505e9f59 {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

section[data-section-id="695528b3643d271eb5c515e7"] .fe-block-8b6bcc35522a505e9f59 .fluid-image-container,
section[data-section-id="695528b3643d271eb5c515e7"] .fe-block-8b6bcc35522a505e9f59 .content-fill {
  height: 100%;
  width: 100%;
}

section[data-section-id="695528b3643d271eb5c515e7"] .fe-block-8b6bcc35522a505e9f59 .content-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}