.pdlr-ar-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* icône SVG dans le bandeau arrivages */
.pdlr-ar-notice svg { flex-shrink: 0; color: var(--gold); }


/* Variante d'eyebrow utilisée dans les titres de section (hors hero) */
.pdlr-eyebrow-section {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}


/* ── PHILOSOPHIE ── */
.pdlr-ar-philo-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.pdlr-ar-philo-text .pdlr-title { margin-bottom: 2rem; }
.pdlr-ar-philo-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.pdlr-ar-philo-text p:last-child { margin-bottom: 0; }

.pdlr-ar-philo-side {
  border-left: 2px solid rgba(42,127,111,0.2);
  padding-left: 2.5rem;
  margin-top: 0.5rem;
}
.pdlr-ar-philo-stat {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(13,34,51,0.06);
}
.pdlr-ar-philo-stat:last-child { border-bottom: none; padding-bottom: 0; }
.pdlr-ar-philo-stat-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pdlr-ar-philo-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── FAMILLES DE PRODUITS ── */
.pdlr-ar-familles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pdlr-ar-famille-card {
  background: var(--white);
  border: 1px solid rgba(13,34,51,0.08);
  border-top: 3px solid var(--teal);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pdlr-ar-famille-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,34,51,0.1);
}
.pdlr-ar-famille-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}
.pdlr-ar-famille-body { padding: 1.75rem; }
.pdlr-ar-famille-body h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.pdlr-ar-famille-body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── COMMENT SAVOIR ── */
.pdlr-ar-savoir {
  background: var(--cta);
  padding: 5rem 4rem;
  text-align: center;
}
.pdlr-ar-savoir-inner { max-width: 800px; margin: 0 auto; }
.pdlr-ar-savoir h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.pdlr-ar-savoir p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.pdlr-ar-savoir-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pdlr-ar-savoir-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s;
  text-align: left;
}
.pdlr-ar-savoir-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.5);
}
.pdlr-ar-savoir-btn svg { flex-shrink: 0; color: var(--gold); }
.pdlr-ar-savoir-btn span { display: flex; flex-direction: column; gap: 0.2rem; }
.pdlr-ar-savoir-btn strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.pdlr-ar-savoir-btn em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CTA ── */
.pdlr-ar-cta { background: var(--navy); }
.pdlr-ar-cta h2 { line-height: 1.2; }
.pdlr-ar-cta h2 em { font-style: italic; color: var(--gold); }
.pdlr-ar-cta p { color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pdlr-ar-philo-layout { grid-template-columns: 1fr; gap: 3rem; }
  .pdlr-ar-philo-side { border-left: none; border-top: 2px solid rgba(42,127,111,0.2); padding-left: 0; padding-top: 2rem; display: flex; flex-direction: row; gap: 0; justify-content: space-around; }
  .pdlr-ar-philo-stat { padding: 0 1.5rem; border-bottom: none; border-right: 1px solid rgba(13,34,51,0.06); align-items: center; text-align: center; }
  .pdlr-ar-philo-stat:last-child { border-right: none; }
  .pdlr-ar-familles-grid { grid-template-columns: 1fr; }
  .pdlr-ar-savoir { padding: 4rem 1.5rem; }
  .pdlr-ar-savoir-actions { flex-direction: column; align-items: stretch; }
}
@media (max-width: 600px) {
  .pdlr-ar-philo-side { flex-direction: column; align-items: flex-start; padding-top: 0; border-top: none; border-left: 2px solid rgba(42,127,111,0.2); padding-left: 1.5rem; }
  .pdlr-ar-philo-stat { padding: 1rem 0; border-right: none; border-bottom: 1px solid rgba(13,34,51,0.06); align-items: flex-start; text-align: left; }
  .pdlr-ar-familles-grid { grid-template-columns: 1fr; }
}
