/* ===== COMPONENTS.CSS - Shared components across multiple pages ===== */

/* ===== BUTTONS ===== */
.btn {
  --btn-height: 48px;
  --btn-chevron-width: 26px;
  --btn-border-color: rgba(255,255,255,0.6);
  --btn-text-color: var(--text-light);
  --btn-fill-color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: 0 1.5rem;
  padding-right: calc(1rem + var(--btn-chevron-width));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  background: transparent;
  color: var(--btn-text-color);
  transition: color 0.4s ease;
  white-space: nowrap;
  width: fit-content;
  border: none;
  font-family: 'Plaax Ney', sans-serif;
}

.btn .btn-shape { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.btn .btn-shape svg { width: 100%; height: 100%; overflow: visible; }
.btn .btn-shape path { fill: none; stroke: var(--btn-border-color); stroke-width: 1; vector-effect: non-scaling-stroke; stroke-linejoin: miter; transition: stroke 0.4s ease; }
.btn .btn-fill { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.btn .btn-fill svg { width: 100%; height: 100%; overflow: visible; }
.btn .btn-fill path { fill: var(--btn-fill-color); clip-path: inset(0 100% 0 0); transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s; }
.btn > span:not(.btn-shape):not(.btn-fill):not(.btn-chevron-out) { position: relative; z-index: 2; }
.btn:hover .btn-fill path { clip-path: inset(0 0 0 0); transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.btn:hover .btn-shape path { stroke: var(--btn-fill-color); }
.btn:hover { box-shadow: none; }
.btn .btn-chevron-out { position: absolute; right: 0; top: 0; width: var(--btn-chevron-width); height: var(--btn-height); opacity: 0; transform: translateX(0); transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; z-index: 3; }
.btn .btn-chevron-out svg { width: 100%; height: 100%; }
.btn .btn-chevron-out path { fill: var(--btn-fill-color); }
.btn:hover .btn-chevron-out { opacity: 1; transform: translateX(100%); transition: opacity 0.2s ease 0.35s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.35s; }

/* Button variants */
.btn--outline-dark {
  --btn-text-color: var(--text-dark);
  --btn-border-color: var(--text-dark);
  --btn-fill-color: var(--accent);
}
.btn--outline-dark .btn-shape path { stroke: var(--text-dark); }
.btn--outline-dark:hover { color: var(--text-light); }
.btn--outline-dark:hover .btn-shape path { stroke: var(--accent); }

.btn--light-outline {
  --btn-text-color: var(--text-light);
  --btn-border-color: var(--text-light);
  --btn-fill-color: var(--text-light);
}
.btn--light-outline .btn-shape path { fill: none; stroke: var(--text-light); }
.btn--light-outline .btn-fill path { fill: var(--text-light); }
.btn--light-outline .btn-chevron-out path { fill: var(--text-light); }
.btn--light-outline:hover { color: var(--accent); }
.btn--light-outline:hover .btn-shape path { stroke: var(--text-light); }
.btn--light-outline:hover .btn-chevron-out svg path { fill: var(--text-light); }

.btn--dark { --btn-text-color: var(--text-light); --btn-fill-color: var(--text-light); }
.btn--dark .btn-shape path { fill: var(--bg-dark); stroke: var(--bg-dark); }
.btn--dark .btn-fill { z-index: 1; }
.btn--dark .btn-fill path { fill: var(--text-light); }
.btn--dark .btn-chevron-out path { fill: var(--text-light); }
.btn--dark:hover { color: var(--bg-dark); }
.btn--dark:hover .btn-shape path { stroke: var(--text-light); }
.btn--dark:hover .btn-chevron-out svg path { fill: var(--text-light); }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 50vh;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 9rem 4rem 6rem;
}
.page-hero--tall {
  height: 100vh;
  min-height: auto;
  align-items: center;
  padding: 0;
  padding-top: 80px;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  opacity: 0.45; filter: grayscale(100%);
}
.page-hero__bg-blur {
  position: absolute; inset: 0;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
}
.page-hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.45) 50%, rgba(10,22,40,0.55) 100%);
}
.page-hero__chevron-bg {
  position: absolute; top: 50%; right: 5%;
  transform: translateY(-50%);
  width: 500px; height: 1000px;
  opacity: 0.06; z-index: 1;
}
.page-hero__chevron-bg path { stroke: var(--accent); stroke-width: 3; fill: none; }
.page-hero__content {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto; width: 100%;
}
.page-hero--tall .page-hero__content {
  padding: 0 6rem; max-width: 800px; margin: 0;
  width: auto;
}
.page-hero__title {
  font-family: 'Plaax Ney', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-hero__label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.page-hero--tall .page-hero__label { margin-bottom: 2rem; }
.page-hero__label-line { width: 40px; height: 1px; background: var(--accent); }
.page-hero__label-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); }
.page-hero__text { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 600px; }
.page-hero--tall .page-hero__text { line-height: 1.8; margin-bottom: 1.25rem; max-width: 650px; }
.page-hero__text--highlight { color: var(--text-light); font-weight: 600; }
.page-hero__subtitle {
  font-family: 'Plaax Ney', sans-serif; font-style: oblique;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 400;
  line-height: 1.4; color: var(--accent); margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .page-hero { padding: 7rem 1.5rem 4rem; }
  .page-hero__chevron-bg { display: none; }
  .page-hero--tall { height: auto; min-height: 70vh; }
  .page-hero--tall .page-hero__content { padding: 8rem 1.5rem 4rem; }
}
@media (max-width: 480px) {
  .page-hero { padding: 7rem 1rem 4rem; min-height: 40vh; }
  .page-hero__label { gap: 0.5rem; }
}

