/* Page override — à propos utilise --text (near-black) comme couleur de base */
.pdlr-page { color: var(--text); }


/* ── SECTIONS ── */
.pdlr-section { padding: 6rem 4rem; }

/* ── HISTOIRE ── */
.pdlr-histoire-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pdlr-histoire-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 1.25rem;
}
.pdlr-histoire-text p:last-child { margin-bottom: 0; }

.pdlr-histoire-img { position: relative; }

.pdlr-histoire-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.pdlr-histoire-placeholder {
  width: 100%;
  height: 480px;
  border-radius: 4px;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--teal);
  text-align: center;
  padding: 2rem;
}

.pdlr-histoire-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 96px;
  height: 96px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.pdlr-histoire-badge .badge-num {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}
.pdlr-histoire-badge .badge-txt {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
}

/* ── SAVOIR-FAIRE ── */
.pdlr-ap-savoir-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1rem;
}

.pdlr-ap-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 180px;
  margin: 0.5rem auto 0;
}
.pdlr-ap-divider-line { flex: 1; height: 1px; background: var(--white); opacity: 0.35; }
.pdlr-ap-divider-icon { color: var(--white); font-size: 1rem; }

.pdlr-savoir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.pdlr-savoir-card {
  background: var(--white);
  border: 1px solid rgba(13,34,51,0.1);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.5rem;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pdlr-savoir-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,34,51,0.09);
}
.pdlr-savoir-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.pdlr-savoir-card h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.pdlr-savoir-card p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
}

/* ── STATS ── */
.pdlr-ap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 3rem auto 0;
}
.pdlr-ap-stat {
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.pdlr-ap-stat:last-child { border-right: none; }
.pdlr-ap-stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.pdlr-ap-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  display: block;
}

/* ── CTA FINAL ── */
.pdlr-ap-cta {
  background: var(--navy);
  text-align: center;
  padding: 6rem 4rem;
}
.pdlr-ap-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
}
.pdlr-ap-cta p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.pdlr-ap-cta-btns { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pdlr-section { padding: 4rem 1.5rem; }
  .pdlr-histoire-layout { grid-template-columns: 1fr; gap: 3rem; }
  .pdlr-histoire-badge { display: none; }
  .pdlr-histoire-img img { height: auto; aspect-ratio: 1/1; }
  .pdlr-histoire-placeholder { height: auto; aspect-ratio: 1/1; }
  .pdlr-savoir-grid { grid-template-columns: 1fr 1fr; }
  .pdlr-ap-stats { grid-template-columns: repeat(2, 1fr); }
  .pdlr-engage-grid { grid-template-columns: 1fr; }
  .pdlr-ap-cta { padding: 4rem 1.5rem; }
}
@media (max-width: 600px) {
  .pdlr-section { padding: 2.5rem 1rem; }
  .pdlr-savoir-grid { grid-template-columns: 1fr; }
}
