/* ==========================================================================
   Page À propos — Institut UWEZO (premium, aligné accueil)
   ========================================================================== */

.about-page {
  --about-ink: #111827;
  --about-muted: #6b7280;
  --about-line: #e5e7eb;
  --about-surface: #f8fafc;
  --about-accent: #BF5700;
  --about-accent-soft: rgba(191, 87, 0, 0.12);
  --about-radius: 1.15rem;
  --about-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  --about-section-y: clamp(2.25rem, 4.5vw, 3.5rem);
  --about-head-gap: clamp(1.15rem, 2.5vw, 1.65rem);
}

/* ---- HERO ---- */
.about-hero {
  position: relative;
  min-height: clamp(320px, 48vh, 460px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0f172a;
}

.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.65) 45%, rgba(15, 23, 42, 0.35) 100%),
    linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, transparent 50%);
}

.about-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
}

.about-hero__container {
  position: relative;
  z-index: 2;
  padding: clamp(2.75rem, 5vw, 3.5rem) 0 clamp(3rem, 5vw, 3.75rem);
}

.about-hero__breadcrumb {
  margin-bottom: 1rem;
}

.about-hero__breadcrumb .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.about-hero__breadcrumb .breadcrumb-item,
.about-hero__breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  text-decoration: none;
}

.about-hero__breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.about-hero__breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.65);
}

.about-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-hero__eyebrow i {
  color: #fdba74;
}

.about-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  max-width: 720px;
}

.about-hero__title em {
  font-style: normal;
  color: #fdba74;
}

.about-hero__lead {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 0 1.15rem;
}

.about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero__chips i {
  color: #fdba74;
  font-size: 0.78rem;
}

.about-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.about-hero__wave svg {
  display: block;
  width: 100%;
  height: 36px;
}

/* ---- Sections ---- */
.about-section {
  padding: var(--about-section-y) 0;
}

.about-section--muted {
  background: var(--about-surface);
}

.about-section--first {
  padding-top: clamp(1.75rem, 3vw, 2.35rem);
}

.about-section--cta {
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.about-section-head {
  max-width: 560px;
  margin: 0 auto var(--about-head-gap);
  text-align: center;
}

.about-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--about-accent);
  margin-bottom: 0.45rem;
}

.about-section-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--about-ink) !important;
  background: none !important;
  -webkit-text-fill-color: var(--about-ink) !important;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.about-section-desc {
  color: var(--about-muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

.about-section-title--left {
  text-align: left;
  margin-bottom: 0.65rem;
}

.about-history .lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--about-ink);
  margin-bottom: 0.65rem;
}

.about-history p {
  color: var(--about-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.65rem;
}

/* ---- Identification officielle (bento premium) ---- */
.about-page .uw-identite--full {
  max-width: 1080px;
  margin: 0 auto;
}

.about-page .uw-identite__bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.about-page .uw-identite__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--about-line);
  border-radius: calc(var(--about-radius) + 2px);
  padding: 0;
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.05);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-page .uw-identite__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--about-accent), #fdba74);
  opacity: 0.85;
}

.about-page .uw-identite__card--location::before {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.about-page .uw-identite__card--governance {
  grid-column: 1 / -1;
}

.about-page .uw-identite__card--governance::before {
  background: linear-gradient(90deg, #0f172a, #475569);
}

.about-page .uw-identite__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--about-shadow);
  border-color: rgba(191, 87, 0, 0.18);
}

.about-page .uw-identite__card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.35rem 1.35rem 0.85rem;
}

.about-page .uw-identite__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: var(--about-accent-soft);
  color: var(--about-accent);
  box-shadow: inset 0 0 0 1px rgba(191, 87, 0, 0.08);
}

.about-page .uw-identite__card-icon--blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.about-page .uw-identite__card-icon--slate {
  background: rgba(15, 23, 42, 0.08);
  color: #334155;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.about-page .uw-identite__card-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--about-muted);
  margin-bottom: 0.2rem;
}

.about-page .uw-identite__card-head h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--about-ink);
  margin: 0;
  letter-spacing: -0.02em;
}

.about-page .uw-identite__facts {
  list-style: none;
  margin: 0;
  padding: 0 1.35rem 1.35rem;
}

.about-page .uw-identite__fact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid #f1f5f9;
}

.about-page .uw-identite__fact:first-child {
  border-top: none;
  padding-top: 0.25rem;
}