/* ===== DETAIL PAGES — Shared between equipe-detail & portefeuille-detail ===== */
.member-hero, .company-hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
  padding: 9rem 4rem 4rem;
}
.member-hero__deco, .company-hero__deco {
  position: absolute; top: -10%; right: -2%;
  width: 700px; height: 900px;
  opacity: 0.14; z-index: 0; pointer-events: none;
}
.member-hero__deco path, .company-hero__deco path {
  stroke: var(--abenex-blue); stroke-width: 2.5; fill: none;
}
.member-hero__back, .company-hero__back {
  position: absolute; top: 7rem; left: 4rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.3s ease;
}
.member-hero__back:hover, .company-hero__back:hover { color: var(--text-light); }
.member-hero__back svg, .company-hero__back svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.member-hero__back:hover svg, .company-hero__back:hover svg { transform: translateX(-3px); }
.member-hero__title, .company-hero__title {
  font-family: 'Plaax Ney', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 1.25rem;
  color: var(--text-light);
}
.member-hero__badges, .company-hero__badges {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.member-hero__badge, .company-hero__badge {
  padding: 0.4rem 1rem; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light);
}
.member-blue-band, .company-blue-band { background: var(--abenex-blue); height: 6px; }

.member-detail, .company-detail {
  background: var(--bg-cream); color: var(--text-dark);
}
.member-detail__inner, .company-detail__inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 3rem; align-items: start;
}
.member-detail__body {
  padding-bottom: 8rem;
}
.member-detail__body h2, .company-detail__body h2 {
  font-size: 1.4rem; font-weight: 700;
  margin: 2rem 0 0.75rem; line-height: 1.3;
}
.member-detail__body h2:first-child, .company-detail__body h2:first-child { margin-top: 0; }
.member-detail__body p, .company-detail__body p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--text-muted-dark); margin-bottom: 1.25rem;
}
.member-detail__body strong, .company-detail__body strong { color: var(--text-dark); font-weight: 700; }
.member-detail__body ul, .member-detail__body ol,
.company-detail__body ul, .company-detail__body ol {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--text-muted-dark);
  margin: 0 0 1.25rem; padding-left: 1.25em;
}
.member-detail__body li, .company-detail__body li { margin-bottom: 0.4rem; }

