/* =========================================================
   PAGE A PROPOS
   ========================================================= */

.about-page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about-hero {
  flex: 1;
  padding: 36px 0 56px;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.7fr);
  gap: 40px;
  padding-top: clamp(0px, 5vw, 40px);
  align-items: start;
}

/* =========================================================
   COLONNE CONTENU
   ========================================================= */

.about-hero__content {
  min-width: 0;
}

.about-hero__eyebrow {
  margin: 0 0 14px;
  color: rgb(var(--color-brand));
  font-size: var(--contact-eyebrow-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Le h1 est masqué via .visually-hidden définie dans base.css */
.about-hero__title {
  margin: 0;
}

.about-hero__lead {
  max-width: 68ch;
  margin: 0;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  line-height: 1.7;
  font-weight: 600;
  color: rgb(var(--color-text));
  text-wrap: pretty;
}

.about-hero__text {
  max-width: 72ch;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgb(var(--color-text));
  text-wrap: pretty;
}

/* =========================================================
   COLONNE DROITE
   ========================================================= */

.about-hero__aside {
  position: sticky;
  top: 110px;
  min-width: 0;
}

/* =========================================================
   CTA
   ========================================================= */

.about-hero__actions {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.hero-card-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  width: 220px;
  min-height: 84px;
  padding: 14px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  will-change: transform;
}

.hero-card-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-dropdown);
  text-decoration: none;
}

.hero-card-link--primary {
  --arrow-color: rgb(255 255 255);
  color: rgb(255 255 255);
  background: rgb(var(--color-brand));
  border: 1px solid rgb(255 255 255 / 0.14);
}

.hero-card-link__content {
  display: block;
  min-width: 0;
}

.hero-card-link__eyebrow {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.92;
}

.hero-card-link__title {
  display: block;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-card-link__icon {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.hero-card-link__arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-top: 3px solid var(--arrow-color);
  border-right: 3px solid var(--arrow-color);
}

.hero-card-link__arrow::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 22px;
  height: 3px;
  background: var(--arrow-color);
  transform: rotate(-45deg);
  transform-origin: left center;
}

/* =========================================================
   ETATS INTERACTIFS
   ========================================================= */

@media (hover: none), (pointer: coarse) {
  .hero-card-link:hover {
    transform: none;
    box-shadow: var(--shadow-card);
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-hero__aside {
    position: static;
  }

  .about-hero__actions {
    justify-content: flex-start;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding: 24px 0 36px;
  }

  .about-hero__lead {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .about-hero__text {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .about-hero__actions {
    margin-top: 8px;
  }

  .hero-card-link {
    min-height: 78px;
  }

  .hero-card-link__title {
    font-size: 1.12rem;
  }
}

@media (max-width: 480px) {
  .about-hero__eyebrow {
    margin-bottom: 12px;
  }

  .about-hero__lead,
  .about-hero__text {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .hero-card-link {
    width: 100%;
    max-width: 280px;
    padding: 12px;
  }

  .hero-card-link__eyebrow {
    font-size: 0.9rem;
  }

  .hero-card-link__title {
    font-size: 1.04rem;
    line-height: 1.12;
  }
}