.about-page .uw-identite__fact--highlight {
  background: linear-gradient(90deg, rgba(191, 87, 0, 0.06), transparent);
  margin: 0 -1.35rem;
  padding: 0.75rem 1.35rem;
  border-top-color: rgba(191, 87, 0, 0.12);
}

.about-page .uw-identite__fact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--about-accent);
  background: var(--about-accent-soft);
}

.about-page .uw-identite__fact--highlight .uw-identite__fact-icon {
  background: rgba(191, 87, 0, 0.18);
}

.about-page .uw-identite__fact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--about-muted);
  margin-bottom: 0.15rem;
}

.about-page .uw-identite__fact-value {
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--about-ink);
  line-height: 1.45;
}

.about-page .uw-identite__fact-value a {
  color: var(--about-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-page .uw-identite__fact-value a:hover {
  color: #9a4600;
  text-decoration: underline;
}

.about-page .uw-identite__card--governance .uw-identite__lead {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--about-ink);
  line-height: 1.5;
  margin: 0 1.35rem 0.65rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--about-accent);
}

.about-page .uw-identite__card--governance .uw-identite__text {
  font-size: 0.9rem;
  color: var(--about-muted);
  line-height: 1.65;
  margin: 0 1.35rem 1rem;
}

.about-page .uw-identite__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0 1.35rem 1.35rem;
}

.about-page .uw-identite__services li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
  background: var(--about-surface);
  border: 1px solid var(--about-line);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.about-page .uw-identite__services li i {
  color: var(--about-accent);
  font-size: 0.75rem;
}

.about-page .uw-identite__card:hover .uw-identite__services li {
  border-color: rgba(191, 87, 0, 0.15);
}

/* Panneau latéral (histoire) */
.about-panel {
  background: #fff;
  border: 1px solid var(--about-line);
  border-radius: calc(var(--about-radius) + 2px);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
  position: relative;
  overflow: hidden;
}

.about-panel--accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--about-accent), #fdba74);
}

.about-panel__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: var(--about-accent-soft);
  color: var(--about-accent);
  margin-bottom: 0.85rem;
}

.about-panel__tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--about-accent);
  background: var(--about-accent-soft);
  margin-bottom: 0.5rem;
}

.about-panel__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--about-ink);
  margin-bottom: 0.85rem;
}

.about-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-panel__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--about-muted);
  border-bottom: 1px solid #f1f5f9;
}

.about-panel__list li:last-child {
  border-bottom: none;
}

.about-panel__list li i {
  color: var(--about-accent);
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* Mission & Vision */
.mission-card,
.vision-card {
  background: #fff;
  padding: 1.5rem 1.35rem;
  border-radius: var(--about-radius);
  border: 1px solid var(--about-line);
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.04);
  text-align: left;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.mission-card::before {
  background: linear-gradient(90deg, var(--about-accent), #fdba74);
}

.vision-card::before {
  background: linear-gradient(90deg, #0f172a, #64748b);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--about-shadow);
  border-color: rgba(191, 87, 0, 0.2);
}

.mission-icon,
.vision-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  background: var(--about-accent-soft);
  color: var(--about-accent);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--about-ink);
  margin-bottom: 0.5rem;
}

.mission-card p,
.vision-card p,
.mission-card div,
.vision-card div {
  color: var(--about-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Fondateur */
.founder-image-wrapper {
  position: relative;
}

.founder-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid rgba(191, 87, 0, 0.15);
  border-radius: calc(var(--about-radius) + 4px);
  z-index: 0;
  pointer-events: none;
}

.founder-image {
  width: 100%;
  border-radius: calc(var(--about-radius) + 4px);
  box-shadow: var(--about-shadow);
  position: relative;
  z-index: 2;
  display: block;
}

.founder-image-bg {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(191, 87, 0, 35%), rgba(15, 23, 42, 0.15));
  border-radius: calc(var(--about-radius) + 4px);
  z-index: 1;
}

.founder-content .lead {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--about-accent) !important;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--about-accent);
}

.founder-content p {
  color: var(--about-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.founder-name {
  font-weight: 700;
  color: var(--about-ink);
  margin-bottom: 0.15rem;
}

.founder-role {
  font-weight: 500;
  color: var(--about-muted);
  font-size: 0.9rem;
}

/* Équipe */
.team-card {
  border-radius: var(--about-radius);
  overflow: hidden;
  border: 1px solid var(--about-line);
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--about-shadow);
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.5) 55%, transparent 100%);
  color: #fff;
  padding: 1.25rem 1.15rem;
  transform: translateY(calc(100% - 76px));
  transition: transform 0.35s ease;
}