.member-sidebar, .company-sidebar {
  background: #FFFFFF; border: 1px solid rgba(0,0,0,0.08);
  padding: 2rem; position: sticky; top: 80px;
}
.member-sidebar__title, .company-sidebar__title {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent); margin-bottom: 1.5rem; font-weight: 700;
}
.member-sidebar__item, .company-sidebar__item {
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.member-sidebar__item:last-child, .company-sidebar__item:last-child {
  margin-bottom: 0; padding-bottom: 0; border-bottom: none;
}
.member-sidebar__label, .company-sidebar__label {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-muted-dark); margin-bottom: 0.3rem; font-weight: 700;
}
.member-sidebar__value, .company-sidebar__value {
  font-size: 0.95rem; color: var(--text-dark); font-weight: 400; line-height: 1.4;
}
.member-sidebar__link, .company-sidebar__link {
  font-size: 0.85rem; color: var(--accent); text-decoration: none;
  font-weight: 700; display: inline-flex; align-items: center;
  gap: 0.4rem; transition: color 0.3s ease;
}
.member-sidebar__link:hover, .company-sidebar__link:hover { color: var(--text-dark); }
.member-sidebar__link svg, .company-sidebar__link svg { width: 12px; height: 12px; transition: transform 0.3s ease; }
.member-sidebar__link:hover svg, .company-sidebar__link:hover svg { transform: translateX(3px); }

@media (max-width: 1024px) {
  .member-hero, .company-hero { padding: 7rem 4rem 0; }
  .member-hero__back, .company-hero__back { top: 5rem; }
  .member-hero__deco, .company-hero__deco { display: none; }
  .member-detail, .company-detail { padding: 4rem; }
  .member-detail__inner, .company-detail__inner { grid-template-columns: 1fr; }
  .member-sidebar, .company-sidebar { margin-top: 0; }
}
@media (max-width: 768px) {
  .member-hero, .company-hero { padding: 7rem 2rem 0; }
  .member-hero__back, .company-hero__back { left: 2rem; }
  .member-detail, .company-detail { padding: 4rem 2rem; }
}
@media (max-width: 480px) {
  .member-hero, .company-hero { padding: 6rem 1rem 0; }
  .member-hero__back, .company-hero__back { top: 5rem; left: 1rem; }
  .member-detail, .company-detail { padding: 3rem 1rem; }
}

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }
.split-section__image { position: relative; overflow: hidden; }
.split-section__image img { width: 100%; height: 100%; object-fit: cover; }
.split-section__image--chevron-clip {
  clip-path: polygon(0 0, 0 0, 0 50%, 0 100%, 0 100%);
  position: relative; z-index: 1;
}
.split-section__image--chevron-clip-left {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%, 100% 50%);
  position: relative; z-index: 1;
}
.split-section__content {
  position: relative; padding: 6rem;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
}
.split-section__content--dark { background: var(--bg-dark); color: var(--text-light); }
.split-section__content--cream { background: var(--bg-cream); color: var(--text-dark); }
.split-section__content--cream .split-section__text { color: var(--text-muted-dark); }
.split-section__content--cream .split-section__title { color: var(--text-dark); }
.split-section__label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.split-section__label-line { width: 40px; height: 1px; background: var(--abenex-orange); }
.split-section__label-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--abenex-orange); }
.split-section__title { margin-bottom: 1.5rem; }
.split-section__text {
  color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px;
  font-size: 1.125rem; line-height: 1.8;
}
.split-section__text strong { color: var(--text-light); font-weight: 700; }
.split-section__logos { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.split-section__logos img { height: 55px; filter: grayscale(1) invert(1); opacity: 0.7; transition: opacity 0.3s; }
.split-section__logos img:hover { opacity: 1; }

@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section__image { height: 50vh; }
  .split-section__image--chevron-clip,
  .split-section__image--chevron-clip-left { clip-path: none !important; }
  .split-section__content { padding: 4rem 2rem; }
}
@media (max-width: 768px) {
  .split-section { min-height: auto; }
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background: var(--bg-dark);
  padding: 8rem 4rem;
  overflow: hidden;
  text-align: center;
}

.cta-section__pattern {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  pointer-events: none;
}

.cta-section__pattern svg {
  width: 120px;
  height: 240px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  opacity: 0;
  transform: translateX(var(--tx, 0)) scale(var(--s, 0.8));
}

.cta-section--chevrons-visible .cta-section__pattern { gap: 50px; opacity: 0.15; }
.cta-section--chevrons-visible .cta-section__pattern svg { opacity: 1; width: 200px; height: 400px; }
.cta-section--chevrons-visible .cta-section__pattern svg path { stroke: var(--text-light); stroke-width: 1; fill: none; }
.cta-section--chevrons-visible .cta-section__pattern svg:nth-child(1) { transform: translateX(-150px) scale(0.8); }
.cta-section--chevrons-visible .cta-section__pattern svg:nth-child(2) { transform: translateX(-80px) scale(0.85); }
.cta-section--chevrons-visible .cta-section__pattern svg:nth-child(3) { transform: translateX(0) scale(0.9); }
.cta-section--chevrons-visible .cta-section__pattern svg:nth-child(4) { transform: translateX(80px) scale(0.85); }
.cta-section--chevrons-visible .cta-section__pattern svg:nth-child(5) { transform: translateX(150px) scale(0.8); }

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__title {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: scale(0.92);
}

.cta-section__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: scale(0.92);
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

@media (max-width: 768px) {
  .cta-section { padding: 5rem 1.5rem; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}

/* ===== ARTICLE HERO ===== */
.article-hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 9rem 4rem 10rem;
}

.article-hero__chevron-bg {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 500px;
  height: 1000px;
  opacity: 0.06;
  z-index: 0;
}

.article-hero__chevron-bg path {
  stroke: var(--accent);
  stroke-width: 3;
  fill: none;
}

.article-hero__photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: grayscale(100%);
  z-index: 0;
}

.article-hero__photo-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

.article-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.45) 50%, rgba(10, 22, 40, 0.55) 100%);
  z-index: 1;
}

.article-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.article-hero__back {
  position: absolute;
  top: 7rem;
  left: 4rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-hero__back:hover { color: var(--text-light); }

.article-hero__back svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.article-hero__back:hover svg { transform: translateX(-3px); }

.article-hero__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-hero__label-line {
  width: 40px;
  height: 1px;
  background: var(--abenex-orange);
}

.article-hero__label-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--abenex-orange);
}

.article-hero__title {
  font-family: 'Plaax Ney', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.article-hero__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.article-hero__date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .article-hero { padding: 7rem 1.5rem 8rem; }
  .article-hero__back { top: 5.5rem; left: 1.5rem; }
}

/* ===== ARTICLE BODY ===== */
.article-section {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 0 4rem 6rem;
}

.article-section__inner {
  max-width: 780px;
  margin: 0 auto;
}

.article-section__featured-image {
  margin-top: -8rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.article-section__featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--bg-cream);
}

.article-section__body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.article-section__body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted-dark);
  margin-bottom: 1.5rem;
}

.article-section__body a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s;
}

.article-section__body a:hover { color: var(--text-dark); }

.article-section__body strong {
  color: var(--text-dark);
  font-weight: 700;
}

.article-section__body ul,
.article-section__body ol {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted-dark);
  margin: 0 0 1.5rem;
  padding-left: 1.25em;
}

.article-section__body li {
  margin-bottom: 0.5rem;
}

.article-section__body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--accent);
  background: rgba(3, 114, 255, 0.04);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.content-quote {
  border-left: 3px solid var(--accent);
  font-style: italic;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  color: var(--text-muted-dark);
}

.article-section__body img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .article-section { padding: 3rem 1.5rem 4rem; }
  .article-section__featured-image { margin-top: -5rem; }
}

/* ===== ARTICLE SHARE ===== */
.article-share {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 22, 40, 0.1);
}

.article-share__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted-dark);
  font-weight: 700;
}

.article-share__buttons {
  display: flex;
  gap: 0.5rem;
}

.article-share__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 22, 40, 0.15);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.article-share__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-light);
}

.article-share__btn svg { width: 16px; height: 16px; }

.article-share__btn.copied {
  background: var(--abenex-orange);
  border-color: var(--abenex-orange);
  color: var(--text-light);
}

/* ===== ARTICLE NAV (PREV / NEXT) ===== */
.article-nav {
  background: var(--bg-dark);
}

.article-nav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}