.team-card:hover .team-overlay {
  transform: translateY(0);
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.team-role {
  color: #fdba74;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.team-details {
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}

.team-card:hover .team-details {
  opacity: 1;
}

.team-bio {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.85rem;
}

.team-social {
  display: flex;
  gap: 0.5rem;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.team-social a:hover {
  background: var(--about-accent);
  color: #fff;
}

/* Timeline */
.history-section .timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.history-section .timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--about-line), var(--about-accent), var(--about-line));
  transform: translateX(-50%);
}

.timeline-item {
  padding: 0.5rem 2.25rem;
  position: relative;
  width: 50%;
}

.timeline-left { left: 0; }
.timeline-right { left: 50%; }

.timeline-content {
  padding: 1.25rem 1.15rem;
  background: #fff;
  position: relative;
  border-radius: var(--about-radius);
  border: 1px solid var(--about-line);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-4px);
  box-shadow: var(--about-shadow);
}

.timeline-content .date {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--about-accent-soft);
  color: var(--about-accent);
  position: static;
}

.timeline-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--about-accent);
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--about-accent);
}

.timeline-left .timeline-icon { right: -20px; }
.timeline-right .timeline-icon { left: -20px; }

.timeline-content h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--about-ink);
}

.timeline-content p,
.timeline-content div {
  font-size: 0.88rem;
  color: var(--about-muted);
  line-height: 1.55;
  margin: 0;
}

.timeline-content::before,
.timeline-left .timeline-content::before,
.timeline-right .timeline-content::before {
  display: none;
}

/* Filières (about) */
.about-filiere-card {
  background: #fff;
  border-radius: var(--about-radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--about-line);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-filiere-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--about-accent), #fdba74);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.about-filiere-card:hover::before {
  opacity: 1;
}

.about-filiere-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--about-shadow);
  border-color: rgba(191, 87, 0, 0.2);
}

.about-filiere-card .section-card-icon {
  font-size: 1.15rem;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--about-accent-soft);
  color: var(--about-accent);
  margin-bottom: 0.85rem;
}

.about-filiere-card .section-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--about-ink);
  margin-bottom: 0.45rem;
}

.about-filiere-card .section-card-description {
  color: var(--about-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.about-filiere-card .section-card-link {
  color: var(--about-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

.about-filiere-card .section-card-link:hover {
  text-decoration: underline;
}

/* Galerie */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--about-radius);
  border: 1px solid var(--about-line);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
  height: 240px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  color: #fff;
}

.gallery-card-overlay h5 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

a[data-lightbox] {
  display: block;
  height: 100%;
}

/* Valeurs */
.value-card {
  background: #fff;
  padding: 1.35rem 1.15rem;
  border-radius: var(--about-radius);
  text-align: center;
  border: 1px solid var(--about-line);
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--about-accent), #fdba74);
  border-radius: 3px 3px 0 0;
  transition: transform 0.3s ease;
}

.value-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--about-shadow);
}

.value-icon {
  font-size: 1.25rem;
  color: var(--about-accent);
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--about-accent-soft);
}

.value-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--about-ink);
  margin-bottom: 0.35rem;
}

.value-card p,
.value-card div {
  font-size: 0.88rem;
  color: var(--about-muted);
  line-height: 1.55;
  margin: 0;
}

/* CTA */
.about-cta {
  background: var(--about-ink);
  border-radius: calc(var(--about-radius) + 4px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(191, 87, 0, 22%) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta__title {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 800;
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 0.35rem;
}

.about-cta__text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin: 0;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--about-accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(191, 87, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(191, 87, 0, 0.38);
  color: #fff !important;
}

/* Responsive */
@media (max-width: 767.98px) {
  .about-page .uw-identite__bento {
    grid-template-columns: 1fr;
  }
  .about-page .uw-identite__card--governance {
    grid-column: auto;
  }
  .about-hero {
    min-height: auto;
  }
  .about-hero__container {
    padding: 2.5rem 0 2.75rem;
  }
  .about-section {
    padding: 2rem 0;
  }
  .history-section .timeline::before {
    left: 18px;
  }
  .timeline-item {
    width: 100%;
    padding: 0.35rem 0 0.35rem 2.75rem;
    left: 0 !important;
  }
  .timeline-icon {
    left: 0 !important;
    right: auto !important;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .team-card img {
    height: 300px;
  }
  .gallery-card {
    height: 210px;
  }
}

@media (max-width: 991.98px) {
  .about-cta .row {
    text-align: center !important;
  }
  .about-cta__btn {
    margin-top: 0.85rem;
  }
}