.article-nav__link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 4rem;
  text-decoration: none;
  color: var(--text-light);
  transition: background 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.article-nav__link--prev {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.article-nav__link:hover { background: rgba(255,255,255,0.03); }

.article-nav__arrow {
  flex-shrink: 0;
  width: 26px;
  height: 48px;
  position: relative;
  overflow: visible;
}

.article-nav__link--prev .article-nav__arrow { transform: scaleX(-1); }

.article-nav__arrow .nav-main {
  position: absolute;
  inset: 6px 3px;
  pointer-events: none;
}

.article-nav__arrow .nav-main svg { width: 100%; height: 100%; }
.article-nav__arrow .nav-main path { fill: var(--accent); }

.article-nav__arrow .nav-chevron-out {
  position: absolute;
  inset: 6px 3px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-nav__arrow .nav-chevron-out svg { width: 100%; height: 100%; }
.article-nav__arrow .nav-chevron-out path { fill: var(--abenex-orange); }

.article-nav__link:hover .article-nav__arrow .nav-chevron-out {
  opacity: 1;
  transform: translateX(80%);
  transition: opacity 0.15s ease 0.05s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.article-nav__image {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  overflow: hidden;
}

.article-nav__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.5s ease;
}

.article-nav__link:hover .article-nav__image img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.article-nav__info {
  flex: 1;
  min-width: 0;
}

.article-nav__direction {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--abenex-orange);
  margin-bottom: 0.4rem;
}

.article-nav__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.article-nav__link:hover .article-nav__title { color: var(--accent); }
.article-nav__link--next .article-nav__info { text-align: right; }

/* Quand seul le lien "next" est présent (première entrée de la liste),
   le placer dans la 2e colonne pour respecter le sens de sa flèche (→) */
.article-nav__link--next:only-child { grid-column: 2 / 3; }

@media (max-width: 1024px) {
  .article-nav__inner { grid-template-columns: 1fr; }
  .article-nav__link--prev { border-right: none; }
  .article-nav__link--next { flex-direction: row-reverse; }
  .article-nav__link--next .article-nav__info { text-align: left; }
  .article-nav__link--next:only-child { grid-column: auto; }
}

@media (max-width: 768px) {
  .article-nav__link { padding: 2rem 1.5rem; }
  .article-nav__image { width: 80px; height: 56px; }
}

/* ===== FLOATING NAV ===== */
.floating-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-nav--prev { left: 1.5rem; }
.floating-nav--next { right: calc(60px + 1.5rem); }

.floating-nav.docked {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 20px));
}

.floating-nav__arrow {
  width: 26px;
  height: 48px;
  position: relative;
  overflow: visible;
  cursor: pointer;
}

.floating-nav--prev .floating-nav__arrow { transform: scaleX(-1); }

.floating-nav__arrow .nav-main {
  position: absolute;
  inset: 6px 3px;
  pointer-events: none;
}

.floating-nav__arrow .nav-main svg { width: 100%; height: 100%; }
.floating-nav__arrow .nav-main path { fill: var(--accent); }

.floating-nav__arrow .nav-chevron-out {
  position: absolute;
  inset: 6px 3px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-nav__arrow .nav-chevron-out svg { width: 100%; height: 100%; }
.floating-nav__arrow .nav-chevron-out path { fill: var(--abenex-orange); }

.floating-nav:hover .floating-nav__arrow .nav-chevron-out {
  opacity: 1;
  transform: translateX(80%);
  transition: opacity 0.15s ease 0.05s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.floating-nav__tooltip {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0.8rem;
  background: var(--bg-navy);
  border: 1px solid rgba(255,255,255,0.1);
  width: max-content;
  max-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-nav--prev .floating-nav__tooltip { left: 0; }
.floating-nav--next .floating-nav__tooltip { right: 0; }

.floating-nav:hover .floating-nav__tooltip {
  opacity: 1;
  transform: translateY(0);
}

.floating-nav__label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--abenex-orange);
}

.floating-nav__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (min-width: 1400px) {
  .floating-nav__tooltip { bottom: auto; top: 50%; }
  .floating-nav--prev .floating-nav__tooltip { left: calc(26px + 0.75rem); transform: translateY(-50%) translateX(8px); }
  .floating-nav--next .floating-nav__tooltip { right: calc(26px + 0.75rem); transform: translateY(-50%) translateX(-8px); }
  .floating-nav--prev:hover .floating-nav__tooltip,
  .floating-nav--next:hover .floating-nav__tooltip { transform: translateY(-50%) translateX(0); }
}

@media (max-width: 1024px) {
  .floating-nav--next { right: 1.5rem; }
}

@media (max-width: 768px) {
  .floating-nav--prev { left: 1rem; }
  .floating-nav--next { right: 1rem; }
  .floating-nav__tooltip { display: none; }
}

/* ===== KEYBOARD HINT ===== */
.keyboard-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: hintFadeInOut 5s ease forwards;
  pointer-events: none;
}

.keyboard-hint kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: 'Plaax Ney', sans-serif;
  font-size: 0.7rem;
  color: white;
}

@keyframes hintFadeInOut {
  0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
  8% { opacity: 1; transform: translateX(-50%) translateY(0); }
  75% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 768px) {
  .keyboard-hint { display: none; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-from-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-from-left.visible,
.reveal-from-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CHEVRON SPLIT — Reusable split layout with directional chevron ===== */
/* Usage:
 *   .chevron-split--right  → chevron panel on LEFT, pointing RIGHT
 *   .chevron-split--left   → chevron panel on RIGHT, pointing LEFT
 *
 * HTML (--right):
 *   <section class="chevron-split chevron-split--right">
 *     <div class="chevron-split__chevron chevron-split__chevron--right"> image or content </div>
 *     <div class="chevron-split__panel"> content </div>
 *   </section>
 *
 * HTML (--left):
 *   <section class="chevron-split chevron-split--left">
 *     <div class="chevron-split__chevron chevron-split__chevron--left"> image or content </div>
 *     <div class="chevron-split__panel"> content </div>
 *   </section>
 *
 * Background modifiers: --dark, --cream, --blue (on __panel or __chevron)
 * Animation: auto-handled by common.js scroll observer
 */

.chevron-split {
  display: grid;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  --chevron-depth: 10vh; /* fallback — overridden by JS from actual height */
}

/* Le fond de la section doit correspondre au panneau NON-chevron,
   pour que la zone découpée par le clip-path révèle la bonne couleur. */
.chevron-split:has(> .chevron-split__panel--dark:not(.chevron-split__chevron)) {
  background: var(--bg-dark);
}
.chevron-split:has(> .chevron-split__panel--cream:not(.chevron-split__chevron)) {
  background: var(--bg-cream);
}
.chevron-split:has(> .chevron-split__panel--blue:not(.chevron-split__chevron)) {
  background: var(--accent);
}

/* Asymmetric columns — straight edge lands at center.
   chevron-depth synced by JS (height × 0.1). */
.chevron-split--right {
  grid-template-columns: calc(50% + var(--chevron-depth)) calc(50% - var(--chevron-depth));
}

.chevron-split--left {
  grid-template-columns: calc(50% + var(--chevron-depth)) calc(50% - var(--chevron-depth));
  direction: rtl;
}

.chevron-split--left > * {
  direction: ltr;
}

/* Generic panel — padded content area */
.chevron-split__panel {
  position: relative;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Chevron-clipped panel — the shaped side */
.chevron-split__chevron {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* When chevron panel also contains padded content (not just an image) */
.chevron-split__chevron.chevron-split__panel {
  z-index: 1;
}

/* Right-pointing chevron — initial state (collapsed to left) */
.chevron-split__chevron--right {
  clip-path: polygon(0 0, 0 0, 0 50%, 0 100%, 0 100%);
}

/* Left-pointing chevron — initial state (collapsed to right) */
.chevron-split__chevron--left {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%, 100% 50%);
}

/* Images inside chevron panels fill the area */
.chevron-split__chevron > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Background modifiers */
.chevron-split__panel--dark,
.chevron-split__chevron--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.chevron-split__panel--cream,
.chevron-split__chevron--cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.chevron-split__panel--blue,
.chevron-split__chevron--blue {
  background: var(--accent);
  color: var(--text-light);
}

/* Label + title patterns (reusable inside any chevron-split panel) */
.chevron-split__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.chevron-split__label-line {
  width: 40px;
  height: 1px;
  background: var(--abenex-orange);
}

.chevron-split__label-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--abenex-orange);
}

/* Blue accent variant for label */
.chevron-split__label--blue .chevron-split__label-line {
  background: var(--accent);
}

.chevron-split__label--blue .chevron-split__label-text {
  color: var(--accent);
}

.chevron-split__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.chevron-split__text {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Text on cream background */
.chevron-split__panel--cream .chevron-split__text,
.chevron-split__chevron--cream .chevron-split__text {
  color: var(--text-muted-dark);
}

/* Watermark chevron (decorative background) */
.chevron-split__watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40%;
  width: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.chevron-split__watermark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.5;
  vector-effect: non-scaling-stroke;
}

/* ===== CHEVRON SPLIT — Responsive ===== */
@media (max-width: 1024px) {
  .chevron-split {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .chevron-split--left {
    direction: ltr;
  }

  .chevron-split__chevron {
    clip-path: none !important;
  }

  .chevron-split__panel {
    padding: 4rem 2rem;
  }

  /* Image panels get fixed height on mobile */
  .chevron-split__chevron > img {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .chevron-split__panel {
    padding: 4rem 1.5rem;
  }
}

/* Chevron split - chiffres clés */
.chevron-split__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.chevron-split__stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.chevron-split__stat--accent .chevron-split__stat-value {
  color: var(--accent);
}
.chevron-split__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .chevron-split__stats {
    gap: 1.5rem 2rem;
  }
  .chevron-split__stat-value {
    font-size: 2rem;
  }
}

/* ===== CATEGORY BADGES ===== */
.cat--abenex { background-color: #0F2847; color: var(--text-light); }
.cat--equipe { background-color: #3A6BA5; color: var(--text-light); }
.cat--participation { background-color: #0372FF; color: var(--text-light); }
.cat--immobilier { background-color: #D16D00; color: var(--text-light); }
.cat--durabilite { background-color: #2D7A6B; color: var(--text-light); }

/* ===== TESTIMONIAL — Unified component ===== */
/* BEM: .testimonial (section) > __inner, __slide, __avatar, __divider, __body, __quote, __name, __position, __nav */

.testimonial {
  position: relative;
  padding: 6rem 4rem;
  overflow: hidden;
}

.testimonial--dark {
  background: var(--bg-navy);
  color: var(--text-light);
}

.testimonial--light {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.testimonial__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Decorative chevrons (background) */
.testimonial__deco {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
  opacity: 0.05;
  pointer-events: none;
}

.testimonial__deco svg {
  width: 100px;
  height: 250px;
}

.testimonial__deco svg path {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

/* Decorative giant quotation mark */
.testimonial__quote-deco {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Plaax Ney', sans-serif;
  font-size: clamp(10rem, 20vw, 18rem);
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* Swiper container */
.testimonial__swiper {
  width: 100%;
}

.testimonial__swiper .swiper-slide {
  height: auto;
}

/* Slide layout: avatar | divider | body */
.testimonial__slide {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

/* Avatar (circle, exception to border-radius:0 rule) */
.testimonial__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

/* Vertical blue divider */
.testimonial__divider {
  width: 2px;
  align-self: stretch;
  background: var(--accent);
  flex-shrink: 0;
}

/* Body (quote + name + position) */
.testimonial__body {
  flex: 1;
  min-width: 0;
}

.testimonial__quote {
  font-family: 'Plaax Ney', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: oblique;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.testimonial--dark .testimonial__quote {
  color: var(--text-light);
}

.testimonial--light .testimonial__quote {
  color: var(--text-dark);
}

.testimonial__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.testimonial--dark .testimonial__name {
  color: var(--text-light);
}

.testimonial--light .testimonial__name {
  color: var(--text-dark);
}

.testimonial__position {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* Navigation: prev — dots — next on one line */
.testimonial__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 2rem;
}

.testimonial__btn {
  width: 26px;
  height: 48px;
  position: relative;
  overflow: visible;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.testimonial__btn--prev { transform: scaleX(-1); }

/* Static variant: hide nav */
.testimonial--static .testimonial__nav {
  display: none;
}

/* Pagination dots */
.testimonial__pagination {
  display: flex !important;
  position: static !important;
  width: auto !important;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.3) !important;
  opacity: 1 !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial__pagination .swiper-pagination-bullet-active {
  background: var(--accent) !important;
  transform: scale(1.3);
}

.testimonial--light .testimonial__pagination .swiper-pagination-bullet {
  background: rgba(10,22,40,0.2) !important;
}

.testimonial--light .testimonial__pagination .swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

/* Arrow internals */
.testimonial__btn .nav-main {
  position: absolute;
  inset: 6px 3px;
  pointer-events: none;
}
.testimonial__btn .nav-main svg { width: 100%; height: 100%; }
.testimonial__btn .nav-main path { fill: var(--accent); }

.testimonial__btn .nav-chevron-out {
  position: absolute;
  inset: 6px 3px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial__btn .nav-chevron-out svg { width: 100%; height: 100%; }
.testimonial__btn .nav-chevron-out path { fill: var(--accent); }

.testimonial__btn:hover .nav-chevron-out {
  opacity: 1;
  transform: translateX(80%);
  transition: opacity 0.15s ease 0.05s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

/* Responsive: 768px — stack vertical */
@media (max-width: 768px) {
  .testimonial {
    padding: 4rem 1.5rem;
  }

  .testimonial__deco {
    display: none;
  }

  .testimonial__slide {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .testimonial__divider {
    width: 60px;
    height: 2px;
    align-self: center;
  }

  .testimonial__avatar {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .testimonial {
    padding: 3rem 1rem;
  }
}

/* ===== FILTER SEARCH INPUT ===== */
.filter-search {
  padding: 0.6rem 0.85rem 0.6rem 2.2rem;
  font-family: 'Plaax Ney', sans-serif;
  font-size: 0.85rem;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat left 0.5rem center;
  border: none;
  border-bottom: 1px solid rgba(10, 22, 40, 0.2);
  color: var(--text-dark);
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  height: auto;
  align-self: flex-end;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.filter-search::placeholder {
  color: var(--text-muted-dark);
}

.filter-search:focus {
  border-bottom-color: var(--abenex-blue);
}

@media (max-width: 768px) {
  .filter-search {
    max-width: none;
    min-width: 0;
    width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

/* ===== BLOC TEXT ===== */
.bloc-text {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 8rem 6rem;
}

.bloc-text__inner {
  max-width: 900px;
  margin: 0 auto;
}

.bloc-text__inner .display-lg {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.bloc-text__content {
  color: var(--text-muted-dark);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.bloc-text__content p {
  margin-bottom: 1rem;
}

.bloc-text__content p:last-child {
  margin-bottom: 0;
}

.bloc-text__content ul,
.bloc-text__content ol {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 1rem;
  padding-left: 1.25em;
}

.bloc-text__content li {
  margin-bottom: 0.4rem;
}

.bloc-text__image {
  margin: 2.5rem 0;
  border-radius: 4px;
  overflow: hidden;
}

.bloc-text__image img {
  width: 100%;
  height: auto;
  display: block;
}

.bloc-text__cta {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .bloc-text { padding: 5rem 2rem; }
}

@media (max-width: 480px) {
  .bloc-text { padding: 3rem 1rem; }
}

/* ===== RESPONSIVE: 480px ===== */
@media (max-width: 480px) {
  .article-hero { min-height: 50vh; padding: 6rem 1rem 7rem; }
  .article-hero__title { font-size: 1.5rem; }
  .article-hero__back { top: 5rem; left: 1rem; }
  .article-section { padding: 2rem 1rem 3rem; }
  .article-section__inner { padding: 0; }
  .article-section__featured-image { margin-top: -5rem; }
  .article-nav__link { padding: 1.5rem 1rem; }
  .article-nav__image { width: 70px; height: 50px; }
  .cta-section { padding: 4rem 1rem; }
  .floating-nav--prev { left: 0.5rem; }
  .floating-nav--next { right: 0.5rem; }
}
