/* ================================================================
   DWDG — sections.css v8
   ================================================================ */

/* ── 1. EXPERTISE SERVICES WRAP — hide new layout, use original ── */
.expertise-services-wrap { display: none !important; }

/* ── 2. PUBLICATIONS — keep original publication-card ─────────── */
.pub-grid { display: none !important; }

/* ── 3. SECTOR BADGE COLORS on insight/work cards ─────────────── */
/* Default: frosted glass white */
.eyebrow.on-image {
  background: rgba(255,255,255,.82) !important;
  color: var(--ink-soft) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── 4. PROGRAM IMAGE EDIT HINT ────────────────────────────────── */
.generation-img { position: relative; overflow: hidden; }
.dwdg-edit-img {
  display: none;
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.generation-img:hover .dwdg-edit-img { display: flex; }

/* ── 5. GENERATION CARD BLOCK (Gutenberg) ───────────────────────── */
.dwdg-generation-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: var(--radius-lg);
  background: rgba(247,255,248,.72);
  box-shadow: 0 20px 60px rgba(0,80,35,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  max-width: 320px;
}
.dwdg-generation-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 80px rgba(0,80,35,.16);
}
.dwdg-generation-card__img {
  height: 160px;
  overflow: hidden;
}
.dwdg-generation-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
.dwdg-generation-card:hover .dwdg-generation-card__img img {
  transform: scale(1.05);
  filter: saturate(1.06) brightness(1.02);
}
.dwdg-generation-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 24px 28px;
}
.dwdg-generation-card__body h3 { font-size: 1.9rem; margin: 0; }
.dwdg-generation-card__body p  { font-size: 0.9375rem; line-height: 1.35; margin: 0; }
.dwdg-generation-card__body .button { margin-top: auto; }

/* ── 6. PUB CARD BLOCK (Gutenberg) ─────────────────────────────── */
.dwdg-pub-card {
  display: grid;
  grid-template-columns: minmax(200px,.75fr) minmax(320px,1.15fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  margin-block: 1.5em;
}
.dwdg-pub-card__preview {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 36px;
  background:
    radial-gradient(circle at 70% 30%, rgba(18,201,95,.1), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(246,243,238,.95));
}
.dwdg-pub-card__cover {
  position: relative;
  width: min(170px,100%);
  aspect-ratio: .72;
  overflow: hidden;
  border-radius: 6px;
  background: #fafaf7;
  box-shadow: 0 20px 40px rgba(0,0,0,.16);
  padding: 28px 24px;
}
.dwdg-pub-card__cover::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 42%, rgba(18,201,95,.18) 42% 64%, transparent 64%);
}
.dwdg-pub-card__cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 48%, rgba(18,201,95,.32) 48% 66%, transparent 66%);
}
.dwdg-pub-card__cover > * { position: relative; z-index: 1; }
.dwdg-pub-card__cover-title {
  display: block;
  color: var(--green-deep);
  font-size: 1rem;
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.05em;
}
.dwdg-pub-card__cover-desc {
  max-width: 100px;
  margin-top: 32px;
  color: var(--ink);
  font-size: .46rem;
  font-weight: 600;
  line-height: 1.3;
}
.dwdg-pub-card__cover-brand {
  position: absolute;
  bottom: 16px; left: 24px;
  font-size: .9rem;
  letter-spacing: -.12em;
}
.dwdg-pub-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: var(--card-pad);
  background: rgba(255,255,255,.72);
}
.dwdg-pub-card__copy h3 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
}
@media (max-width: 600px) {
  .dwdg-pub-card { grid-template-columns: 1fr; }
  .dwdg-pub-card__copy { padding: 28px 24px; }
  .dwdg-pub-card__copy h3 { font-size: clamp(1.4rem, 7vw, 2rem); }
}

/* ── 7. STAT BLOCK ─────────────────────────────────────────────── */
.dwdg-stat-block {
  border-radius: var(--radius-lg);
  padding: clamp(32px,5vw,56px) clamp(28px,5vw,56px);
  margin-block: 1.5em;
  position: relative;
  overflow: hidden;
}
.dwdg-stat-block--green {
  background: linear-gradient(135deg, #0aa04b 0%, #12c95f 60%, #58d986 100%);
  color: #fff;
}
.dwdg-stat-block--dark {
  background: var(--ink);
  color: #fff;
}
.dwdg-stat-block__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dwdg-stat-block__value {
  display: block;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.06em;
}
.dwdg-stat-block--green .dwdg-stat-block__value { color: #fff; }
.dwdg-stat-block--dark  .dwdg-stat-block__value { color: var(--green); }
.dwdg-stat-block__label {
  max-width: 480px;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: 0;
  color: inherit;
}
.dwdg-stat-block--green .dwdg-stat-block__label { color: rgba(255,255,255,.9); }
.dwdg-stat-block--dark  .dwdg-stat-block__label { color: rgba(255,255,255,.85); }
.dwdg-stat-block__context {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .55;
}

/* ── 8. HIGHLIGHT BLOCK ────────────────────────────────────────── */
.dwdg-highlight {
  border-radius: var(--radius-md);
  padding: clamp(24px,4vw,40px) clamp(24px,4vw,40px);
  margin-block: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 3px solid var(--green);
}
.dwdg-highlight--light {
  background: rgba(18,201,95,.07);
  border-left-color: var(--green);
}
.dwdg-highlight--green {
  background: linear-gradient(135deg, rgba(10,160,75,.1), rgba(88,217,134,.14));
  border-left-color: var(--green-deep);
}
.dwdg-highlight--dark {
  background: var(--ink);
  border-left-color: var(--green);
}
.dwdg-highlight__title {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--ink);
  margin: 0;
}
.dwdg-highlight--dark .dwdg-highlight__title { color: #fff; }
.dwdg-highlight__body {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}
.dwdg-highlight--dark .dwdg-highlight__body { color: rgba(255,255,255,.72); }
.dwdg-highlight--dark .eyebrow { background: rgba(18,201,95,.25); color: var(--green); }

/* ── 9. KEY INSIGHT BLOCK ──────────────────────────────────────── */
.dwdg-key-insight {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-block: 1.5em;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.dwdg-key-insight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.dwdg-key-insight__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dwdg-key-insight__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.dwdg-key-insight:hover .dwdg-key-insight__img img { transform: scale(1.04); }
.dwdg-key-insight__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.22));
  pointer-events: none;
}
.dwdg-key-insight__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 28px 28px;
}
.dwdg-key-insight__body h3 {
  font-size: clamp(.95rem, 1.7vw, 1.2rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
}


/* ── 10. CONVICTION DUO BLOCK ──────────────────────────────────── */
.dwdg-conviction-duo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(180px, 22vw, 280px);
  margin-block: 1.5em;
}

/* ── 11. EXPERT CARD ───────────────────────────────────────────── */
.dwdg-expert-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.dwdg-expert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.dwdg-expert-card__img {
  height: 180px;
  overflow: hidden;
  background: var(--soft);
}
.dwdg-expert-card__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform var(--t-slow) var(--ease);
}
.dwdg-expert-card:hover .dwdg-expert-card__img img { transform: scale(1.04); }
.dwdg-expert-card__img--empty {
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(18,201,95,.15), rgba(18,201,95,.05));
}
.dwdg-expert-card__img--empty span {
  font-size: 3rem; font-weight: 800; color: var(--green); letter-spacing: -0.05em;
}
.dwdg-expert-card__body {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 22px 24px;
}
.dwdg-expert-card__name {
  font-size: 1rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink);
}
.dwdg-expert-card__role {
  font-size: 0.78rem; font-weight: 700; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.dwdg-expert-card__bio {
  font-size: 0.875rem; line-height: 1.45; color: var(--ink-soft); margin: 4px 0 6px;
}
.dwdg-expert-card__body .button { align-self: flex-start; margin-top: 4px; }

/* ── 12. EXPERTISE PILL ────────────────────────────────────────── */
.dwdg-expertise-pill {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
a.dwdg-expertise-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(18,201,95,.22);
}
.dwdg-expertise-pill__img {
  height: 120px; overflow: hidden; background: var(--soft);
}
.dwdg-expertise-pill__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
a.dwdg-expertise-pill:hover .dwdg-expertise-pill__img img { transform: scale(1.06); }
.dwdg-expertise-pill__label {
  display: block; padding: 12px 16px;
  font-size: 0.875rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink);
}

/* ── 13. CONTACT EXPERT — fidèle capture image 7 ──────────────── */
.dwdg-contact-expert {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) 1fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #eeeee9;
  margin-block: 1.5em;
  align-items: stretch;
}
.dwdg-contact-expert__img {
  min-height: 340px;
  overflow: hidden;
  position: relative;
}
.dwdg-contact-expert__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.dwdg-contact-expert__body {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(36px,5vw,56px) clamp(36px,5vw,64px);
  justify-content: center;
  background: #eeeee9;
}
/* "CONTACT US" eyebrow */
.dwdg-contact-expert .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(18,201,95,.12);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.dwdg-contact-expert__name {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  margin: 0;
}
.dwdg-contact-expert__role {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--green-deep);
  width: fit-content;
}
.dwdg-contact-expert__bio {
  max-width: 520px;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.dwdg-contact-expert__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--green-deep);
  padding-bottom: 2px;
  width: fit-content;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dwdg-contact-expert__email:hover { color: var(--green); border-color: var(--green); }
@media (max-width: 760px) {
  .dwdg-contact-expert { grid-template-columns: 1fr; }
  .dwdg-contact-expert__img { min-height: 260px; }
}

/* ── 14. SECTOR INTRO ──────────────────────────────────────────── */
.dwdg-sector-intro {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
  margin-block: 1.5em;
}
.dwdg-sector-intro__title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 0.92; letter-spacing: -0.045em;
  color: var(--ink); margin: 0;
}
.dwdg-sector-intro__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.3; letter-spacing: -0.03em;
  color: var(--ink); font-weight: 500; max-width: 700px; margin: 0;
}
.dwdg-sector-intro__body {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.55; color: var(--ink-soft);
  max-width: 680px; margin: 0;
}
.dwdg-sector-intro__img {
  width: 100%; max-height: 420px; overflow: hidden;
  border-radius: var(--radius-xl);
}
.dwdg-sector-intro__img img {
  width: 100%; height: 100%; object-fit: cover; max-height: 420px;
}

/* ── 15. EXPERTS ROW (4 colonnes) ──────────────────────────────── */
.dwdg-experts-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  margin-block: 1.5em;
}
@media (max-width: 900px) { .dwdg-experts-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dwdg-experts-row { grid-template-columns: 1fr; } }

/* ── 16. FORMATIONS ROW (3 colonnes) ───────────────────────────── */
.dwdg-formations-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: center;
  gap: clamp(20px, 3.5vw, 48px);
  margin-block: 1.5em;
}
@media (max-width: 760px) { .dwdg-formations-row { grid-template-columns: 1fr; justify-items: center; } }
.dwdg-formations-row .generation-card { width: 100%; }

/* ── 17. EXPERTISE BADGE GRID ──────────────────────────────────── */
.dwdg-expertise-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-block: 1.5em;
}

/* ══════════════════════════════════════════════════════════════
   TEMPLATE PAGE SECTEUR — fidèle au PDF Energy transition
   ══════════════════════════════════════════════════════════════ */

/* ── 1. INTRO (titre + sous-titre + image hero) ──────────────── */
.sector-page-intro {
  padding-top: clamp(96px, 12vw, 140px); /* espace sous la nav */
}

.sector-page-intro .wrap {
  padding-bottom: clamp(28px, 4vw, 44px);
}

.sector-page-intro__title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0 0 clamp(20px, 3vw, 36px);
}

.sector-page-intro__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
  max-width: 680px;
  margin: 0;
}

/* Image hero — pleine largeur avec coins arrondis en bas */
.sector-page-intro__hero {
  width: 100%;
  max-height: clamp(280px, 40vw, 500px);
  overflow: hidden;
  margin-top: clamp(24px, 4vw, 48px);
  border-radius: 0 0 clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px);
}

.sector-page-intro__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ── 2. BODY CONTENT ─────────────────────────────────────────── */
.sector-page-body {
  padding-top: clamp(48px, 6vw, 80px);
}

/* Corps de texte (paragraphes simples) */
.sector-page-content > p,
.sector-page-content > .wp-block-paragraph {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 1.2em;
}

/* Liens verts dans le corps */
.sector-page-content a,
.sector-page-content .green-link {
  color: var(--green-deep);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--t-fast) var(--ease);
}
.sector-page-content a:hover { color: var(--green); }

/* ── 3. SECTIONS GUTENBERG dans le template secteur ─────────── */

/* Chaque bloc de section prend la pleine largeur wrap */
.sector-page-content .dwdg-expertise-badge-grid,
.sector-page-content .dwdg-experts-row,
.sector-page-content .dwdg-pub-card,
.sector-page-content .dwdg-contact-expert {
  margin-block: clamp(48px, 7vw, 80px);
}

/* Section headings (h2) dans le template secteur */
.sector-page-content h2,
.sector-page-content .section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: clamp(28px, 4vw, 44px);
}

/* ── 4. EXPERTISE BADGE GRID — layout PDF (rangées 4+2) ─────── */
.sector-page-content .dwdg-expertise-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

/* Les 2 derniers badges (rangée 2) centrés */
.sector-page-content .dwdg-expertise-badge-grid .dwdg-expertise-pill:nth-child(5),
.sector-page-content .dwdg-expertise-badge-grid .dwdg-expertise-pill:nth-child(6) {
  /* Optionnel : forcer la 2e rangée à 2 cols centrées */
}

@media (max-width: 900px) {
  .sector-page-content .dwdg-expertise-badge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .sector-page-content .dwdg-expertise-badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 5. EXPERTS ROW — 4 cols comme le PDF ───────────────────── */
.sector-page-content .dwdg-experts-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Arrow "more" à droite de la grille experts */
.sector-page-content .dwdg-experts-row-wrap {
  position: relative;
}
.sector-page-content .dwdg-experts-row-wrap::after {
  content: '›';
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--ink-soft);
  cursor: pointer;
}

/* ── 6. WORK CARDS LIST (Recent projects) ───────────────────── */
.sector-page-content .work-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
}

/* ── 7. CONTACT EXPERT — bas de page ────────────────────────── */
.sector-page-content .dwdg-contact-expert {
  background: var(--soft);
  border-radius: var(--radius-xl);
}

/* Séparateur visuel entre les grandes sections */
.sector-page-content > .dwdg-section-heading-block {
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .sector-page-content .dwdg-experts-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .sector-page-intro__hero {
    border-radius: 0;
  }
  .sector-page-content .dwdg-experts-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   NOUVEAUX BLOCS v5
   ══════════════════════════════════════════════════════════════ */

/* ── HERO SECTION BLOCK ────────────────────────────────────── */
.dwdg-hero-block {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  /* Hauteur min pour voir la vidéo/image derrière la vague */
  min-height: clamp(380px, 48vw, 620px);
}
.dwdg-hero-block__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.dwdg-hero-block__media img,
.dwdg-hero-block__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
/* Conteneur SVG vague — au-dessus du media */
.dwdg-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.dwdg-hero-wave svg {
  display: block;
  width: 100%;
  height: clamp(70px, 9vw, 130px);
}
.dwdg-hero-block__panel {
  position: relative;
  z-index: 1;
  /* Padding réduit — plus de blanc excessif */
  padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 80px);
  background: var(--paper);
}

/* ── CONVICTION SECTION BLOCK ──────────────────────────────── */
.dwdg-conviction-section { padding-block: clamp(24px,4vw,48px); }

/* ── RECENT PROJECTS BLOCK ─────────────────────────────────── */
.dwdg-recent-projects { padding-block: clamp(48px,7vw,80px); }

/* ── EXPERTISE SERVICES caption top ────────────────────────── */
.expertise-caption-top {
  font-size: clamp(0.9rem,1.5vw,1.05rem);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin: 0 auto clamp(28px,4vw,44px);
  text-align: center;
  position: relative; z-index:1;
}

/* ── PUBLICATIONS SLIDER ────────────────────────────────────── */
.dwdg-publications-slider { padding-block: clamp(48px,7vw,80px); }
.dwdg-pub-slider__track { overflow: hidden; }
.dwdg-pub-slider__item { display: none; }
.dwdg-pub-slider__item:first-child,
.dwdg-pub-slider__item.active { display: grid; }
.dwdg-pub-slider__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 28px;
}
.dwdg-pub-slider__btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--line); background: transparent;
  font-size: 1.4rem; cursor: pointer; color: var(--ink);
  display: grid; place-items: center;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dwdg-pub-slider__btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.dwdg-pub-slider__dots { display:flex; gap:8px; }
.dwdg-pub-slider__dot {
  width:8px; height:8px; border-radius:50%;
  background: var(--line); transition: background var(--t-fast) var(--ease);
}
.dwdg-pub-slider__dot.active { background: var(--green); }

/* ── INSIGHTS GRID BLOCK ────────────────────────────────────── */
.dwdg-insights-grid-block { padding-block: clamp(48px,7vw,80px); }
.dwdg-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(12px,2vw,20px);
}
@media(max-width:760px){ .dwdg-insights-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .dwdg-insights-grid { grid-template-columns: 1fr; } }

/* ── JOIN US BLOCK ──────────────────────────────────────────── */
.dwdg-join-us { padding-block: clamp(56px,8vw,96px); }

/* ── HERO SECTOR BLOCK ──────────────────────────────────────── */
.dwdg-hero-sector-block { padding-top: clamp(96px,12vw,140px); }
.dwdg-hero-sector-block__body {
  max-width: 720px; margin-top: clamp(32px,5vw,56px);
  display: flex; flex-direction: column; gap: 1.2em;
}
.dwdg-hero-sector-block__body p {
  font-size: clamp(0.95rem,1.6vw,1.1rem);
  line-height: 1.65; color: var(--ink-soft); margin: 0;
}

/* ── EDITORIAL TEXT BLOCK ───────────────────────────────────── */
.dwdg-editorial-text { max-width:720px; display:flex; flex-direction:column; gap:1.4em; margin-block:1.5em; }
.dwdg-editorial-text__para { font-size:clamp(.95rem,1.6vw,1.1rem); line-height:1.65; color:var(--ink-soft); margin:0; }
.dwdg-green-link { color:var(--green-deep); font-weight:500; text-decoration:none; border-bottom:1px solid currentColor; }
.dwdg-green-link:hover { color:var(--green); }

/* ── EXPERTS CAROUSEL BLOCK ─────────────────────────────────── */
.dwdg-experts-carousel-block { padding-block: clamp(48px,7vw,80px); }
.dwdg-experts-carousel__wrap { position: relative; display: flex; align-items: center; gap: 16px; }
.dwdg-experts-carousel__wrap .dwdg-experts-row { flex: 1; }
.dwdg-experts-carousel__arrow {
  flex-shrink: 0; width:44px; height:44px; border-radius:50%;
  border:1.5px solid var(--line); background:transparent;
  font-size:1.6rem; cursor:pointer; color:var(--ink);
  display:grid; place-items:center;
  transition:background var(--t-fast) var(--ease);
}
.dwdg-experts-carousel__arrow:hover { background:var(--green); border-color:var(--green); color:#fff; }

/* ── OTHER INSIGHTS BLOCK ───────────────────────────────────── */
.dwdg-other-insights { padding-block: clamp(48px,7vw,80px); }
.dwdg-other-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(12px,2vw,20px);
}
@media(max-width:760px){ .dwdg-other-insights__grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   CORRECTIFS v6
   ══════════════════════════════════════════════════════════════ */

/* ── EXPERTISE PILL — hover description reveal ──────────────── */
.dwdg-expertise-pill__content {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  gap: 0;
}
.dwdg-expertise-pill--hoverable .dwdg-expertise-pill__content {
  transition: gap var(--t-base) var(--ease);
}
.dwdg-expertise-pill__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.dwdg-expertise-pill__desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 280ms var(--ease),
    opacity    280ms var(--ease),
    margin-top 280ms var(--ease);
}
.dwdg-expertise-pill--hoverable:hover .dwdg-expertise-pill__desc,
.dwdg-expertise-pill--hoverable:focus .dwdg-expertise-pill__desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}
.dwdg-expertise-pill--hoverable:hover {
  border-color: rgba(18,201,95,.3);
  box-shadow: var(--shadow-hover);
}
.dwdg-expertise-pill--hoverable:hover .dwdg-expertise-pill__label {
  color: var(--green-deep);
}

/* ── WORK CARD — image is link, reduced height ──────────────── */
.work-card__img-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
  flex-shrink: 0;
}
.work-card--has-img {
  max-height: none;
  min-height: unset;
}
/* Reduce image height in recent-projects block */
.dwdg-recent-projects .work-card__img,
.dwdg-recent-projects .work-card__img-link .work-card__img {
  height: clamp(50px, 6vw, 70px);
}
.dwdg-recent-projects .work-card {
  min-height: unset;
}

/* ── HERO SECTOR — titre/sous-titre spacing ─────────────────── */
.dwdg-hero-sector-block .sector-page-intro__title {
  margin-bottom: clamp(20px, 3vw, 36px);
}

/* ══════════════════════════════════════════════════════════════
   CORRECTIFS v7
   ══════════════════════════════════════════════════════════════ */

/* ── 1. SECTION HEADING — espacement réduit ─────────────────── */
.dwdg-recent-projects .section-heading,
.dwdg-experts-carousel-block .section-heading,
.dwdg-insights-grid-block .section-heading,
.dwdg-other-insights .section-heading,
.dwdg-publications-slider .section-heading {
  margin-bottom: clamp(16px, 2vw, 24px);
}

/* ── 2. WORK CARD BODY — compact ────────────────────────────── */
.work-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: clamp(8px, 1vw, 12px) clamp(10px, 1.5vw, 16px);
}
.work-card__body h3 {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.work-card__body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.work-card__body h3 a:hover { color: var(--green-deep); }
.work-card__body p {
  font-size: clamp(0.7rem, 0.9vw, 0.78rem);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0;
  max-width: 380px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── 3. EXPERTISE PILL — description toujours visible ──────── */
.dwdg-expertise-pill__desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 6px 0 0;
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
}
/* Annuler l'effet hover animé — description statique */
.dwdg-expertise-pill--hoverable:hover .dwdg-expertise-pill__desc {
  max-height: none;
  opacity: 1;
  margin-top: 6px;
}

/* ── 4. EXPERTS CAROUSEL — supprimer flèche ─────────────────── */
.dwdg-experts-carousel__arrow { display: none !important; }
.dwdg-experts-carousel__wrap { display: block; }

/* ── 5. CONTACT EXPERT — fond dégradé vert pleine largeur ───── */
.dwdg-contact-expert {
  background: linear-gradient(to right, #0a7a35 0%, #12c95f 30%, #a8f0c6 65%, #e8fdf2 100%) !important;
  border-radius: var(--radius-xl);
}
.dwdg-contact-expert__img img {
  mix-blend-mode: multiply;
  background: transparent;
}
.dwdg-contact-expert__body {
  background: transparent !important;
}
/* Adapter les couleurs au fond vert → texte foncé sur clair */
.dwdg-contact-expert .eyebrow {
  background: rgba(255,255,255,.35) !important;
  color: var(--ink) !important;
}
.dwdg-contact-expert__name { color: var(--ink) !important; }
.dwdg-contact-expert__role {
  color: var(--green-deep) !important;
  border-bottom: none !important; /* supprime le soulignement */
}
.dwdg-contact-expert__bio { color: var(--ink-soft) !important; }
.dwdg-contact-expert__email {
  color: var(--ink) !important;
  border-bottom: none !important; /* supprime le soulignement */
}
.dwdg-contact-expert__email:hover { color: var(--green-deep) !important; }

/* ── EXPERTS 8 GRID ──────────────────────────────────────────── */
.dwdg-experts-8-block { padding-block: clamp(48px,7vw,80px); }
.dwdg-experts-8-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}
@media (max-width: 900px) { .dwdg-experts-8-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dwdg-experts-8-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   CORRECTIFS v8
   ══════════════════════════════════════════════════════════════ */

/* ── 1. CONTACT EXPERT — image sans teinture verte ─────────── */
.dwdg-contact-expert__img img {
  mix-blend-mode: normal !important;
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: 100%;
}
/* Photo sur fond vert : légère surbrillance pour la détacher */
.dwdg-contact-expert__img {
  background: linear-gradient(to bottom, #0a7a35, #12c95f);
}

/* ── 2. ESPACEMENT UNIFORME — tous les titres de section ────── */
/* Override global : même valeur pour tous les blocs DWDG */
.dwdg-recent-projects .section-heading,
.dwdg-experts-carousel-block .section-heading,
.dwdg-experts-8-block .section-heading,
.dwdg-insights-grid-block .section-heading,
.dwdg-other-insights .section-heading,
.dwdg-publications-slider .section-heading,
.dwdg-join-us .section-heading,
.dwdg-expertise-badge-grid + .section-heading,
.dwdg-section-heading-block,
.sector-page-content .section-heading {
  margin-bottom: 20px !important;
}

/* ── 3. BADGE SUR IMAGE dans work cards ─────────────────────── */
.work-card__img {
  position: relative;
  overflow: hidden;
  height: clamp(50px, 6vw, 70px);
}
.work-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.work-card__img-link:hover .work-card__img img {
  transform: scale(1.04);
}
/* Badge positionné en haut à gauche de l'image */
.work-card__img .eyebrow.on-image {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(240, 255, 245, 0.88) !important;
  color: var(--green-deep) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.68rem !important;
  padding: 5px 12px !important;
}

/* ══════════════════════════════════════════════════════════════
   CORRECTIFS v9 — pleine largeur page secteur
   ══════════════════════════════════════════════════════════════ */

/* Tous les blocs dans le template secteur prennent la pleine largeur du wrap */
.sector-page-content > * {
  width: 100%;
}

/* Les blocs qui ont leur propre padding interne n'ont pas besoin du padding du wrap */
.sector-page-content .dwdg-recent-projects,
.sector-page-content .dwdg-experts-carousel-block,
.sector-page-content .dwdg-experts-8-block,
.sector-page-content .dwdg-insights-grid-block,
.sector-page-content .dwdg-other-insights,
.sector-page-content .dwdg-publications-slider,
.sector-page-content .expertise-green-block,
.sector-page-content .dwdg-contact-expert,
.sector-page-content .dwdg-expertise-badge-grid,
.sector-page-content .dwdg-section-heading-block {
  max-width: 100%;
  margin-inline: 0;
}

/* Texte éditorial — légèrement plus étroit pour la lisibilité */
.sector-page-content .dwdg-editorial-text {
  max-width: 740px;
}

/* ══════════════════════════════════════════════════════════════
   NOUVEAUX BLOCS v10
   ══════════════════════════════════════════════════════════════ */

/* ── PROJECTS LIST (alternance gauche/droite) ───────────────── */
.dwdg-projects-list { padding-block: clamp(48px,7vw,80px); }
.dwdg-projects-list__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
}
.dwdg-projects-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.dwdg-projects-list__item:hover {
  transform: translateY(-3px);
  border-color: rgba(18,201,95,.18);
  box-shadow: var(--shadow-hover);
}
/* Image à droite pour les items impairs */
.dwdg-projects-list__item--reversed {
  grid-template-columns: 1fr 1fr;
}
.dwdg-projects-list__item--reversed .dwdg-projects-list__copy { order: 1; }
.dwdg-projects-list__item--reversed .dwdg-projects-list__media { order: 2; }

.dwdg-projects-list__media {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--soft);
}
.dwdg-projects-list__media--empty {
  display: flex;
  align-items: flex-start;
  padding: clamp(24px,3.5vw,40px) clamp(28px,4vw,48px);
  background: linear-gradient(135deg, rgba(18,201,95,.08), rgba(88,217,134,.05));
}
.dwdg-projects-list__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--t-slow) var(--ease);
}
.dwdg-projects-list__item:hover .dwdg-projects-list__media img {
  transform: scale(1.04);
}
.dwdg-projects-list__media .eyebrow.on-image {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
}
.dwdg-projects-list__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(24px,3.5vw,40px) clamp(28px,4vw,48px);
}
.dwdg-projects-list__copy h3 {
  font-size: clamp(1rem,1.8vw,1.3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.dwdg-projects-list__copy p {
  font-size: clamp(0.875rem,1.3vw,1rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 420px;
}
@media (max-width: 760px) {
  .dwdg-projects-list__item,
  .dwdg-projects-list__item--reversed {
    grid-template-columns: 1fr;
  }
  .dwdg-projects-list__item--reversed .dwdg-projects-list__copy { order: 2; }
  .dwdg-projects-list__item--reversed .dwdg-projects-list__media { order: 1; }
  .dwdg-projects-list__media { min-height: 200px; }
}

/* ── PULL QUOTE ─────────────────────────────────────────────── */
.dwdg-pull-quote {
  position: relative;
  margin-block: 2em;
  padding: clamp(28px,4vw,48px) clamp(28px,4vw,48px) clamp(28px,4vw,48px) clamp(36px,5vw,60px);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.dwdg-pull-quote--light {
  background: rgba(18,201,95,.06);
}
.dwdg-pull-quote--dark {
  background: var(--ink);
  border-left-color: var(--green);
}
.dwdg-pull-quote__text {
  font-size: clamp(1.1rem,2.2vw,1.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 18px;
}
.dwdg-pull-quote--dark .dwdg-pull-quote__text { color: #fff; }
.dwdg-pull-quote__footer {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.dwdg-pull-quote__author {
  font-size: 0.82rem;
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.dwdg-pull-quote--dark .dwdg-pull-quote__author { color: rgba(255,255,255,.85); }
.dwdg-pull-quote__role {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  font-style: normal;
}
.dwdg-pull-quote--dark .dwdg-pull-quote__role { color: rgba(255,255,255,.5); }

/* ── EXPERT INLINE ──────────────────────────────────────────── */
.dwdg-expert-inline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  margin-block: 1em;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
a.dwdg-expert-inline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(18,201,95,.22);
}
.dwdg-expert-inline__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(18,201,95,.18), rgba(18,201,95,.06));
  display: grid; place-items: center;
}
.dwdg-expert-inline__avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.dwdg-expert-inline__initials {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}
.dwdg-expert-inline__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dwdg-expert-inline__name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.dwdg-expert-inline__role {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Espacements entre blocs dans le template secteur */
.sector-page-content > * + * {
  margin-top: clamp(40px, 6vw, 72px);
}

/* Contact expert — pleine largeur */
.sector-page-content .dwdg-contact-expert {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-xl);
}

/* Expertise badge grid — 4 colonnes pleine largeur */
.sector-page-content .dwdg-expertise-badge-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* Publications slider — pleine largeur */
.sector-page-content .dwdg-pub-card {
  width: 100%;
  max-width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   WORK-CARD BLOCK (horizontal layout)
   ══════════════════════════════════════════════════════════════ */
.dwdg-work-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 200px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.dwdg-work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.dwdg-work-card__media {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.dwdg-work-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.dwdg-work-card:hover .dwdg-work-card__media img {
  transform: scale(1.04);
}
.dwdg-work-card__media .eyebrow.on-image {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(240,255,245,0.88) !important;
  color: var(--green-deep) !important;
  backdrop-filter: blur(8px);
  font-size: 0.68rem !important;
  padding: 5px 12px !important;
}
.dwdg-work-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 28px);
  overflow: hidden;
}
.dwdg-work-card__copy h3 {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.dwdg-work-card__copy h3 a {
  color: inherit;
  text-decoration: none;
}
.dwdg-work-card__copy h3 a:hover { color: var(--green-deep); }
.dwdg-work-card__copy p {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dwdg-work-card__copy .button { align-self: flex-start; }

/* ── Work-card block: hauteur divisée par deux ─────────────── */
.dwdg-work-card {
  max-height: 100px;
}
.dwdg-work-card__copy {
  gap: 4px;
  padding: clamp(8px, 1vw, 12px) clamp(10px, 1.5vw, 16px);
}
.dwdg-work-card__copy p {
  -webkit-line-clamp: 1;
}

/* ══════════════════════════════════════════════════════════════
   BLOCS DWDG AJOUTÉS v44 — pages secteur / Energy
   ══════════════════════════════════════════════════════════════ */
.dwdg-section-surface {
  position: relative;
  overflow: hidden;
}
.dwdg-section-surface--beige { background: var(--soft, #f2ece7); }
.dwdg-section-surface--white { background: var(--paper, #fff); }
.dwdg-section-surface--transparent { background: transparent; }
.dwdg-section-surface--green {
  background: linear-gradient(135deg, #aaf0bd 0%, #4fd988 45%, #12c95f 100%);
}
.dwdg-section-surface--compact { padding-block: clamp(28px, 4vw, 48px); }
.dwdg-section-surface--normal { padding-block: clamp(48px, 7vw, 84px); }
.dwdg-section-surface--large { padding-block: clamp(72px, 10vw, 124px); }
.dwdg-section-surface > *:first-child { margin-top: 0; }
.dwdg-section-surface > *:last-child { margin-bottom: 0; }
.dwdg-section-surface-editor { border: 1px dashed rgba(0,0,0,.18); padding: 18px; border-radius: 18px; background: rgba(18,201,95,.04); }

.dwdg-video-container {
  max-width: 1180px;
  margin: clamp(36px, 6vw, 72px) auto;
  padding-inline: var(--page-pad, clamp(20px, 5vw, 72px));
}
.dwdg-video-container.alignfull { max-width: none; padding-inline: 0; }
.dwdg-video-container__title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 800;
  margin: 0 0 clamp(18px, 3vw, 32px);
}
.dwdg-video-container__frame {
  position: relative;
  background: #111;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 24px 70px rgba(20, 14, 9, .12);
}
.dwdg-video-container--cinema .dwdg-video-container__frame { aspect-ratio: 21/9; }
.dwdg-video-container--square .dwdg-video-container__frame { aspect-ratio: 1/1; max-height: 720px; }
.dwdg-video-container.is-rounded .dwdg-video-container__frame { border-radius: clamp(18px, 3vw, 34px); }
.dwdg-video-container.has-slant .dwdg-video-container__frame { clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }
.dwdg-video-container__frame video,
.dwdg-video-container__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.dwdg-video-container__placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  letter-spacing: -.02em;
}
.dwdg-video-container__caption {
  max-width: 720px;
  margin: 14px 0 0 auto;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink-soft, rgba(12,13,11,.64));
}

.dwdg-sector-split-intro {
  padding-top: clamp(96px, 12vw, 140px);
  background: var(--paper, #fff);
}
.dwdg-sector-split-intro__eyebrow {
  color: var(--green-deep, #0fa958);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .02em;
  margin: 0 0 12px;
}
.dwdg-sector-split-intro__title {
  font-size: clamp(2.15rem, 4.8vw, 4.65rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 800;
  margin: 0 0 clamp(18px, 2.6vw, 30px);
}
.dwdg-sector-split-intro__subtitle {
  max-width: 690px;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.42;
  letter-spacing: -.025em;
  font-weight: 500;
  margin: 0;
}
.dwdg-sector-split-intro__media {
  width: min(100% - clamp(32px, 8vw, 120px), 1180px);
  margin: clamp(24px, 4vw, 46px) auto 0;
  min-height: clamp(260px, 36vw, 500px);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
  background: #111;
}
.dwdg-sector-split-intro__media img,
.dwdg-sector-split-intro__media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.dwdg-sector-split-intro__copy-wrap {
  display: flex;
  justify-content: flex-end;
}
.dwdg-sector-split-intro__copy {
  max-width: 650px;
  margin-top: clamp(14px, 2.5vw, 34px);
  margin-bottom: clamp(38px, 6vw, 78px);
}
.dwdg-sector-split-intro__copy p {
  font-size: clamp(.94rem, 1.3vw, 1.05rem);
  line-height: 1.65;
  color: var(--ink-soft, rgba(12,13,11,.68));
  margin: 0 0 1.1em;
}
.dwdg-sector-split-intro__copy a { color: var(--green-deep, #0fa958); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }
.dwdg-sector-split-intro--two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  width: min(100% - clamp(32px, 8vw, 120px), 1180px);
  margin-inline: auto;
}
.dwdg-sector-split-intro--two-columns > .wrap { width: auto; padding: 0; }
.dwdg-sector-split-intro--two-columns .dwdg-sector-split-intro__media { width: 100%; margin: 0; grid-column: 2; grid-row: 1 / span 2; }
.dwdg-sector-split-intro--two-columns .dwdg-sector-split-intro__copy-wrap { width: auto; padding: 0; justify-content: flex-start; }

.dwdg-expertise-mosaic {
  padding-block: clamp(48px, 7vw, 84px);
}
.dwdg-expertise-mosaic--beige { background: var(--soft, #f2ece7); }
.dwdg-expertise-mosaic--white { background: var(--paper, #fff); }
.dwdg-expertise-mosaic--transparent { background: transparent; }
.dwdg-expertise-mosaic .section-heading {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
  margin: 0 0 clamp(26px, 4vw, 46px);
}
.dwdg-expertise-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}
.dwdg-expertise-mosaic__card {
  position: relative;
  min-height: clamp(140px, 16vw, 220px);
  border-radius: clamp(16px, 2.2vw, 28px);
  overflow: hidden;
  background: rgba(255,255,255,.5);
  box-shadow: 0 16px 46px rgba(20,14,9,.06);
}
.dwdg-expertise-mosaic__card--1,
.dwdg-expertise-mosaic__card--2,
.dwdg-expertise-mosaic__card--3,
.dwdg-expertise-mosaic__card--4 { grid-column: span 3; }
.dwdg-expertise-mosaic__card--5,
.dwdg-expertise-mosaic__card--6 { grid-column: span 6; }
.dwdg-expertise-mosaic__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.dwdg-expertise-mosaic__card:hover img { transform: scale(1.045); }
.dwdg-expertise-mosaic__card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 38px;
  padding: 10px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(255,255,255,.92);
  border-radius: 0 clamp(18px, 2vw, 28px) 0 0;
  color: var(--ink, #10110f);
  font-size: clamp(.78rem, 1vw, .92rem);
  font-weight: 600;
  letter-spacing: -.025em;
}
.dwdg-expertise-mosaic__card--5 span,
.dwdg-expertise-mosaic__card--6 span { justify-content: flex-end; border-radius: clamp(18px, 2vw, 28px) 0 0 0; left: auto; min-width: 44%; }

.dwdg-media-text-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  min-height: clamp(160px, 18vw, 240px);
  border-radius: clamp(18px, 2.6vw, 30px);
  overflow: hidden;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 58px rgba(20,14,9,.06);
  color: inherit;
  text-decoration: none;
}
.dwdg-media-text-card--right .dwdg-media-text-card__media { order: 2; }
.dwdg-media-text-card--right .dwdg-media-text-card__body { order: 1; }
.dwdg-media-text-card__media { position: relative; min-height: inherit; background: #ddd; }
.dwdg-media-text-card__media img,
.dwdg-media-text-card__media video { width: 100%; height: 100%; display: block; object-fit: cover; }
.dwdg-media-text-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green, #12c95f);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.dwdg-media-text-card__body {
  padding: clamp(22px, 3.5vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dwdg-media-text-card__body h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 800;
  margin: 0 0 12px;
}
.dwdg-media-text-card__body p {
  font-size: clamp(.82rem, 1.1vw, .98rem);
  line-height: 1.45;
  color: var(--ink-soft, rgba(12,13,11,.65));
  margin: 0;
}
.dwdg-media-text-card--editorial { grid-template-columns: .85fr 1.15fr; }
.dwdg-media-text-card--compact { min-height: 132px; border-radius: 20px; }
.dwdg-media-text-card + .dwdg-media-text-card { margin-top: clamp(14px, 2vw, 22px); }

@media (max-width: 900px) {
  .dwdg-sector-split-intro--two-columns { display: block; width: 100%; }
  .dwdg-sector-split-intro--two-columns > .wrap { width: min(100% - clamp(32px, 8vw, 120px), 1180px); margin-inline: auto; }
  .dwdg-sector-split-intro--two-columns .dwdg-sector-split-intro__media { width: min(100% - clamp(32px, 8vw, 120px), 1180px); margin: clamp(24px,4vw,46px) auto 0; }
  .dwdg-expertise-mosaic__card--1,
  .dwdg-expertise-mosaic__card--2,
  .dwdg-expertise-mosaic__card--3,
  .dwdg-expertise-mosaic__card--4,
  .dwdg-expertise-mosaic__card--5,
  .dwdg-expertise-mosaic__card--6 { grid-column: span 6; }
}
@media (max-width: 620px) {
  .dwdg-media-text-card { grid-template-columns: 1fr; }
  .dwdg-media-text-card--right .dwdg-media-text-card__media,
  .dwdg-media-text-card--right .dwdg-media-text-card__body { order: initial; }
  .dwdg-expertise-mosaic__grid { grid-template-columns: 1fr; }
  .dwdg-expertise-mosaic__card--1,
  .dwdg-expertise-mosaic__card--2,
  .dwdg-expertise-mosaic__card--3,
  .dwdg-expertise-mosaic__card--4,
  .dwdg-expertise-mosaic__card--5,
  .dwdg-expertise-mosaic__card--6 { grid-column: auto; }
  .dwdg-video-container.has-slant .dwdg-video-container__frame,
  .dwdg-sector-split-intro__media { clip-path: none; }
}

/* ══════════════════════════════════════════════════════════════
   DWDG v45 — BLOCS EXACTS PAGE ENERGY
   Ces classes sont isolées pour éviter les conflits avec les anciens blocs.
   ══════════════════════════════════════════════════════════════ */
:root {
  --dwdg-energy-max: 1140px;
  --dwdg-energy-pad: clamp(42px, 10.3vw, 148px);
  --dwdg-energy-paper: var(--paper, #fffdf8);
  --dwdg-energy-soft: var(--soft, #eee9e4);
  --dwdg-energy-ink: var(--ink, #0c0d0b);
  --dwdg-energy-muted: var(--ink-soft, #34352f);
  --dwdg-energy-green: var(--green, #12c95f);
  --dwdg-energy-green-deep: var(--green-deep, #0aa04b);
}
.dwdg-energy-wrap {
  width: min(calc(100% - var(--dwdg-energy-pad)), var(--dwdg-energy-max));
  margin-inline: auto;
}
.dwdg-energy-section-title {
  display: block;
  color: var(--dwdg-energy-ink);
  font-size: clamp(1.28rem, 2.05vw, 1.72rem);
  line-height: 1.02;
  letter-spacing: -0.047em;
  font-weight: 800;
  margin: 0 0 clamp(22px, 3vw, 36px);
}
.dwdg-energy-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 22px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--dwdg-energy-green);
  color: #fff !important;
  font-size: clamp(.58rem, .72vw, .68rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.012em;
  text-decoration: none !important;
}
.dwdg-energy-pill:hover { background: var(--dwdg-energy-green-deep); }
.dwdg-energy-badge {
  position: absolute;
  z-index: 3;
  top: clamp(8px, 1.2vw, 14px);
  left: clamp(8px, 1.2vw, 14px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 2px 9px 3px;
  border-radius: 999px;
  background: var(--dwdg-energy-green);
  color: #fff;
  font-size: clamp(.52rem, .65vw, .62rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}

/* 01 — Hero Energy : proportion, découpe et texte à droite */
.dwdg-energy-hero {
  background: var(--dwdg-energy-paper);
  padding-top: clamp(86px, 9vw, 132px);
  padding-bottom: clamp(42px, 5.8vw, 72px);
}
.dwdg-energy-hero__head { margin-bottom: clamp(28px, 3.8vw, 44px); }
.dwdg-energy-hero__title {
  max-width: 820px;
  color: var(--dwdg-energy-ink);
  font-size: clamp(2.15rem, 3.25vw, 3.1rem);
  line-height: .94;
  letter-spacing: -0.064em;
  font-weight: 800;
  margin: 0;
}
.dwdg-energy-hero__subtitle {
  max-width: 680px;
  color: var(--dwdg-energy-muted);
  font-size: clamp(.96rem, 1.35vw, 1.15rem);
  line-height: 1.42;
  letter-spacing: -.021em;
  font-weight: 500;
  margin: clamp(20px, 2.35vw, 28px) 0 0;
}
.dwdg-energy-hero__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2.23 / 1;
  border-radius: clamp(12px, 1.4vw, 18px) clamp(12px, 1.4vw, 18px) 0 0;
  background: #d9d7d0;
  isolation: isolate;
}
.dwdg-energy-hero__media img,
.dwdg-energy-hero__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--dwdg-energy-object-position, center center);
}
.dwdg-energy-hero__placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(12,13,11,.48);
  font-weight: 700;
  font-size: .86rem;
  background:
    linear-gradient(135deg, rgba(18,201,95,.13), rgba(18,201,95,0) 42%),
    linear-gradient(180deg, #e9e6df, #d5d2ca);
}
.dwdg-energy-hero__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: var(--dwdg-energy-paper);
}
.dwdg-energy-hero--cut-diagonal .dwdg-energy-hero__media::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 28%;
  clip-path: polygon(0 100%, 100% 46%, 100% 100%, 0 100%);
}
.dwdg-energy-hero--cut-ellipse .dwdg-energy-hero__media::after {
  left: -6%;
  right: -6%;
  bottom: -24%;
  height: 46%;
  border-radius: 52% 52% 0 0 / 88% 88% 0 0;
  transform: rotate(-4.2deg);
  transform-origin: left bottom;
}
.dwdg-energy-hero--cut-none .dwdg-energy-hero__media::after { display: none; }
.dwdg-energy-hero__copy {
  width: min(70%, 640px);
  margin: clamp(16px, 2.4vw, 30px) 0 0 auto;
}
.dwdg-energy-hero__copy p {
  color: var(--dwdg-energy-muted);
  font-size: clamp(.82rem, 1.02vw, .95rem);
  line-height: 1.54;
  letter-spacing: -.013em;
  margin: 0;
}
.dwdg-energy-hero__copy p + p { margin-top: clamp(14px, 1.7vw, 22px); }
.dwdg-energy-hero__copy strong,
.dwdg-energy-hero__copy a {
  color: var(--dwdg-energy-green-deep);
  font-weight: 600;
  text-decoration: none;
}

/* 02 — Our expertise */
.dwdg-energy-expertise {
  background: var(--dwdg-energy-soft);
  padding-block: clamp(42px, 6.2vw, 74px) clamp(44px, 6.5vw, 78px);
}
.dwdg-energy-expertise__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2.1vw, 24px);
}
.dwdg-energy-expertise__card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: clamp(12px, 1.45vw, 18px);
  background: rgba(255,255,255,.52);
  box-shadow: 0 12px 32px rgba(20,14,9,.055);
}
.dwdg-energy-expertise__card--1,
.dwdg-energy-expertise__card--2,
.dwdg-energy-expertise__card--3,
.dwdg-energy-expertise__card--4 {
  grid-column: span 3;
  aspect-ratio: 1.03 / 1;
}
.dwdg-energy-expertise__card--5,
.dwdg-energy-expertise__card--6 {
  grid-column: span 6;
  aspect-ratio: 2.12 / 1;
}
.dwdg-energy-expertise__card img,
.dwdg-energy-expertise__empty {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .48s cubic-bezier(.16,1,.3,1);
}
.dwdg-energy-expertise__empty {
  background:
    radial-gradient(circle at 70% 25%, rgba(18,201,95,.17), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.75), rgba(213,211,203,.82));
}
.dwdg-energy-expertise__card:hover img { transform: scale(1.045); }
.dwdg-energy-expertise__label {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 2;
  min-width: 78%;
  min-height: clamp(28px, 3.2vw, 38px);
  padding: 8px 14px 9px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.94);
  color: var(--dwdg-energy-ink);
  border-radius: 0 clamp(14px, 1.6vw, 22px) 0 0;
  font-size: clamp(.62rem, .82vw, .76rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.02em;
}
.dwdg-energy-expertise__card--5 .dwdg-energy-expertise__label,
.dwdg-energy-expertise__card--6 .dwdg-energy-expertise__label {
  left: auto;
  right: 0;
  justify-content: flex-end;
  min-width: 44%;
  border-radius: clamp(14px, 1.6vw, 22px) 0 0 0;
}

/* 03 — Experts */
.dwdg-energy-experts {
  background: var(--dwdg-energy-paper);
  padding-block: clamp(42px, 6vw, 70px) clamp(46px, 6.6vw, 82px);
}
.dwdg-energy-experts__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(28px, 4vw, 48px);
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
}
.dwdg-energy-experts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
}
.dwdg-energy-expert {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dwdg-energy-expert__photo {
  width: min(100%, clamp(76px, 9.5vw, 122px));
  aspect-ratio: .86 / 1;
  overflow: hidden;
  border-radius: clamp(12px, 1.5vw, 18px);
  margin-bottom: clamp(12px, 1.6vw, 18px);
  background: #efeee9;
}
.dwdg-energy-expert__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.dwdg-energy-expert__photo.is-empty {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f5f2eb, #e7e5de);
}
.dwdg-energy-expert__photo.is-empty span {
  color: var(--dwdg-energy-green-deep);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 800;
}
.dwdg-energy-expert__name {
  color: var(--dwdg-energy-ink);
  font-size: clamp(.72rem, .95vw, .85rem);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 800;
  margin-bottom: 4px;
}
.dwdg-energy-expert__role {
  color: var(--dwdg-energy-green-deep);
  font-size: clamp(.55rem, .66vw, .62rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.012em;
  margin-bottom: 9px;
}
.dwdg-energy-expert__bio {
  color: var(--dwdg-energy-muted);
  font-size: clamp(.58rem, .76vw, .69rem);
  line-height: 1.35;
  letter-spacing: -.012em;
  margin: 0 0 10px;
}
.dwdg-energy-experts__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dwdg-energy-green-deep);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1;
  text-decoration: none;
  transform: translateY(12px);
}

/* 04 — Projects */
.dwdg-energy-projects {
  background: var(--dwdg-energy-soft);
  padding-block: clamp(42px, 6vw, 72px) clamp(28px, 4.5vw, 52px);
}
.dwdg-energy-projects__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 22px);
}
.dwdg-energy-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(112px, 12.8vw, 154px);
  overflow: hidden;
  border-radius: clamp(16px, 2vw, 24px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 30px rgba(20,14,9,.035);
}
.dwdg-energy-project.is-reversed .dwdg-energy-project__media { order: 2; }
.dwdg-energy-project.is-reversed .dwdg-energy-project__copy { order: 1; }
.dwdg-energy-project__media {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  background: #d9d6ce;
  text-decoration: none;
}
.dwdg-energy-project__media img,
.dwdg-energy-project__empty {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .48s cubic-bezier(.16,1,.3,1);
}
.dwdg-energy-project__empty {
  background:
    radial-gradient(circle at 20% 22%, rgba(18,201,95,.16), transparent 36%),
    linear-gradient(135deg, #d8d5cc, #b9b6ac);
}
.dwdg-energy-project:hover .dwdg-energy-project__media img { transform: scale(1.035); }
.dwdg-energy-project__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 2.6vw, 30px) clamp(20px, 3vw, 36px);
}
.dwdg-energy-project__copy h3 {
  color: var(--dwdg-energy-ink);
  font-size: clamp(.82rem, 1.15vw, 1.05rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 0 0 clamp(8px, 1vw, 12px);
}
.dwdg-energy-project__copy h3 a { color: inherit; text-decoration: none; }
.dwdg-energy-project__copy h3 a:hover { color: var(--dwdg-energy-green-deep); }
.dwdg-energy-project__copy p {
  color: var(--dwdg-energy-muted);
  font-size: clamp(.62rem, .82vw, .74rem);
  line-height: 1.38;
  letter-spacing: -.012em;
  margin: 0;
  max-width: 390px;
}

/* 05 — Publications */
.dwdg-energy-publications {
  background: var(--dwdg-energy-soft);
  padding-block: clamp(18px, 3vw, 34px) clamp(52px, 7.5vw, 90px);
}
.dwdg-energy-publications__stage {
  display: grid;
  grid-template-columns: clamp(28px, 3.8vw, 44px) minmax(0, 1fr) clamp(28px, 3.8vw, 44px);
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
}
.dwdg-energy-publications__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 3.8vw, 44px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--dwdg-energy-green);
  color: #fff !important;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(18,201,95,.18);
}
.dwdg-energy-publications__nav:hover { background: var(--dwdg-energy-green-deep); }
.dwdg-energy-publication {
  display: grid;
  grid-template-columns: minmax(180px, .88fr) minmax(0, 1.12fr);
  min-height: clamp(210px, 22vw, 284px);
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 24px);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 40px rgba(20,14,9,.035);
}
.dwdg-energy-publication__cover-wrap {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 46px);
}
.dwdg-energy-publication__cover-wrap img {
  width: min(100%, clamp(116px, 14vw, 170px));
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(20,14,9,.12);
  background: #fff;
}
.dwdg-energy-publication__cover-fallback {
  position: relative;
  width: min(100%, clamp(116px, 14vw, 170px));
  aspect-ratio: .72;
  overflow: hidden;
  border-radius: 6px;
  background: #f8fff8;
  box-shadow: 0 14px 34px rgba(20,14,9,.12);
  padding: clamp(20px, 2.4vw, 30px) clamp(16px, 2vw, 24px);
}
.dwdg-energy-publication__cover-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 52%, rgba(18,201,95,.24) 52% 72%, transparent 72%),
    linear-gradient(128deg, transparent 64%, rgba(18,201,95,.54) 64% 80%, transparent 80%);
}
.dwdg-energy-publication__cover-fallback strong,
.dwdg-energy-publication__cover-fallback span { position: relative; z-index: 1; }
.dwdg-energy-publication__cover-fallback strong {
  display: block;
  color: var(--dwdg-energy-green-deep);
  font-size: clamp(.92rem, 1.45vw, 1.18rem);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 800;
}
.dwdg-energy-publication__cover-fallback span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: var(--dwdg-energy-ink);
  font-weight: 800;
  letter-spacing: -.12em;
}
.dwdg-energy-publication__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 4.4vw, 54px) clamp(28px, 5vw, 62px);
}
.dwdg-energy-publication__copy h3 {
  color: var(--dwdg-energy-ink);
  font-size: clamp(.94rem, 1.28vw, 1.15rem);
  line-height: 1.18;
  letter-spacing: -.032em;
  font-weight: 700;
  margin: 0 0 clamp(18px, 2.4vw, 30px);
  max-width: 470px;
}

/* 06 — Other insights */
.dwdg-energy-insights {
  background: var(--dwdg-energy-paper);
  padding-block: clamp(44px, 6.6vw, 78px) clamp(60px, 8vw, 96px);
}
.dwdg-energy-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4.2vw, 72px);
  align-items: start;
}
.dwdg-energy-insight-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: clamp(12px, 1.45vw, 18px);
  background: #d8d5cc;
  box-shadow: 0 12px 34px rgba(20,14,9,.06);
}
.dwdg-energy-insight-card a {
  position: relative;
  display: block;
  aspect-ratio: .76 / 1;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.dwdg-energy-insight-card img,
.dwdg-energy-insight-card__empty {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .48s cubic-bezier(.16,1,.3,1);
}
.dwdg-energy-insight-card__empty {
  background:
    radial-gradient(circle at 74% 18%, rgba(18,201,95,.2), transparent 36%),
    linear-gradient(135deg, #929d9f, #3c4a4e);
}
.dwdg-energy-insight-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 38%, rgba(0,0,0,.46) 100%);
}
.dwdg-energy-insight-card:hover img { transform: scale(1.04); }
.dwdg-energy-insight-card h3 {
  position: absolute;
  z-index: 2;
  left: clamp(12px, 1.5vw, 18px);
  right: clamp(12px, 1.5vw, 18px);
  bottom: clamp(14px, 1.7vw, 22px);
  color: #fff;
  font-size: clamp(.74rem, 1vw, .92rem);
  line-height: 1.11;
  letter-spacing: -.032em;
  font-weight: 700;
  margin: 0;
}

/* 07 — Contact */
.dwdg-energy-contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(103deg, #edfdf4 0%, #d7fae4 20%, #9af0bd 48%, #12c95f 100%);
}
.dwdg-energy-contact__inner {
  min-height: clamp(340px, 36vw, 430px);
  display: grid;
  grid-template-columns: minmax(210px, .34fr) minmax(0, .66fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}
.dwdg-energy-contact__photo {
  align-self: end;
  justify-self: start;
  width: min(100%, clamp(220px, 25vw, 330px));
  height: clamp(280px, 34vw, 405px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dwdg-energy-contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
.dwdg-energy-contact__photo.is-empty {
  align-self: center;
  height: clamp(180px, 22vw, 260px);
  border-radius: 26px 26px 0 0;
  background: rgba(255,255,255,.25);
}
.dwdg-energy-contact__photo.is-empty span {
  color: var(--dwdg-energy-green-deep);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 800;
}
.dwdg-energy-contact__body {
  align-self: center;
  max-width: 700px;
  padding-block: clamp(54px, 7vw, 88px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dwdg-energy-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--dwdg-energy-ink);
  font-size: clamp(.64rem, .75vw, .72rem);
  font-weight: 500;
  letter-spacing: -.012em;
  margin-bottom: clamp(16px, 2vw, 24px);
}
.dwdg-energy-contact__body h2 {
  color: var(--dwdg-energy-ink);
  font-size: clamp(1.42rem, 2.05vw, 1.82rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 800;
  margin: 0 0 clamp(12px, 1.5vw, 18px);
}
.dwdg-energy-contact__body strong {
  color: var(--dwdg-energy-ink);
  font-size: clamp(.75rem, .92vw, .86rem);
  line-height: 1.2;
  letter-spacing: -.015em;
  font-weight: 600;
  margin-bottom: clamp(18px, 2.1vw, 26px);
}
.dwdg-energy-contact__body p {
  color: rgba(12,13,11,.82);
  font-size: clamp(.68rem, .88vw, .82rem);
  line-height: 1.46;
  letter-spacing: -.012em;
  max-width: 640px;
  margin: 0 0 clamp(18px, 2.2vw, 28px);
}
.dwdg-energy-contact__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dwdg-energy-ink) !important;
  font-size: clamp(.66rem, .82vw, .76rem);
  line-height: 1;
  font-weight: 500;
  text-decoration: none !important;
}
.dwdg-energy-contact__email svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

@media (max-width: 900px) {
  :root { --dwdg-energy-pad: clamp(34px, 7vw, 72px); }
  .dwdg-energy-experts__layout { grid-template-columns: 1fr; }
  .dwdg-energy-experts__arrow { display: none; }
  .dwdg-energy-experts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dwdg-energy-insights__grid { gap: clamp(16px, 3vw, 28px); }
}
@media (max-width: 720px) {
  :root { --dwdg-energy-pad: 40px; }
  .dwdg-energy-hero__copy { width: 100%; }
  .dwdg-energy-hero--cut-ellipse .dwdg-energy-hero__media::after,
  .dwdg-energy-hero--cut-diagonal .dwdg-energy-hero__media::after { display: none; }
  .dwdg-energy-hero__media { border-radius: 16px; }
  .dwdg-energy-expertise__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dwdg-energy-expertise__card--1,
  .dwdg-energy-expertise__card--2,
  .dwdg-energy-expertise__card--3,
  .dwdg-energy-expertise__card--4,
  .dwdg-energy-expertise__card--5,
  .dwdg-energy-expertise__card--6 { grid-column: auto; aspect-ratio: 1.15 / 1; }
  .dwdg-energy-project,
  .dwdg-energy-project.is-reversed { grid-template-columns: 1fr; }
  .dwdg-energy-project.is-reversed .dwdg-energy-project__media,
  .dwdg-energy-project.is-reversed .dwdg-energy-project__copy { order: initial; }
  .dwdg-energy-project__media { min-height: 180px; }
  .dwdg-energy-publications__stage { grid-template-columns: 1fr; }
  .dwdg-energy-publications__nav { display: none; }
  .dwdg-energy-publication { grid-template-columns: 1fr; }
  .dwdg-energy-insights__grid { grid-template-columns: 1fr; }
  .dwdg-energy-insight-card a { aspect-ratio: 1.25 / 1; }
  .dwdg-energy-contact__inner { grid-template-columns: 1fr; gap: 0; }
  .dwdg-energy-contact__photo { justify-self: center; order: 2; height: 300px; }
  .dwdg-energy-contact__body { order: 1; padding-bottom: 20px; }
}
@media (max-width: 520px) {
  :root { --dwdg-energy-pad: 28px; }
  .dwdg-energy-hero__title { font-size: clamp(2rem, 11vw, 2.65rem); }
  .dwdg-energy-expertise__grid,
  .dwdg-energy-experts__grid { grid-template-columns: 1fr; }
}


/* ================================================================
   DWDG v45.1 — réglages de fidélité Energy
   ================================================================ */
:root { --dwdg-energy-pad: clamp(96px, 21vw, 300px); }

/* Le rendu attendu est une diagonale droite. Même l'ancien réglage "ellipse" est corrigé en diagonale. */
.dwdg-energy-hero--cut-ellipse .dwdg-energy-hero__media::after,
.dwdg-energy-hero--cut-diagonal .dwdg-energy-hero__media::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 28%;
  border-radius: 0;
  transform: none;
  transform-origin: initial;
  background: var(--dwdg-energy-paper);
  clip-path: polygon(0 100%, 100% 46%, 100% 100%, 0 100%);
}

/* L'ancien bloc vidéo conserve une vraie coupe droite, jamais d'ellipse. */
.dwdg-video-container.has-slant .dwdg-video-container__frame {
  clip-path: none !important;
  position: relative;
  border-radius: clamp(12px, 1.4vw, 18px) clamp(12px, 1.4vw, 18px) 0 0 !important;
}
.dwdg-video-container.has-slant .dwdg-video-container__frame::after {
  content: "";
  position: absolute;
  inset: auto -1px -1px -1px;
  z-index: 3;
  height: 28%;
  background: var(--paper);
  clip-path: polygon(0 100%, 100% 46%, 100% 100%, 0 100%);
  pointer-events: none;
}

/* Template blocs : aucune marge/titre parasite, les blocs pilotent toute la mise en page. */
.page-template-template-dwdg-blocks #main-content,
.page-template-template-energy-dwdg #main-content { background: var(--paper); }

@media (max-width: 720px) {
  :root { --dwdg-energy-pad: 40px; }
}
@media (max-width: 520px) {
  :root { --dwdg-energy-pad: 28px; }
}

/* Espacement neutre pour assembler précisément les sections. */
.dwdg-section-surface--none { padding-block: 0; }

/* ================================================================
   ENERGY SIMPLE PAGE - one block, fixed design, no surprises
   ================================================================ */
body:has(.dwdg-energy-simple-page) { background:#fbfaf6; }
.dwdg-energy-simple-page,
.dwdg-energy-simple-page * { box-sizing:border-box; }
.dwdg-energy-simple-page {
  --des-bg:#fbfaf6;
  --des-surface:#f1ebe7;
  --des-ink:#2d2f2c;
  --des-green:#13c86b;
  width:488px;
  max-width:100%;
  margin:0 auto;
  background:var(--des-bg);
  color:var(--des-ink);
  font-family:Inter, Arial, sans-serif;
  line-height:1.15;
  overflow:hidden;
}
.dwdg-energy-simple-page .des-inner { width:388px; max-width:calc(100% - 40px); margin:0 auto; }
.dwdg-energy-simple-page h1,
.dwdg-energy-simple-page h2,
.dwdg-energy-simple-page h3,
.dwdg-energy-simple-page p { margin:0; }
.dwdg-energy-simple-page a { color:var(--des-green); text-decoration:none; }
.dwdg-energy-simple-page img { display:block; max-width:100%; }

.dwdg-energy-simple-page .des-hero { padding:44px 0 26px; }
.dwdg-energy-simple-page .des-hero h1 { font-size:17px; line-height:.98; letter-spacing:-.04em; font-weight:850; margin-bottom:20px; }
.dwdg-energy-simple-page .des-lead { width:260px; font-size:9px; line-height:1.2; font-weight:500; margin-bottom:12px; }
.dwdg-energy-simple-page .des-hero-media { position:relative; width:388px; height:174px; margin:0; overflow:hidden; border-radius:7px 7px 0 0; background:#ddd; clip-path:polygon(0 0,100% 0,100% 76%,0 100%); }
.dwdg-energy-simple-page .des-hero-media img { width:100%; height:100%; object-fit:cover; }
.dwdg-energy-simple-page .des-intro-copy { width:258px; margin:9px 0 0 auto; font-size:7px; line-height:1.18; }
.dwdg-energy-simple-page .des-intro-copy p + p { margin-top:10px; }

.dwdg-energy-simple-page .des-surface { background:var(--des-surface); }
.dwdg-energy-simple-page .des-expertise { padding:22px 0 28px; }
.dwdg-energy-simple-page h2 { font-size:12px; line-height:1; letter-spacing:-.035em; font-weight:850; margin-bottom:20px; }
.dwdg-energy-simple-page .des-expertise-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.dwdg-energy-simple-page .des-expertise-grid article { position:relative; height:72px; border-radius:8px; overflow:hidden; background:#ddd; }
.dwdg-energy-simple-page .des-expertise-grid article.wide { grid-column:span 2; }
.dwdg-energy-simple-page .des-expertise-grid img { width:100%; height:100%; object-fit:cover; }
.dwdg-energy-simple-page .des-expertise-grid span { position:absolute; right:0; bottom:0; min-width:48px; padding:5px 8px 5px 10px; border-radius:12px 0 0 0; background:#fff; font-size:6px; font-weight:500; }

.dwdg-energy-simple-page .des-experts { padding:24px 0 28px; }
.dwdg-energy-simple-page .des-experts-row { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:25px; padding-right:12px; }
.dwdg-energy-simple-page .des-experts-row article { min-width:0; }
.dwdg-energy-simple-page .des-experts-row img { width:38px; height:38px; border-radius:50%; object-fit:cover; margin-bottom:8px; }
.dwdg-energy-simple-page .des-experts-row h3 { font-size:6.4px; line-height:1.05; font-weight:850; margin-bottom:3px; }
.dwdg-energy-simple-page .des-experts-row .role { font-size:5.8px; color:var(--des-green); margin-bottom:7px; font-weight:600; }
.dwdg-energy-simple-page .des-experts-row p:not(.role) { font-size:5.4px; line-height:1.12; color:#40423f; margin-bottom:7px; }
.dwdg-energy-simple-page .des-experts-row a { display:inline-block; border-radius:10px; background:var(--des-green); color:#fff; padding:3px 7px; font-size:5px; font-weight:700; }
.dwdg-energy-simple-page .des-arrow { position:absolute; right:-6px; top:48px; color:var(--des-green); font-size:28px; line-height:1; font-weight:200; }

.dwdg-energy-simple-page .des-projects { padding:22px 0 30px; }
.dwdg-energy-simple-page .des-project-list { display:grid; gap:10px; }
.dwdg-energy-simple-page .des-project-list article { display:grid; grid-template-columns:1fr 1fr; min-height:75px; border-radius:9px; overflow:hidden; background:#fff; }
.dwdg-energy-simple-page .des-project-list article.image-right .pic { grid-column:2; grid-row:1; }
.dwdg-energy-simple-page .des-project-list article.image-right .txt { grid-column:1; grid-row:1; }
.dwdg-energy-simple-page .des-project-list .pic { position:relative; min-height:75px; }
.dwdg-energy-simple-page .des-project-list img { width:100%; height:100%; object-fit:cover; }
.dwdg-energy-simple-page .des-project-list .pic span { position:absolute; left:8px; top:7px; background:var(--des-green); color:#fff; border-radius:8px; padding:3px 6px; font-size:5px; font-weight:700; }
.dwdg-energy-simple-page .des-project-list .txt { padding:15px 11px 10px 12px; }
.dwdg-energy-simple-page .des-project-list h3 { font-size:7.2px; line-height:1.05; font-weight:850; margin-bottom:7px; }
.dwdg-energy-simple-page .des-project-list p { font-size:5.4px; line-height:1.15; color:#3d3f3c; }

.dwdg-energy-simple-page .des-pub-title { margin-top:26px; }
.dwdg-energy-simple-page .des-publication-wrap { position:relative; display:grid; grid-template-columns:24px 1fr 24px; align-items:center; gap:9px; }
.dwdg-energy-simple-page .des-publication-wrap button { width:20px; height:20px; border:0; border-radius:50%; background:var(--des-green); color:#fff; font-size:18px; line-height:18px; display:grid; place-items:center; padding:0; }
.dwdg-energy-simple-page .des-publication { display:grid; grid-template-columns:110px 1fr; align-items:center; min-height:154px; border-radius:10px; background:#fff; padding:18px 34px 18px 24px; gap:22px; box-shadow:0 12px 30px rgba(0,0,0,.03); }
.dwdg-energy-simple-page .des-publication img { width:92px; height:128px; object-fit:cover; border-radius:4px; }
.dwdg-energy-simple-page .des-publication h3 { font-size:7.5px; font-weight:850; line-height:1.05; margin-bottom:2px; }
.dwdg-energy-simple-page .des-publication p { font-size:7px; line-height:1.15; margin-bottom:16px; }
.dwdg-energy-simple-page .des-publication a { display:inline-block; border-radius:9px; background:var(--des-green); color:#fff; padding:4px 7px; font-size:5px; font-weight:700; }

.dwdg-energy-simple-page .des-insights { padding:24px 0 28px; background:#fff; }
.dwdg-energy-simple-page .des-insights-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.dwdg-energy-simple-page .des-insights-grid article { position:relative; height:116px; border-radius:7px; overflow:hidden; background:#ddd; }
.dwdg-energy-simple-page .des-insights-grid img { width:100%; height:100%; object-fit:cover; }
.dwdg-energy-simple-page .des-insights-grid span { position:absolute; left:7px; top:7px; border-radius:8px; background:var(--des-green); color:#fff; padding:3px 6px; font-size:5px; font-weight:700; }
.dwdg-energy-simple-page .des-insights-grid h3 { position:absolute; left:8px; right:8px; bottom:8px; color:#fff; font-size:7px; line-height:1.02; font-weight:750; text-shadow:0 1px 6px rgba(0,0,0,.5); }

.dwdg-energy-simple-page .des-contact { background:linear-gradient(105deg,#e8fff5 0%,#c9f8df 43%,#21d874 100%); height:223px; overflow:hidden; }
.dwdg-energy-simple-page .des-contact-inner { position:relative; height:223px; }
.dwdg-energy-simple-page .des-contact-inner > img { position:absolute; left:-35px; bottom:0; width:164px; height:auto; }
.dwdg-energy-simple-page .des-contact-text { width:242px; margin-left:auto; padding-top:44px; }
.dwdg-energy-simple-page .des-contact-text span { display:inline-block; padding:6px 10px; border-radius:14px; background:#fff; font-size:6px; margin-bottom:14px; }
.dwdg-energy-simple-page .des-contact-text h2 { font-size:16px; line-height:.92; margin-bottom:11px; }
.dwdg-energy-simple-page .des-contact-text .role { font-size:7px; font-weight:500; margin-bottom:12px; }
.dwdg-energy-simple-page .des-contact-text p:not(.role):not(.mail) { font-size:6px; line-height:1.18; width:236px; margin-bottom:13px; }
.dwdg-energy-simple-page .des-contact-text .mail { font-size:6px; }

@media (max-width:520px) {
  .dwdg-energy-simple-page { width:100%; }
  .dwdg-energy-simple-page .des-inner { width:min(388px, calc(100% - 40px)); }
  .dwdg-energy-simple-page .des-hero-media { width:100%; }
}

/* =============================================================
   DWDG v47 - correctif largeur/espacement blocs Energy
   Objectif : supprimer le rendu serre et rendre les blocs utilisables
   sur desktop, meme lorsqu'ils sont inseres un par un dans Gutenberg.
   ============================================================= */
body.page-template-template-energy-dwdg,
body.page-template-template-energy-dwdg-php {
  background: var(--paper, #fffdf8);
}
body.page-template-template-energy-dwdg .site-main,
body.page-template-template-energy-dwdg #main,
body.page-template-template-energy-dwdg-php .site-main,
body.page-template-template-energy-dwdg-php #main,
.dwdg-energy-page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
}
.dwdg-energy-page > * {
  max-width: none;
}
.dwdg-energy-page .wrap,
.dwdg-energy-page .wp-block-group__inner-container {
  width: min(100% - clamp(40px, 13vw, 180px), 900px) !important;
  max-width: 900px !important;
  margin-inline: auto !important;
}
.dwdg-energy-page .dwdg-energy-wrap {
  width: min(100% - clamp(40px, 13vw, 180px), 900px) !important;
  max-width: 900px !important;
}

/* Bloc 01 hero Energy : plus large, moins miniaturise */
.dwdg-energy-page .dwdg-energy-hero {
  padding-top: clamp(90px, 10vw, 150px) !important;
  padding-bottom: clamp(52px, 7vw, 86px) !important;
}
.dwdg-energy-page .dwdg-energy-hero__title {
  font-size: clamp(3.1rem, 6.2vw, 5.25rem) !important;
  line-height: .88 !important;
  letter-spacing: -.07em !important;
}
.dwdg-energy-page .dwdg-energy-hero__subtitle {
  max-width: 720px !important;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem) !important;
  line-height: 1.32 !important;
}
.dwdg-energy-page .dwdg-energy-hero__media {
  aspect-ratio: 2.23/1 !important;
  min-height: 300px !important;
  border-radius: 16px 16px 0 0 !important;
}
.dwdg-energy-page .dwdg-energy-hero--cut-diagonal .dwdg-energy-hero__media::after,
.dwdg-energy-page .dwdg-energy-hero--cut-ellipse .dwdg-energy-hero__media::after {
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  height: 30% !important;
  border-radius: 0 !important;
  transform: none !important;
  clip-path: polygon(0 100%, 100% 42%, 100% 100%, 0 100%) !important;
  background: var(--paper, #fffdf8) !important;
}
.dwdg-energy-page .dwdg-energy-hero__copy {
  width: min(72%, 650px) !important;
  margin: clamp(22px, 3vw, 34px) 0 0 auto !important;
}
.dwdg-energy-page .dwdg-energy-hero__copy p {
  font-size: clamp(.95rem, 1.25vw, 1.08rem) !important;
  line-height: 1.5 !important;
}

/* Blocs generiques utilises manuellement : largeur + respiration */
.dwdg-energy-page .section-heading,
.dwdg-energy-page .dwdg-section-heading-block {
  margin-top: clamp(44px, 6vw, 74px) !important;
  margin-bottom: clamp(22px, 3vw, 34px) !important;
}
.dwdg-energy-page .section-heading h2,
.dwdg-energy-page .dwdg-section-heading-block h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem) !important;
  line-height: .98 !important;
}
.dwdg-energy-page .dwdg-expertise-badge-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 28px) !important;
  margin-block: clamp(22px, 4vw, 46px) !important;
}
.dwdg-energy-page .dwdg-expertise-pill {
  min-height: 260px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.07) !important;
}
.dwdg-energy-page .dwdg-expertise-pill__img {
  height: 126px !important;
}
.dwdg-energy-page .dwdg-expertise-pill__content {
  padding: 18px 18px 20px !important;
}
.dwdg-energy-page .dwdg-expertise-pill__label {
  font-size: 1rem !important;
  line-height: 1.05 !important;
}
.dwdg-energy-page .dwdg-expertise-pill__desc {
  max-height: none !important;
  opacity: 1 !important;
  margin-top: 10px !important;
  overflow: visible !important;
  font-size: .86rem !important;
  line-height: 1.35 !important;
}
.dwdg-energy-page .dwdg-experts-row,
.dwdg-energy-page .dwdg-energy-experts__grid {
  gap: clamp(22px, 3vw, 38px) !important;
}
.dwdg-energy-page .dwdg-expert-card,
.dwdg-energy-page .dwdg-energy-expert {
  padding: 0 !important;
}
.dwdg-energy-page .dwdg-energy-projects__stack,
.dwdg-energy-page .dwdg-energy-projects .des-project-list,
.dwdg-energy-page .projects-list,
.dwdg-energy-page .dwdg-projects-list {
  gap: clamp(14px, 2vw, 22px) !important;
}

/* Bloc SIMPLE entier : agrandi, stabilise, proche de la maquette */
.dwdg-energy-simple-page {
  --des-bg:#fbfaf6;
  --des-surface:#f1ebe7;
  --des-ink:#2d2f2c;
  --des-green:#13c86b;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--des-bg);
  color: var(--des-ink);
}
.dwdg-energy-simple-page .des-inner {
  width: min(100% - clamp(40px, 13vw, 180px), 900px) !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}
.dwdg-energy-simple-page h2 { font-size: clamp(1.45rem, 2.2vw, 2rem) !important; line-height: 1; margin-bottom: clamp(22px, 3vw, 34px) !important; }
.dwdg-energy-simple-page .des-hero { padding: clamp(94px, 10vw, 146px) 0 clamp(52px, 7vw, 82px) !important; }
.dwdg-energy-simple-page .des-hero h1 { font-size: clamp(3.1rem, 6vw, 5rem) !important; line-height:.88 !important; margin-bottom: clamp(22px,3vw,34px) !important; }
.dwdg-energy-simple-page .des-lead { width:min(720px,100%) !important; font-size: clamp(1.08rem,1.75vw,1.4rem) !important; line-height:1.34 !important; margin-bottom: clamp(26px,4vw,48px) !important; }
.dwdg-energy-simple-page .des-hero-media { width:100% !important; height:auto !important; aspect-ratio:2.23/1 !important; min-height:300px !important; border-radius:16px 16px 0 0 !important; clip-path:polygon(0 0,100% 0,100% 76%,0 100%) !important; }
.dwdg-energy-simple-page .des-intro-copy { width:min(68%,620px) !important; margin:clamp(24px,3vw,38px) 0 0 auto !important; font-size:clamp(.96rem,1.2vw,1.08rem) !important; line-height:1.5 !important; }
.dwdg-energy-simple-page .des-intro-copy p + p { margin-top: clamp(14px,2vw,22px) !important; }
.dwdg-energy-simple-page .des-expertise { padding: clamp(54px,7vw,82px) 0 clamp(62px,8vw,94px) !important; }
.dwdg-energy-simple-page .des-expertise-grid { gap: clamp(18px,2.5vw,30px) !important; }
.dwdg-energy-simple-page .des-expertise-grid article { height:auto !important; aspect-ratio:1.02/1 !important; border-radius:16px !important; }
.dwdg-energy-simple-page .des-expertise-grid article.wide { aspect-ratio:2.12/1 !important; }
.dwdg-energy-simple-page .des-expertise-grid span { min-width:94px !important; padding:9px 16px 10px !important; border-radius:20px 0 0 0 !important; font-size:.84rem !important; }
.dwdg-energy-simple-page .des-experts { padding: clamp(58px,7vw,88px) 0 clamp(64px,8vw,98px) !important; }
.dwdg-energy-simple-page .des-experts-row { gap: clamp(34px,4vw,56px) !important; }
.dwdg-energy-simple-page .des-experts-row img { width:76px !important; height:76px !important; margin-bottom:14px !important; }
.dwdg-energy-simple-page .des-experts-row h3 { font-size: .98rem !important; line-height:1.05 !important; margin-bottom:6px !important; }
.dwdg-energy-simple-page .des-experts-row .role { font-size:.82rem !important; margin-bottom:12px !important; }
.dwdg-energy-simple-page .des-experts-row p:not(.role) { font-size:.82rem !important; line-height:1.32 !important; margin-bottom:14px !important; }
.dwdg-energy-simple-page .des-experts-row a { padding:6px 12px !important; font-size:.72rem !important; }
.dwdg-energy-simple-page .des-arrow { right:-20px !important; top:96px !important; font-size:56px !important; }
.dwdg-energy-simple-page .des-projects { padding: clamp(58px,7vw,88px) 0 clamp(66px,8vw,100px) !important; }
.dwdg-energy-simple-page .des-project-list { gap: clamp(18px,2.5vw,26px) !important; }
.dwdg-energy-simple-page .des-project-list article { min-height:150px !important; border-radius:18px !important; }
.dwdg-energy-simple-page .des-project-list .pic { min-height:150px !important; }
.dwdg-energy-simple-page .des-project-list .pic span { left:14px !important; top:14px !important; padding:5px 11px !important; font-size:.72rem !important; }
.dwdg-energy-simple-page .des-project-list .txt { padding:30px 24px 20px !important; }
.dwdg-energy-simple-page .des-project-list h3 { font-size:1.05rem !important; line-height:1.08 !important; margin-bottom:13px !important; }
.dwdg-energy-simple-page .des-project-list p { font-size:.82rem !important; line-height:1.35 !important; }
.dwdg-energy-simple-page .des-pub-title { margin-top: clamp(54px,7vw,82px) !important; }
.dwdg-energy-simple-page .des-publication-wrap { grid-template-columns:42px 1fr 42px !important; gap:18px !important; }
.dwdg-energy-simple-page .des-publication-wrap button { width:38px !important; height:38px !important; font-size:30px !important; line-height:30px !important; }
.dwdg-energy-simple-page .des-publication { grid-template-columns:220px 1fr !important; min-height:308px !important; border-radius:18px !important; padding:36px 68px 36px 48px !important; gap:44px !important; }
.dwdg-energy-simple-page .des-publication img { width:184px !important; height:256px !important; }
.dwdg-energy-simple-page .des-publication h3 { font-size:1.05rem !important; }
.dwdg-energy-simple-page .des-publication p { font-size:1rem !important; line-height:1.3 !important; margin-bottom:26px !important; }
.dwdg-energy-simple-page .des-publication a { padding:7px 13px !important; font-size:.72rem !important; }
.dwdg-energy-simple-page .des-insights { padding: clamp(58px,7vw,86px) 0 clamp(68px,8vw,104px) !important; }
.dwdg-energy-simple-page .des-insights-grid { gap: clamp(30px,4vw,52px) !important; }
.dwdg-energy-simple-page .des-insights-grid article { height:auto !important; aspect-ratio:.76/1 !important; border-radius:14px !important; }
.dwdg-energy-simple-page .des-insights-grid span { left:13px !important; top:13px !important; padding:5px 11px !important; font-size:.72rem !important; }
.dwdg-energy-simple-page .des-insights-grid h3 { left:15px !important; right:15px !important; bottom:15px !important; font-size:.98rem !important; line-height:1.05 !important; }
.dwdg-energy-simple-page .des-contact { height:auto !important; min-height:446px !important; }
.dwdg-energy-simple-page .des-contact-inner { height:446px !important; }
.dwdg-energy-simple-page .des-contact-inner > img { left:-70px !important; width:328px !important; }
.dwdg-energy-simple-page .des-contact-text { width:min(470px,58%) !important; padding-top:88px !important; }
.dwdg-energy-simple-page .des-contact-text span { padding:10px 17px !important; font-size:.78rem !important; margin-bottom:24px !important; }
.dwdg-energy-simple-page .des-contact-text h2 { font-size:2.35rem !important; line-height:.9 !important; margin-bottom:16px !important; }
.dwdg-energy-simple-page .des-contact-text .role { font-size:.95rem !important; margin-bottom:18px !important; }
.dwdg-energy-simple-page .des-contact-text p:not(.role):not(.mail) { width:100% !important; font-size:.9rem !important; line-height:1.38 !important; margin-bottom:20px !important; }
.dwdg-energy-simple-page .des-contact-text .mail { font-size:.86rem !important; }

@media (max-width: 760px) {
  .dwdg-energy-page .wrap,
  .dwdg-energy-page .wp-block-group__inner-container,
  .dwdg-energy-page .dwdg-energy-wrap,
  .dwdg-energy-simple-page .des-inner { width: min(100% - 32px, 560px) !important; }
  .dwdg-energy-page .dwdg-expertise-badge-grid,
  .dwdg-energy-simple-page .des-expertise-grid,
  .dwdg-energy-simple-page .des-experts-row,
  .dwdg-energy-simple-page .des-insights-grid { grid-template-columns: 1fr 1fr !important; }
  .dwdg-energy-simple-page .des-expertise-grid article.wide { grid-column: span 2; }
  .dwdg-energy-page .dwdg-energy-hero__media,
  .dwdg-energy-simple-page .des-hero-media { min-height: 190px !important; }
  .dwdg-energy-page .dwdg-energy-hero__copy,
  .dwdg-energy-simple-page .des-intro-copy { width: 100% !important; }
  .dwdg-energy-simple-page .des-project-list article,
  .dwdg-energy-simple-page .des-publication { grid-template-columns: 1fr !important; }
  .dwdg-energy-simple-page .des-project-list article.image-right .pic,
  .dwdg-energy-simple-page .des-project-list article.image-right .txt { grid-column:auto !important; grid-row:auto !important; }
  .dwdg-energy-simple-page .des-publication-wrap { grid-template-columns: 1fr !important; }
  .dwdg-energy-simple-page .des-publication-wrap button { display:none !important; }
  .dwdg-energy-simple-page .des-contact-inner { height:auto !important; min-height:0 !important; display:flex; flex-direction:column; padding-top:42px; }
  .dwdg-energy-simple-page .des-contact-inner > img { position:static !important; width:210px !important; order:2; }
  .dwdg-energy-simple-page .des-contact-text { width:100% !important; padding-top:0 !important; }
}

/* ============================================================
   DWDG ENERGY V48 HARD FIX - blocks breathe, no mini-column
   ============================================================ */
body .entry-content > .wp-block-dwdg-energy-hero,
body .entry-content > .wp-block-dwdg-energy-expertise,
body .entry-content > .wp-block-dwdg-energy-experts,
body .entry-content > .wp-block-dwdg-energy-projects,
body .entry-content > .wp-block-dwdg-energy-publications,
body .entry-content > .wp-block-dwdg-energy-insights,
body .entry-content > .wp-block-dwdg-energy-contact,
body .entry-content > .wp-block-dwdg-energy-page-simple,
body .wp-site-blocks .wp-block-dwdg-energy-hero,
body .wp-site-blocks .wp-block-dwdg-energy-expertise,
body .wp-site-blocks .wp-block-dwdg-energy-experts,
body .wp-site-blocks .wp-block-dwdg-energy-projects,
body .wp-site-blocks .wp-block-dwdg-energy-publications,
body .wp-site-blocks .wp-block-dwdg-energy-insights,
body .wp-site-blocks .wp-block-dwdg-energy-contact,
body .wp-site-blocks .wp-block-dwdg-energy-page-simple {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body .dwdg-energy-hero,
body .dwdg-energy-expertise,
body .dwdg-energy-experts,
body .dwdg-energy-projects,
body .dwdg-energy-publications,
body .dwdg-energy-insights,
body .dwdg-energy-contact,
body .dwdg-energy-simple-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing: border-box !important;
}
body .dwdg-energy-wrap,
body .dwdg-energy-simple-page .des-inner {
  width: min(calc(100vw - 64px), 840px) !important;
  max-width: 840px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}
body .dwdg-energy-hero { padding: 104px 0 64px !important; background:#fbfaf6 !important; }
body .dwdg-energy-hero__title { font-size: clamp(44px, 5.6vw, 72px) !important; line-height:.88 !important; letter-spacing:-.065em !important; margin:0 0 28px !important; max-width:840px !important; }
body .dwdg-energy-hero__subtitle { font-size: clamp(18px, 1.7vw, 22px) !important; line-height:1.34 !important; max-width:740px !important; margin:0 !important; }
body .dwdg-energy-hero__media { width:100% !important; min-height:330px !important; aspect-ratio:2.23/1 !important; border-radius:16px 16px 0 0 !important; margin-top:44px !important; }
body .dwdg-energy-hero--cut-diagonal .dwdg-energy-hero__media::after,
body .dwdg-energy-hero--cut-ellipse .dwdg-energy-hero__media::after { left:0 !important; right:0 !important; bottom:-1px !important; height:30% !important; border-radius:0 !important; transform:none !important; clip-path:polygon(0 100%,100% 48%,100% 100%,0 100%) !important; background:#fbfaf6 !important; }
body .dwdg-energy-hero__copy { width:min(66%, 560px) !important; margin:28px 0 0 auto !important; }
body .dwdg-energy-hero__copy p { font-size:16px !important; line-height:1.48 !important; }
body .dwdg-energy-expertise,
body .dwdg-energy-projects,
body .dwdg-energy-publications { background:#f1ebe7 !important; padding:58px 0 70px !important; }
body .dwdg-energy-experts,
body .dwdg-energy-insights { background:#fbfaf6 !important; padding:58px 0 70px !important; }
body .dwdg-energy-section-title { font-size:28px !important; line-height:1 !important; margin:0 0 32px !important; letter-spacing:-.04em !important; }
body .dwdg-energy-expertise__grid { grid-template-columns:repeat(12,1fr) !important; gap:24px !important; }
body .dwdg-energy-expertise__card { border-radius:16px !important; box-shadow:none !important; }
body .dwdg-energy-expertise__card--1,
body .dwdg-energy-expertise__card--2,
body .dwdg-energy-expertise__card--3,
body .dwdg-energy-expertise__card--4 { grid-column:span 3 !important; aspect-ratio:1/1 !important; }
body .dwdg-energy-expertise__card--5,
body .dwdg-energy-expertise__card--6 { grid-column:span 6 !important; aspect-ratio:2.08/1 !important; }
body .dwdg-energy-expertise__label { font-size:14px !important; min-height:38px !important; padding:10px 16px !important; }
body .dwdg-energy-experts__grid { grid-template-columns:repeat(4,1fr) !important; gap:42px !important; }
body .dwdg-energy-expert__photo { width:92px !important; border-radius:16px !important; margin-bottom:16px !important; }
body .dwdg-energy-expert__name { font-size:15px !important; }
body .dwdg-energy-expert__role { font-size:12px !important; }
body .dwdg-energy-expert__bio { font-size:12px !important; line-height:1.35 !important; }
body .dwdg-energy-projects__stack { gap:18px !important; }
body .dwdg-energy-project { min-height:148px !important; border-radius:18px !important; grid-template-columns:1fr 1fr !important; overflow:hidden !important; }
body .dwdg-energy-project__copy { padding:26px 26px 22px !important; }
body .dwdg-energy-project__copy h3 { font-size:18px !important; line-height:1.08 !important; }
body .dwdg-energy-project__copy p { font-size:13px !important; line-height:1.35 !important; }
body .dwdg-energy-badge { font-size:11px !important; padding:5px 10px !important; }
body .dwdg-energy-publications__stage { grid-template-columns:44px minmax(0,1fr) 44px !important; gap:20px !important; }
body .dwdg-energy-publication { min-height:300px !important; border-radius:18px !important; grid-template-columns:220px 1fr !important; padding:36px 54px !important; gap:40px !important; }
body .dwdg-energy-publication__cover-wrap img,
body .dwdg-energy-publication__cover-wrap { width:170px !important; }
body .dwdg-energy-publication__copy h3 { font-size:18px !important; }
body .dwdg-energy-publication__copy p { font-size:17px !important; }
body .dwdg-energy-insights__grid { grid-template-columns:repeat(3,1fr) !important; gap:42px !important; }
body .dwdg-energy-insight-card { height:auto !important; aspect-ratio:.76/1 !important; border-radius:14px !important; }
body .dwdg-energy-insight-card h3 { font-size:16px !important; line-height:1.05 !important; }
body .dwdg-energy-contact { background:linear-gradient(105deg,#e8fff5 0%,#c8f8df 45%,#22d874 100%) !important; padding:0 !important; overflow:hidden !important; }
body .dwdg-energy-contact__inner { min-height:430px !important; display:grid !important; grid-template-columns:38% 1fr !important; gap:40px !important; align-items:end !important; }
body .dwdg-energy-contact__photo img { width:300px !important; max-width:100% !important; display:block !important; }
body .dwdg-energy-contact__body { align-self:center !important; padding:66px 0 !important; }
body .dwdg-energy-contact__body h2 { font-size:42px !important; line-height:.9 !important; }
body .dwdg-energy-contact__body p { font-size:14px !important; line-height:1.4 !important; max-width:470px !important; }

/* Simple full-page block same hard dimensions */
body .dwdg-energy-simple-page { background:#fbfaf6 !important; color:#2d2f2c !important; }
body .dwdg-energy-simple-page .des-hero { padding:104px 0 64px !important; }
body .dwdg-energy-simple-page .des-hero h1 { font-size:clamp(44px,5.6vw,72px) !important; line-height:.88 !important; letter-spacing:-.065em !important; margin:0 0 28px !important; }
body .dwdg-energy-simple-page .des-lead { width:min(740px,100%) !important; font-size:clamp(18px,1.7vw,22px) !important; line-height:1.34 !important; margin:0 0 44px !important; }
body .dwdg-energy-simple-page .des-hero-media { width:100% !important; min-height:330px !important; aspect-ratio:2.23/1 !important; border-radius:16px 16px 0 0 !important; clip-path:polygon(0 0,100% 0,100% 76%,0 100%) !important; }
body .dwdg-energy-simple-page .des-intro-copy { width:min(66%,560px) !important; margin:28px 0 0 auto !important; font-size:16px !important; line-height:1.48 !important; }
body .dwdg-energy-simple-page h2 { font-size:28px !important; line-height:1 !important; margin:0 0 32px !important; letter-spacing:-.04em !important; }
body .dwdg-energy-simple-page .des-expertise,
body .dwdg-energy-simple-page .des-projects { padding:58px 0 70px !important; }
body .dwdg-energy-simple-page .des-expertise-grid { gap:24px !important; }
body .dwdg-energy-simple-page .des-expertise-grid article { border-radius:16px !important; }
body .dwdg-energy-simple-page .des-expertise-grid span { font-size:14px !important; min-width:104px !important; padding:10px 16px !important; }
body .dwdg-energy-simple-page .des-experts { padding:58px 0 70px !important; }
body .dwdg-energy-simple-page .des-experts-row { gap:42px !important; }
body .dwdg-energy-simple-page .des-experts-row img { width:92px !important; height:92px !important; }
body .dwdg-energy-simple-page .des-experts-row h3 { font-size:15px !important; }
body .dwdg-energy-simple-page .des-experts-row .role,
body .dwdg-energy-simple-page .des-experts-row p:not(.role) { font-size:12px !important; line-height:1.35 !important; }
body .dwdg-energy-simple-page .des-project-list article { min-height:148px !important; border-radius:18px !important; }
body .dwdg-energy-simple-page .des-project-list h3 { font-size:18px !important; }
body .dwdg-energy-simple-page .des-project-list p { font-size:13px !important; }
body .dwdg-energy-simple-page .des-publication { min-height:300px !important; grid-template-columns:220px 1fr !important; }
body .dwdg-energy-simple-page .des-insights-grid { gap:42px !important; }
body .dwdg-energy-simple-page .des-contact-inner { min-height:430px !important; height:auto !important; }

@media (max-width: 780px) {
  body .dwdg-energy-wrap,
  body .dwdg-energy-simple-page .des-inner { width:min(calc(100vw - 32px),560px) !important; }
  body .dwdg-energy-hero__copy,
  body .dwdg-energy-simple-page .des-intro-copy { width:100% !important; }
  body .dwdg-energy-expertise__grid,
  body .dwdg-energy-experts__grid,
  body .dwdg-energy-insights__grid,
  body .dwdg-energy-simple-page .des-expertise-grid,
  body .dwdg-energy-simple-page .des-experts-row,
  body .dwdg-energy-simple-page .des-insights-grid { grid-template-columns:1fr 1fr !important; gap:18px !important; }
  body .dwdg-energy-expertise__card--1,
  body .dwdg-energy-expertise__card--2,
  body .dwdg-energy-expertise__card--3,
  body .dwdg-energy-expertise__card--4 { grid-column:span 1 !important; }
  body .dwdg-energy-expertise__card--5,
  body .dwdg-energy-expertise__card--6 { grid-column:span 2 !important; }
  body .dwdg-energy-project,
  body .dwdg-energy-publication,
  body .dwdg-energy-contact__inner,
  body .dwdg-energy-simple-page .des-project-list article,
  body .dwdg-energy-simple-page .des-publication { grid-template-columns:1fr !important; }
  body .dwdg-energy-publications__stage { grid-template-columns:1fr !important; }
  body .dwdg-energy-publications__nav { display:none !important; }
}

/* =============================================================
   DWDG v49 - Energy: rendu lisible, carousel experts, publications auto
   ============================================================= */
body:has(.dwdg-energy-simple-page.v49),
body.page-template-template-energy-dwdg,
body.page-template-template-energy-dwdg-php { background:#fbfaf6 !important; }

.dwdg-energy-simple-page.v49 {
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  overflow:hidden !important;
  background:#fbfaf6 !important;
}
.dwdg-energy-simple-page.v49 .des-inner,
.dwdg-energy-wrap {
  width:min(100% - clamp(40px, 10vw, 180px), 1040px) !important;
  max-width:1040px !important;
  margin-inline:auto !important;
}
.dwdg-energy-simple-page.v49 .des-inner--hero { max-width:900px !important; }
.dwdg-energy-simple-page.v49 .des-hero { padding:clamp(78px, 9vw, 132px) 0 clamp(54px, 6vw, 82px) !important; }
.dwdg-energy-simple-page.v49 .des-hero h1 { font-size:clamp(52px, 8vw, 96px) !important; line-height:.88 !important; letter-spacing:-.075em !important; font-weight:900 !important; margin:0 0 28px !important; }
.dwdg-energy-simple-page.v49 .des-lead { width:min(100%, 720px) !important; font-size:clamp(19px, 2vw, 26px) !important; line-height:1.25 !important; font-weight:500 !important; margin:0 0 54px !important; }
.dwdg-energy-simple-page.v49 .des-hero-media { width:min(100%, 860px) !important; height:auto !important; aspect-ratio:2.1/1 !important; margin:0 auto !important; border-radius:18px 18px 0 0 !important; clip-path:polygon(0 0,100% 0,100% 78%,0 100%) !important; }
.dwdg-energy-simple-page.v49 .des-hero-media img { width:100% !important; height:100% !important; object-fit:cover !important; }
.dwdg-energy-simple-page.v49 .des-intro-copy { width:min(100%, 560px) !important; margin:28px 5% 0 auto !important; font-size:16px !important; line-height:1.42 !important; }
.dwdg-energy-simple-page.v49 .des-intro-copy p + p { margin-top:24px !important; }

.dwdg-energy-simple-page.v49 .des-surface,
.dwdg-energy-expertise--readable,
.dwdg-energy-publications--auto { background:#eee9e4 !important; }
.dwdg-energy-simple-page.v49 h2,
.dwdg-energy-section-title,
.dwdg-energy-simple-page.v49 .section-heading h2 { font-size:clamp(28px, 3vw, 38px) !important; line-height:.98 !important; letter-spacing:-.045em !important; font-weight:900 !important; margin:0 0 34px !important; color:#10110f !important; }
.dwdg-energy-simple-page.v49 .des-expertise,
.dwdg-energy-expertise--readable { padding:clamp(54px, 6vw, 84px) 0 !important; }

/* Expertise cards: contenu visible directement, plus de pastille blanche illisible */
.des-expertise-readable-grid,
.dwdg-energy-expertise-readable-grid {
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:clamp(20px, 2.8vw, 32px) !important;
}
.des-expertise-readable-grid article,
.dwdg-energy-expertise-readable-grid article {
  min-height:300px !important;
  overflow:hidden !important;
  border-radius:22px !important;
  background:#fff !important;
  box-shadow:0 18px 45px rgba(0,0,0,.07) !important;
  display:flex !important;
  flex-direction:column !important;
}
.des-expertise-readable-grid img,
.dwdg-energy-expertise-readable-grid img {
  width:100% !important;
  height:160px !important;
  object-fit:cover !important;
  display:block !important;
}
.des-expertise-readable-grid article > div,
.dwdg-energy-expertise-readable-grid article > div { padding:24px 24px 26px !important; background:#fff !important; flex:1 !important; }
.des-expertise-readable-grid h3,
.dwdg-energy-expertise-readable-grid h3 { font-size:22px !important; line-height:1 !important; margin:0 0 12px !important; font-weight:850 !important; letter-spacing:-.04em !important; color:#10110f !important; }
.des-expertise-readable-grid p,
.dwdg-energy-expertise-readable-grid p { font-size:15px !important; line-height:1.38 !important; margin:0 !important; color:#3d403b !important; }

/* Experts carousel */
.dwdg-energy-simple-page.v49 .des-experts,
.dwdg-energy-experts--carousel { padding:clamp(56px, 6vw, 90px) 0 !important; background:#fbfaf6 !important; }
.des-title-row { display:flex !important; align-items:center !important; justify-content:space-between !important; gap:20px !important; margin-bottom:30px !important; }
.des-title-row .dwdg-energy-section-title,
.dwdg-energy-simple-page.v49 .des-title-row h2 { margin:0 !important; }
.des-carousel-hint { font-size:13px !important; color:#8b8b82 !important; font-weight:600 !important; }
.des-experts-carousel {
  display:flex !important;
  gap:24px !important;
  overflow-x:auto !important;
  scroll-snap-type:x mandatory !important;
  padding:6px 4px 24px !important;
  scrollbar-width:thin !important;
}
.des-experts-carousel article {
  flex:0 0 clamp(220px, 25vw, 280px) !important;
  min-height:420px !important;
  scroll-snap-align:start !important;
  border-radius:22px !important;
  background:#fff !important;
  padding:22px !important;
  box-shadow:0 18px 45px rgba(0,0,0,.07) !important;
}
.des-experts-carousel img { width:116px !important; height:116px !important; border-radius:999px !important; object-fit:cover !important; margin:0 0 22px !important; }
.des-experts-carousel h3 { font-size:22px !important; line-height:1.02 !important; font-weight:900 !important; letter-spacing:-.045em !important; margin:0 0 8px !important; color:#10110f !important; }
.des-experts-carousel .role { font-size:14px !important; color:#12c95f !important; font-weight:750 !important; margin:0 0 18px !important; }
.des-experts-carousel p:not(.role) { font-size:15px !important; line-height:1.38 !important; color:#3d403b !important; margin:0 0 22px !important; }
.des-experts-carousel a { display:inline-flex !important; align-items:center !important; justify-content:center !important; min-height:30px !important; padding:0 14px !important; border-radius:999px !important; background:#12c95f !important; color:#fff !important; font-size:13px !important; font-weight:750 !important; text-decoration:none !important; }

/* Projects kept cleaner */
.dwdg-energy-simple-page.v49 .des-projects { padding:clamp(56px, 6vw, 86px) 0 !important; }
.dwdg-energy-simple-page.v49 .des-project-list { display:grid !important; gap:18px !important; }
.dwdg-energy-simple-page.v49 .des-project-list article { min-height:190px !important; border-radius:22px !important; grid-template-columns:1fr 1fr !important; box-shadow:0 14px 35px rgba(0,0,0,.04) !important; }
.dwdg-energy-simple-page.v49 .des-project-list .pic { min-height:190px !important; }
.dwdg-energy-simple-page.v49 .des-project-list .pic span { left:18px !important; top:16px !important; font-size:12px !important; border-radius:999px !important; padding:8px 12px !important; }
.dwdg-energy-simple-page.v49 .des-project-list .txt { padding:34px 34px 28px !important; display:flex !important; flex-direction:column !important; justify-content:center !important; }
.dwdg-energy-simple-page.v49 .des-project-list h3 { font-size:22px !important; line-height:1.04 !important; margin:0 0 16px !important; font-weight:900 !important; letter-spacing:-.045em !important; }
.dwdg-energy-simple-page.v49 .des-project-list p { font-size:15px !important; line-height:1.38 !important; margin:0 !important; }

/* Publications: utilise le meme composant que la homepage, mais cale dans Energy */
.dwdg-energy-simple-page.v49 .des-publications,
.dwdg-energy-publications--auto { margin-top:clamp(58px, 6vw, 86px) !important; padding:0 !important; }
.dwdg-energy-simple-page.v49 .des-publications .section-heading,
.dwdg-energy-publications--auto .section-heading { margin:0 !important; }
.dwdg-energy-simple-page.v49 .publication-card,
.dwdg-energy-publications--auto .publication-card {
  grid-template-columns:minmax(250px,.82fr) minmax(360px,1.18fr) !important;
  min-height:310px !important;
  border-radius:24px !important;
}
.dwdg-energy-simple-page.v49 .report-preview,
.dwdg-energy-publications--auto .report-preview { min-height:310px !important; padding:44px !important; }
.dwdg-energy-simple-page.v49 .report-cover-media,
.dwdg-energy-publications--auto .report-cover-media { width:min(180px,100%) !important; aspect-ratio:.72 !important; overflow:hidden !important; border-radius:8px !important; box-shadow:0 20px 40px rgba(0,0,0,.16) !important; background:#fff !important; }
.dwdg-energy-simple-page.v49 .publication-cover-img,
.dwdg-energy-publications--auto .publication-cover-img { width:100% !important; height:100% !important; object-fit:contain !important; display:block !important; }
.dwdg-energy-simple-page.v49 .publication-copy,
.dwdg-energy-publications--auto .publication-copy { padding:44px !important; gap:20px !important; }
.dwdg-energy-simple-page.v49 .publication-copy h3,
.dwdg-energy-publications--auto .publication-copy h3 { font-size:clamp(24px, 2.6vw, 36px) !important; line-height:1.04 !important; color:#10110f !important; }
.dwdg-energy-simple-page.v49 .dwdg-pub-slider__nav,
.dwdg-energy-publications--auto .dwdg-pub-slider__nav { margin-top:24px !important; }

/* Insights */
.dwdg-energy-simple-page.v49 .des-insights { padding:clamp(56px, 6vw, 86px) 0 !important; background:#fff !important; }
.dwdg-energy-simple-page.v49 .des-insights-grid { gap:32px !important; }
.dwdg-energy-simple-page.v49 .des-insights-grid article { height:300px !important; border-radius:20px !important; box-shadow:0 18px 45px rgba(0,0,0,.08) !important; }
.dwdg-energy-simple-page.v49 .des-insights-grid span { left:18px !important; top:18px !important; font-size:13px !important; border-radius:999px !important; padding:8px 13px !important; }
.dwdg-energy-simple-page.v49 .des-insights-grid h3 { left:20px !important; right:20px !important; bottom:22px !important; font-size:22px !important; line-height:1.02 !important; }

/* Contact: photo de Sebastien et fond plein ecran, sans vide a droite */
.dwdg-energy-simple-page.v49 .des-contact,
.dwdg-energy-contact {
  width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  min-height:430px !important;
  height:auto !important;
  background:linear-gradient(105deg,#e9fff4 0%,#c8f8df 42%,#24d876 100%) !important;
  overflow:hidden !important;
}
.dwdg-energy-simple-page.v49 .des-contact-inner,
.dwdg-energy-contact__inner {
  width:min(100% - clamp(40px, 10vw, 180px), 1040px) !important;
  max-width:1040px !important;
  min-height:430px !important;
  height:auto !important;
  margin:0 auto !important;
  position:relative !important;
  display:grid !important;
  grid-template-columns:minmax(260px, .78fr) minmax(440px, 1.22fr) !important;
  align-items:end !important;
  gap:58px !important;
}
.dwdg-energy-simple-page.v49 .des-contact-inner > img,
.dwdg-energy-contact__photo img {
  position:relative !important;
  left:auto !important;
  bottom:auto !important;
  width:min(320px, 100%) !important;
  height:auto !important;
  max-height:420px !important;
  object-fit:contain !important;
  justify-self:center !important;
  align-self:end !important;
}
.dwdg-energy-simple-page.v49 .des-contact-text,
.dwdg-energy-contact__body {
  width:min(100%, 620px) !important;
  margin:0 !important;
  padding:70px 0 76px !important;
  align-self:center !important;
}
.dwdg-energy-simple-page.v49 .des-contact-text span,
.dwdg-energy-contact__eyebrow { display:inline-flex !important; border-radius:999px !important; padding:9px 18px !important; background:#fff !important; font-size:15px !important; margin:0 0 28px !important; color:#10110f !important; }
.dwdg-energy-simple-page.v49 .des-contact-text h2,
.dwdg-energy-contact__body h2 { font-size:clamp(42px, 5.2vw, 68px) !important; line-height:.9 !important; letter-spacing:-.07em !important; margin:0 0 20px !important; }
.dwdg-energy-simple-page.v49 .des-contact-text .role,
.dwdg-energy-contact__body strong { font-size:20px !important; line-height:1.2 !important; font-weight:750 !important; margin:0 0 34px !important; display:block !important; }
.dwdg-energy-simple-page.v49 .des-contact-text p:not(.role):not(.mail),
.dwdg-energy-contact__body p { width:min(100%, 600px) !important; font-size:18px !important; line-height:1.42 !important; margin:0 0 30px !important; }
.dwdg-energy-simple-page.v49 .des-contact-text .mail,
.dwdg-energy-contact__email { font-size:16px !important; font-weight:750 !important; margin:0 !important; }

@media (max-width:900px) {
  .dwdg-energy-simple-page.v49 .des-inner,
  .dwdg-energy-wrap { width:min(100% - 32px, 680px) !important; }
  .des-expertise-readable-grid,
  .dwdg-energy-expertise-readable-grid { grid-template-columns:repeat(2, minmax(0, 1fr)) !important; }
  .dwdg-energy-simple-page.v49 .des-project-list article,
  .dwdg-energy-simple-page.v49 .des-project-list article.image-right { grid-template-columns:1fr !important; }
  .dwdg-energy-simple-page.v49 .des-project-list article.image-right .pic,
  .dwdg-energy-simple-page.v49 .des-project-list article.image-right .txt { grid-column:auto !important; grid-row:auto !important; }
  .dwdg-energy-simple-page.v49 .publication-card,
  .dwdg-energy-publications--auto .publication-card { grid-template-columns:1fr !important; }
  .dwdg-energy-simple-page.v49 .des-insights-grid { grid-template-columns:1fr !important; }
  .dwdg-energy-simple-page.v49 .des-contact-inner,
  .dwdg-energy-contact__inner { grid-template-columns:1fr !important; gap:0 !important; align-items:center !important; }
  .dwdg-energy-simple-page.v49 .des-contact-inner > img,
  .dwdg-energy-contact__photo img { width:230px !important; order:2 !important; }
  .dwdg-energy-simple-page.v49 .des-contact-text,
  .dwdg-energy-contact__body { padding:56px 0 20px !important; order:1 !important; }
}
@media (max-width:560px) {
  .dwdg-energy-simple-page.v49 .des-inner,
  .dwdg-energy-wrap { width:calc(100% - 28px) !important; }
  .dwdg-energy-simple-page.v49 .des-hero h1 { font-size:48px !important; }
  .dwdg-energy-simple-page.v49 .des-lead { font-size:18px !important; margin-bottom:32px !important; }
  .dwdg-energy-simple-page.v49 .des-intro-copy { font-size:15px !important; margin-right:0 !important; }
  .des-expertise-readable-grid,
  .dwdg-energy-expertise-readable-grid { grid-template-columns:1fr !important; }
  .des-experts-carousel article { flex-basis:82vw !important; }
}
.dwdg-energy-contact__photo { width:100% !important; height:auto !important; min-height:0 !important; display:flex !important; justify-content:center !important; align-items:flex-end !important; align-self:end !important; }
.dwdg-energy-contact__email { display:inline-flex !important; align-items:center !important; gap:10px !important; text-decoration:none !important; }

/* =============================================================
   DWDG v50 - Energy final: full-bleed, synced content, usable carousel
   ============================================================= */
html:has(.dwdg-energy-simple-page.v50),
body:has(.dwdg-energy-simple-page.v50),
body:has(.dwdg-energy-hero),
body:has(.dwdg-energy-expertise),
body:has(.dwdg-energy-experts),
body:has(.dwdg-energy-projects),
body:has(.dwdg-energy-insights),
body:has(.dwdg-energy-contact) { overflow-x:hidden !important; background:#fbfaf6 !important; }

body .entry-content > .wp-block-dwdg-energy-page-simple,
body .entry-content > .wp-block-dwdg-energy-hero,
body .entry-content > .wp-block-dwdg-energy-expertise,
body .entry-content > .wp-block-dwdg-energy-experts,
body .entry-content > .wp-block-dwdg-energy-projects,
body .entry-content > .wp-block-dwdg-energy-publications,
body .entry-content > .wp-block-dwdg-energy-insights,
body .entry-content > .wp-block-dwdg-energy-contact,
body .wp-site-blocks .wp-block-dwdg-energy-page-simple,
body .wp-site-blocks .wp-block-dwdg-energy-hero,
body .wp-site-blocks .wp-block-dwdg-energy-expertise,
body .wp-site-blocks .wp-block-dwdg-energy-experts,
body .wp-site-blocks .wp-block-dwdg-energy-projects,
body .wp-site-blocks .wp-block-dwdg-energy-publications,
body .wp-site-blocks .wp-block-dwdg-energy-insights,
body .wp-site-blocks .wp-block-dwdg-energy-contact {
  width:100vw !important;
  max-width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  padding-left:0 !important;
  padding-right:0 !important;
  overflow:clip !important;
}

body .dwdg-energy-simple-page.v50,
body .dwdg-energy-hero,
body .dwdg-energy-expertise,
body .dwdg-energy-experts,
body .dwdg-energy-projects,
body .dwdg-energy-publications,
body .dwdg-energy-insights,
body .dwdg-energy-contact {
  width:100vw !important;
  max-width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  box-sizing:border-box !important;
  overflow:clip !important;
}
body .dwdg-energy-simple-page.v50 {
  --des-bg:#fbfaf6;
  --des-surface:#eee9e4;
  --des-ink:#11120f;
  --des-green:#12c95f;
  background:var(--des-bg) !important;
}
body .dwdg-energy-simple-page.v50 .des-inner,
body .dwdg-energy-wrap {
  width:min(calc(100vw - clamp(40px, 12vw, 180px)), 1040px) !important;
  max-width:1040px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  box-sizing:border-box !important;
}
body .dwdg-energy-simple-page.v50 .des-inner--hero { max-width:900px !important; }

body .dwdg-energy-simple-page.v50 h1,
body .dwdg-energy-simple-page.v50 h2,
body .dwdg-energy-simple-page.v50 h3,
body .dwdg-energy-simple-page.v50 p { margin-top:0; }
body .dwdg-energy-simple-page.v50 .des-hero { padding:clamp(86px, 9vw, 132px) 0 clamp(54px, 6vw, 82px) !important; }
body .dwdg-energy-simple-page.v50 .des-hero h1 { font-size:clamp(56px, 8vw, 96px) !important; line-height:.88 !important; letter-spacing:-.078em !important; margin-bottom:26px !important; }
body .dwdg-energy-simple-page.v50 .des-lead { width:min(100%,720px) !important; font-size:clamp(18px,2vw,25px) !important; line-height:1.28 !important; margin-bottom:48px !important; }
body .dwdg-energy-simple-page.v50 .des-hero-media { width:min(100%,860px) !important; height:auto !important; aspect-ratio:2.1/1 !important; min-height:330px !important; margin:0 auto !important; border-radius:18px 18px 0 0 !important; clip-path:polygon(0 0,100% 0,100% 78%,0 100%) !important; overflow:hidden !important; }
body .dwdg-energy-simple-page.v50 .des-hero-media img { width:100% !important; height:100% !important; object-fit:cover !important; }
body .dwdg-energy-simple-page.v50 .des-intro-copy { width:min(100%, 560px) !important; margin:28px 4% 0 auto !important; font-size:16px !important; line-height:1.45 !important; }

/* Expertise: direct readable cards, no hidden/hover content */
body .dwdg-energy-simple-page.v50 .des-surface,
body .dwdg-energy-expertise--readable { background:#eee9e4 !important; }
body .dwdg-energy-simple-page.v50 .des-expertise,
body .dwdg-energy-expertise--readable { padding:clamp(58px,6vw,86px) 0 !important; }
body .dwdg-energy-simple-page.v50 h2,
body .dwdg-energy-section-title,
body .dwdg-energy-simple-page.v50 .section-heading h2 { font-size:clamp(26px,3vw,36px) !important; line-height:1 !important; letter-spacing:-.045em !important; font-weight:900 !important; margin:0 0 34px !important; color:#11120f !important; }
body .des-expertise-readable-grid,
body .dwdg-energy-expertise-readable-grid { display:grid !important; grid-template-columns:repeat(3,minmax(0,1fr)) !important; gap:28px !important; }
body .des-expertise-readable-grid article,
body .dwdg-energy-expertise-readable-grid article { min-height:292px !important; border-radius:20px !important; background:#fff !important; overflow:hidden !important; display:flex !important; flex-direction:column !important; box-shadow:0 16px 38px rgba(0,0,0,.06) !important; }
body .des-expertise-readable-grid img,
body .dwdg-energy-expertise-readable-grid img { width:100% !important; height:150px !important; object-fit:cover !important; }
body .des-expertise-readable-grid article > div,
body .dwdg-energy-expertise-readable-grid article > div { padding:22px 22px 24px !important; background:#fff !important; flex:1 !important; }
body .des-expertise-readable-grid h3,
body .dwdg-energy-expertise-readable-grid h3 { font-size:20px !important; line-height:1.05 !important; letter-spacing:-.04em !important; margin:0 0 10px !important; color:#11120f !important; }
body .des-expertise-readable-grid p,
body .dwdg-energy-expertise-readable-grid p { font-size:14px !important; line-height:1.4 !important; margin:0 !important; color:#3e403b !important; }

/* Experts: real carousel. Four visible on desktop; scroll only when more than four experts exist. */
body .dwdg-energy-simple-page.v50 .des-experts,
body .dwdg-energy-experts--carousel { background:#fbfaf6 !important; padding:clamp(56px,6vw,88px) 0 !important; }
body .des-title-row { display:flex !important; align-items:center !important; justify-content:space-between !important; margin-bottom:28px !important; }
body .des-carousel-hint { display:none !important; }
body .des-experts-carousel.v50 {
  --expert-gap:24px;
  display:flex !important;
  gap:var(--expert-gap) !important;
  overflow-x:auto !important;
  scroll-snap-type:x mandatory !important;
  padding:4px 2px 18px !important;
  scrollbar-width:thin !important;
}
body .des-experts-carousel.v50 article {
  flex:0 0 calc((100% - (var(--expert-gap) * 3)) / 4) !important;
  min-width:0 !important;
  min-height:360px !important;
  scroll-snap-align:start !important;
  border-radius:20px !important;
  background:#fff !important;
  padding:22px 20px !important;
  box-shadow:0 16px 38px rgba(0,0,0,.06) !important;
}
body .des-experts-carousel.v50 img { width:112px !important; height:112px !important; border-radius:999px !important; object-fit:cover !important; margin:0 0 20px !important; }
body .des-experts-carousel.v50 h3 { font-size:20px !important; line-height:1.02 !important; letter-spacing:-.045em !important; font-weight:900 !important; margin:0 0 8px !important; color:#11120f !important; }
body .des-experts-carousel.v50 .role { color:#12c95f !important; font-size:13px !important; line-height:1.2 !important; font-weight:800 !important; margin:0 0 16px !important; }
body .des-experts-carousel.v50 p:not(.role) { color:#3e403b !important; font-size:14px !important; line-height:1.38 !important; margin:0 0 20px !important; }
body .des-experts-carousel.v50 a { display:inline-flex !important; align-items:center !important; justify-content:center !important; min-height:28px !important; padding:0 13px !important; border-radius:999px !important; background:#12c95f !important; color:#fff !important; font-size:12px !important; font-weight:800 !important; text-decoration:none !important; }

/* Projects and insights inherit homepage components, with Energy section widths only. */
body .dwdg-energy-simple-page.v50 .des-projects,
body .dwdg-energy-projects--home-sync { background:#eee9e4 !important; padding:clamp(58px,6vw,88px) 0 !important; }
body .dwdg-energy-simple-page.v50 .work-list,
body .dwdg-energy-projects--home-sync .work-list { display:grid !important; gap:18px !important; }
body .dwdg-energy-simple-page.v50 .work-card,
body .dwdg-energy-projects--home-sync .work-card { min-height:190px !important; border-radius:20px !important; overflow:hidden !important; box-shadow:0 14px 34px rgba(0,0,0,.04) !important; }
body .dwdg-energy-simple-page.v50 .work-media,
body .dwdg-energy-projects--home-sync .work-media { min-height:190px !important; }
body .dwdg-energy-simple-page.v50 .work-copy,
body .dwdg-energy-projects--home-sync .work-copy { display:flex !important; flex-direction:column !important; justify-content:center !important; padding:34px !important; }

body .dwdg-energy-simple-page.v50 .des-publications,
body .dwdg-energy-publications--auto { background:#eee9e4 !important; padding:clamp(58px,6vw,86px) 0 !important; margin:0 !important; }
body .dwdg-energy-simple-page.v50 .publication-card,
body .dwdg-energy-publications--auto .publication-card { min-height:310px !important; border-radius:24px !important; }
body .dwdg-energy-simple-page.v50 .publication-copy h3,
body .dwdg-energy-publications--auto .publication-copy h3 { font-size:clamp(24px,2.6vw,34px) !important; line-height:1.04 !important; }

body .dwdg-energy-simple-page.v50 .des-insights,
body .dwdg-energy-insights--home-sync { background:#fbfaf6 !important; padding:clamp(58px,6vw,86px) 0 !important; }
body .dwdg-energy-simple-page.v50 .insight-grid,
body .dwdg-energy-insights--home-sync .insight-grid { grid-template-columns:repeat(3,minmax(0,1fr)) !important; gap:32px !important; }
body .dwdg-energy-simple-page.v50 .insight-card,
body .dwdg-energy-insights--home-sync .insight-card { min-height:300px !important; border-radius:20px !important; box-shadow:0 18px 45px rgba(0,0,0,.08) !important; }
body .dwdg-energy-simple-page.v50 .insight-copy h3,
body .dwdg-energy-insights--home-sync .insight-copy h3 { font-size:22px !important; line-height:1.04 !important; }

/* Contact: larger Sébastien image and no right-side blank area */
body .dwdg-energy-simple-page.v50 .des-contact,
body .dwdg-energy-contact { background:linear-gradient(105deg,#e9fff4 0%,#c8f8df 42%,#23d876 100%) !important; min-height:440px !important; padding:0 !important; overflow:clip !important; }
body .dwdg-energy-simple-page.v50 .des-contact-inner,
body .dwdg-energy-contact__inner { width:min(calc(100vw - clamp(40px,12vw,180px)),1040px) !important; max-width:1040px !important; min-height:440px !important; height:auto !important; display:grid !important; grid-template-columns:minmax(330px,.86fr) minmax(460px,1.14fr) !important; gap:64px !important; align-items:end !important; position:relative !important; }
body .dwdg-energy-simple-page.v50 .des-contact-inner > img,
body .dwdg-energy-contact__photo img { width:min(430px,100%) !important; max-width:none !important; height:auto !important; max-height:440px !important; object-fit:contain !important; align-self:end !important; justify-self:center !important; position:relative !important; left:auto !important; bottom:auto !important; }
body .dwdg-energy-simple-page.v50 .des-contact-text,
body .dwdg-energy-contact__body { width:min(100%,620px) !important; margin:0 !important; padding:76px 0 82px !important; align-self:center !important; }
body .dwdg-energy-simple-page.v50 .des-contact-text span,
body .dwdg-energy-contact__eyebrow { display:inline-flex !important; border-radius:999px !important; padding:9px 18px !important; background:#fff !important; font-size:15px !important; margin:0 0 28px !important; color:#11120f !important; }
body .dwdg-energy-simple-page.v50 .des-contact-text h2,
body .dwdg-energy-contact__body h2 { font-size:clamp(46px,5.3vw,70px) !important; line-height:.9 !important; letter-spacing:-.07em !important; margin:0 0 20px !important; }
body .dwdg-energy-simple-page.v50 .des-contact-text .role,
body .dwdg-energy-contact__body strong { font-size:20px !important; line-height:1.2 !important; font-weight:750 !important; display:block !important; margin:0 0 34px !important; }
body .dwdg-energy-simple-page.v50 .des-contact-text p:not(.role):not(.mail),
body .dwdg-energy-contact__body p { width:min(100%,600px) !important; font-size:18px !important; line-height:1.42 !important; margin:0 0 30px !important; }
body .dwdg-energy-simple-page.v50 .des-contact-text .mail,
body .dwdg-energy-contact__email { font-size:16px !important; font-weight:750 !important; margin:0 !important; }

@media (max-width: 980px) {
  body .dwdg-energy-simple-page.v50 .des-inner,
  body .dwdg-energy-wrap { width:calc(100vw - 40px) !important; }
  body .des-experts-carousel.v50 article { flex-basis:calc((100% - 24px) / 2) !important; }
  body .dwdg-energy-simple-page.v50 .des-contact-inner,
  body .dwdg-energy-contact__inner { grid-template-columns:1fr !important; gap:0 !important; align-items:center !important; }
  body .dwdg-energy-simple-page.v50 .des-contact-inner > img,
  body .dwdg-energy-contact__photo img { width:280px !important; order:2 !important; }
  body .dwdg-energy-simple-page.v50 .des-contact-text,
  body .dwdg-energy-contact__body { order:1 !important; padding:56px 0 20px !important; }
}
@media (max-width: 760px) {
  body .des-expertise-readable-grid,
  body .dwdg-energy-expertise-readable-grid,
  body .dwdg-energy-simple-page.v50 .insight-grid,
  body .dwdg-energy-insights--home-sync .insight-grid { grid-template-columns:1fr !important; }
  body .des-experts-carousel.v50 article { flex-basis:82vw !important; }
  body .dwdg-energy-simple-page.v50 .work-card,
  body .dwdg-energy-projects--home-sync .work-card { grid-template-columns:1fr !important; }
}

/* =============================================================
   DWDG v51 - Energy corrections: typography guide, details area, true carousel
   Typography source: DWDG guide typographique V1.0
   ============================================================= */
:root{
  --fs-display:clamp(3rem,6.4vw,5.5rem);
  --fs-title:clamp(1.3rem,2vw,1.75rem);
  --fs-sub:clamp(.9rem,1.3vw,1.05rem);
  --fs-body:clamp(.82rem,1.05vw,.92rem);
  --fs-small:clamp(.7rem,.9vw,.8rem);
  --ink:#0c0d0b;
  --ink-soft:#34352f;
  --muted:#6d6d66;
  --green:#12c95f;
  --green-deep:#0aa04b;
}
body.page-template-template-energy-dwdg,
body:has(.dwdg-energy-simple-page.v51){overflow-x:hidden!important;background:#fbfaf6!important;}
body.page-template-template-energy-dwdg #main-content,
body.page-template-template-energy-dwdg .dwdg-energy-page{width:100%!important;max-width:none!important;margin:0!important;padding:0!important;overflow-x:clip!important;}
body.page-template-template-energy-dwdg .dwdg-energy-page > *,
body .entry-content > .wp-block-dwdg-energy-page-simple,
body .entry-content > .wp-block-dwdg-energy-hero,
body .entry-content > .wp-block-dwdg-energy-expertise,
body .entry-content > .wp-block-dwdg-energy-experts,
body .entry-content > .wp-block-dwdg-energy-projects,
body .entry-content > .wp-block-dwdg-energy-publications,
body .entry-content > .wp-block-dwdg-energy-insights,
body .entry-content > .wp-block-dwdg-energy-contact{
  width:100vw!important;max-width:100vw!important;position:relative!important;left:50%!important;right:50%!important;margin-left:-50vw!important;margin-right:-50vw!important;padding-left:0!important;padding-right:0!important;box-sizing:border-box!important;overflow:clip!important;
}
body .dwdg-energy-simple-page.v51,
body .dwdg-energy-simple-page.v51 > section,
body .dwdg-energy-hero,
body .dwdg-energy-expertise,
body .dwdg-energy-experts,
body .dwdg-energy-projects,
body .dwdg-energy-publications,
body .dwdg-energy-insights,
body .dwdg-energy-contact{
  width:100vw!important;max-width:100vw!important;margin-left:calc(50% - 50vw)!important;margin-right:calc(50% - 50vw)!important;box-sizing:border-box!important;overflow:clip!important;
}
body .dwdg-energy-simple-page.v51 .des-inner,
body .dwdg-energy-wrap{width:min(calc(100vw - 64px),1120px)!important;max-width:1120px!important;margin-left:auto!important;margin-right:auto!important;box-sizing:border-box!important;}
body .dwdg-energy-simple-page.v51 .des-inner--hero{max-width:860px!important;}
body .dwdg-energy-simple-page.v51 h1,
body .dwdg-energy-simple-page.v51 h2,
body .dwdg-energy-section-title,
body .dwdg-energy-simple-page.v51 .section-heading h2{font-size:var(--fs-title)!important;line-height:1.1!important;letter-spacing:-.025em!important;font-weight:800!important;color:var(--ink)!important;margin:0 0 28px!important;}
body .dwdg-energy-simple-page.v51 h3,
body .dwdg-energy-simple-page.v51 .work-copy h3,
body .dwdg-energy-simple-page.v51 .publication-copy h3,
body .dwdg-energy-publications--auto .publication-copy h3{font-size:var(--fs-sub)!important;line-height:1.1!important;letter-spacing:-.025em!important;font-weight:800!important;color:var(--ink)!important;}
body .dwdg-energy-simple-page.v51 p,
body .dwdg-energy-simple-page.v51 li,
body .dwdg-energy-simple-page.v51 a,
body .dwdg-energy-wrap p{font-size:var(--fs-body)!important;line-height:1.55!important;letter-spacing:-.005em!important;color:var(--ink-soft)!important;}
body .dwdg-energy-simple-page.v51 .eyebrow,
body .dwdg-energy-simple-page.v51 .role,
body .dwdg-energy-contact__eyebrow{font-size:var(--fs-small)!important;letter-spacing:.08em!important;font-weight:600!important;}
body .dwdg-energy-simple-page.v51 .des-hero{padding:112px 0 58px!important;background:#fbfaf6!important;}
body .dwdg-energy-simple-page.v51 .des-lead{width:min(100%,620px)!important;font-size:var(--fs-body)!important;line-height:1.4!important;color:var(--ink-soft)!important;margin:0 0 32px!important;}
body .dwdg-energy-simple-page.v51 .des-hero-media{width:min(100%,800px)!important;aspect-ratio:2.15/1!important;min-height:0!important;border-radius:12px 12px 0 0!important;clip-path:polygon(0 0,100% 0,100% 78%,0 100%)!important;margin:0 auto!important;overflow:hidden!important;}
body .dwdg-energy-simple-page.v51 .des-hero-media img{width:100%!important;height:100%!important;object-fit:cover!important;}
body .dwdg-energy-simple-page.v51 .des-intro-copy{width:min(100%,520px)!important;margin:24px 6% 0 auto!important;}
body .dwdg-energy-simple-page.v51 .des-intro-copy a{color:var(--green-deep)!important;font-weight:600!important;}

/* Expertise with reserved detail area */
body .dwdg-energy-simple-page.v51 .des-expertise,
body .dwdg-energy-expertise--readable{background:#eee9e4!important;padding:56px 0 64px!important;}
body .des-expertise-layout{display:grid!important;grid-template-columns:minmax(240px,320px) minmax(0,1fr)!important;gap:36px!important;align-items:start!important;}
body .des-expertise-detail{position:sticky!important;top:96px!important;background:#fbfaf6!important;border-radius:20px!important;padding:28px!important;box-shadow:0 16px 40px rgba(0,0,0,.05)!important;}
body .des-expertise-detail span{display:block!important;margin-bottom:18px!important;color:var(--green-deep)!important;font-size:var(--fs-small)!important;font-weight:600!important;letter-spacing:.08em!important;text-transform:uppercase!important;}
body .des-expertise-detail h3{margin:0 0 16px!important;}
body .des-expertise-detail p{margin:0 0 18px!important;}
body .des-expertise-detail ul{margin:0!important;padding-left:1.05rem!important;display:grid!important;gap:8px!important;}
body .des-expertise-readable-grid,
body .dwdg-energy-expertise-readable-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:22px!important;}
body .des-expertise-readable-grid article,
body .dwdg-energy-expertise-readable-grid article{min-height:0!important;border-radius:18px!important;background:#fff!important;overflow:hidden!important;box-shadow:0 14px 32px rgba(0,0,0,.055)!important;}
body .des-expertise-readable-grid img,
body .dwdg-energy-expertise-readable-grid img{height:126px!important;width:100%!important;object-fit:cover!important;display:block!important;}
body .des-expertise-readable-grid article>div,
body .dwdg-energy-expertise-readable-grid article>div{padding:18px 18px 22px!important;background:#fff!important;}
body .des-expertise-readable-grid h3,
body .dwdg-energy-expertise-readable-grid h3{margin:0 0 8px!important;}
body .des-expertise-readable-grid p,
body .dwdg-energy-expertise-readable-grid p{margin:0!important;}

/* Experts carousel: one row, max 4 visible, arrows, dynamic CPT content */
body .dwdg-energy-simple-page.v51 .des-experts,
body .dwdg-energy-experts--carousel{background:#fbfaf6!important;padding:56px 0 64px!important;}
body .des-experts-shell{position:relative!important;}
body .des-experts-carousel.v51{--expert-gap:22px;display:flex!important;gap:var(--expert-gap)!important;overflow-x:auto!important;scroll-snap-type:x mandatory!important;scroll-behavior:smooth!important;padding:4px 2px 18px!important;scrollbar-width:none!important;}
body .des-experts-carousel.v51::-webkit-scrollbar{display:none!important;}
body .des-experts-carousel.v51 article{flex:0 0 calc((100% - (var(--expert-gap) * 3)) / 4)!important;scroll-snap-align:start!important;background:#fff!important;border-radius:18px!important;padding:18px!important;box-shadow:0 14px 34px rgba(0,0,0,.055)!important;min-height:310px!important;}
body .des-experts-carousel.v51 img{width:88px!important;height:88px!important;border-radius:999px!important;object-fit:cover!important;display:block!important;margin:0 0 16px!important;}
body .des-experts-carousel.v51 h3{margin:0 0 6px!important;}
body .des-experts-carousel.v51 .role{margin:0 0 12px!important;color:var(--green-deep)!important;text-transform:uppercase!important;}
body .des-experts-carousel.v51 p:not(.role){margin:0 0 16px!important;}
body .des-experts-carousel.v51 a{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:24px!important;padding:0 11px!important;border-radius:999px!important;background:var(--green)!important;color:#fff!important;font-size:var(--fs-small)!important;font-weight:700!important;text-decoration:none!important;}
body .des-experts-nav{position:absolute!important;top:50%!important;transform:translateY(-50%)!important;z-index:5!important;width:34px!important;height:34px!important;border:0!important;border-radius:999px!important;background:var(--green)!important;color:#fff!important;font-size:24px!important;line-height:1!important;display:grid!important;place-items:center!important;cursor:pointer!important;box-shadow:0 10px 25px rgba(0,0,0,.12)!important;}
body .des-experts-prev{left:-17px!important;} body .des-experts-next{right:-17px!important;}
body .des-experts-carousel.v51 article:nth-child(n+5){display:block!important;}

/* Homepage-synced projects/insights/publications: keep component proportions, guide typography */
body .dwdg-energy-simple-page.v51 .des-projects,
body .dwdg-energy-projects--home-sync,
body .dwdg-energy-simple-page.v51 .des-publications,
body .dwdg-energy-publications--auto{background:#eee9e4!important;padding:56px 0 64px!important;}
body .dwdg-energy-simple-page.v51 .des-insights,
body .dwdg-energy-insights--home-sync{background:#fbfaf6!important;padding:56px 0 64px!important;}
body .dwdg-energy-simple-page.v51 .work-card{min-height:170px!important;border-radius:16px!important;overflow:hidden!important;}
body .dwdg-energy-simple-page.v51 .work-copy{padding:28px!important;}
body .dwdg-energy-simple-page.v51 .work-media{min-height:170px!important;}
body .dwdg-energy-simple-page.v51 .publication-card{min-height:250px!important;border-radius:18px!important;}
body .dwdg-energy-simple-page.v51 .insight-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:28px!important;}
body .dwdg-energy-simple-page.v51 .insight-card{min-height:260px!important;border-radius:16px!important;}
body .dwdg-energy-simple-page.v51 .insight-copy h3{color:#fff!important;}

/* Contact: bigger photo, typography guide, text no longer oversized */
body .dwdg-energy-simple-page.v51 .des-contact,
body .dwdg-energy-contact{background:linear-gradient(105deg,#e9fff4 0%,#c8f8df 42%,#23d876 100%)!important;min-height:390px!important;padding:0!important;overflow:clip!important;}
body .dwdg-energy-simple-page.v51 .des-contact-inner,
body .dwdg-energy-contact__inner{width:min(calc(100vw - 64px),1120px)!important;max-width:1120px!important;min-height:390px!important;display:grid!important;grid-template-columns:minmax(340px,.95fr) minmax(420px,1.05fr)!important;gap:52px!important;align-items:end!important;margin:auto!important;}
body .dwdg-energy-simple-page.v51 .des-contact-inner>img,
body .dwdg-energy-contact__photo img{width:min(360px,100%)!important;max-width:none!important;height:auto!important;max-height:390px!important;object-fit:contain!important;align-self:end!important;justify-self:center!important;}
body .dwdg-energy-simple-page.v51 .des-contact-text,
body .dwdg-energy-contact__body{align-self:center!important;padding:54px 0!important;width:min(100%,560px)!important;}
body .dwdg-energy-simple-page.v51 .des-contact-text span,
body .dwdg-energy-contact__eyebrow{display:inline-flex!important;border-radius:999px!important;background:#fff!important;color:var(--ink)!important;padding:7px 14px!important;margin:0 0 18px!important;text-transform:none!important;letter-spacing:0!important;font-size:var(--fs-small)!important;}
body .dwdg-energy-simple-page.v51 .des-contact-text h2,
body .dwdg-energy-contact__body h2{font-size:var(--fs-title)!important;line-height:1.1!important;letter-spacing:-.025em!important;margin:0 0 10px!important;}
body .dwdg-energy-simple-page.v51 .des-contact-text .role,
body .dwdg-energy-contact__body strong{font-size:var(--fs-body)!important;line-height:1.4!important;font-weight:700!important;margin:0 0 24px!important;color:var(--ink)!important;letter-spacing:-.005em!important;text-transform:none!important;}
body .dwdg-energy-simple-page.v51 .des-contact-text p:not(.role):not(.mail),
body .dwdg-energy-contact__body p{font-size:var(--fs-body)!important;line-height:1.55!important;max-width:520px!important;margin:0 0 22px!important;color:var(--ink-soft)!important;}
body .dwdg-energy-simple-page.v51 .des-contact-text .mail,
body .dwdg-energy-contact__email{font-size:var(--fs-body)!important;font-weight:700!important;margin:0!important;color:var(--ink)!important;}

@media(max-width:980px){
  body .dwdg-energy-simple-page.v51 .des-inner,body .dwdg-energy-wrap{width:calc(100vw - 40px)!important;}
  body .des-expertise-layout{grid-template-columns:1fr!important;}
  body .des-expertise-detail{position:relative!important;top:auto!important;}
  body .des-experts-carousel.v51 article{flex-basis:calc((100% - 22px) / 2)!important;}
  body .dwdg-energy-simple-page.v51 .des-contact-inner,body .dwdg-energy-contact__inner{grid-template-columns:1fr!important;gap:0!important;min-height:0!important;}
  body .dwdg-energy-simple-page.v51 .des-contact-inner>img,body .dwdg-energy-contact__photo img{width:290px!important;order:2!important;}
  body .dwdg-energy-simple-page.v51 .des-contact-text,body .dwdg-energy-contact__body{order:1!important;padding:42px 0 18px!important;}
}
@media(max-width:760px){
  body .des-expertise-readable-grid,body .dwdg-energy-expertise-readable-grid,body .dwdg-energy-simple-page.v51 .insight-grid{grid-template-columns:1fr!important;}
  body .des-experts-carousel.v51 article{flex-basis:84vw!important;}
  body .des-experts-prev{left:6px!important;} body .des-experts-next{right:6px!important;}
}


/* ======================================================================
   DWDG v52 - Energy corrections: no right white gap, real expert carousel,
   smaller insights text, larger Sebastien photo, guide typography.
   ====================================================================== */
:root{
  --fs-display:clamp(3rem,6.4vw,5.5rem);
  --fs-title:clamp(1.3rem,2vw,1.75rem);
  --fs-sub:clamp(.9rem,1.3vw,1.05rem);
  --fs-body:clamp(.82rem,1.05vw,.92rem);
  --fs-small:clamp(.7rem,.9vw,.8rem);
  --ink:#0c0d0b;--ink-soft:#34352f;--muted:#6d6d66;--green:#12c95f;--green-deep:#0aa04b;
}
html,body{max-width:100%!important;overflow-x:hidden!important;}
body:has(.dwdg-energy-simple-page),body.page-template-template-energy-dwdg{background:#fbfaf6!important;}
/* Only the block wrapper escapes a possible WP narrow column. Children use 100%, not 100vw. */
body .entry-content>.wp-block-dwdg-energy-page-simple,
body .entry-content>.wp-block-dwdg-energy-hero,
body .entry-content>.wp-block-dwdg-energy-expertise,
body .entry-content>.wp-block-dwdg-energy-experts,
body .entry-content>.wp-block-dwdg-energy-projects,
body .entry-content>.wp-block-dwdg-energy-publications,
body .entry-content>.wp-block-dwdg-energy-insights,
body .entry-content>.wp-block-dwdg-energy-contact,
body .is-root-container>.wp-block-dwdg-energy-page-simple,
body .is-root-container>.wp-block-dwdg-energy-hero,
body .is-root-container>.wp-block-dwdg-energy-expertise,
body .is-root-container>.wp-block-dwdg-energy-experts,
body .is-root-container>.wp-block-dwdg-energy-projects,
body .is-root-container>.wp-block-dwdg-energy-publications,
body .is-root-container>.wp-block-dwdg-energy-insights,
body .is-root-container>.wp-block-dwdg-energy-contact{
  width:100vw!important;max-width:100vw!important;margin-left:calc(50% - 50vw)!important;margin-right:calc(50% - 50vw)!important;left:auto!important;right:auto!important;padding-left:0!important;padding-right:0!important;box-sizing:border-box!important;overflow:hidden!important;
}
body .dwdg-energy-simple-page,
body .dwdg-energy-simple-page>section,
body .dwdg-energy-hero,body .dwdg-energy-expertise,body .dwdg-energy-experts,body .dwdg-energy-projects,body .dwdg-energy-publications,body .dwdg-energy-insights,body .dwdg-energy-contact{
  width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important;box-sizing:border-box!important;overflow:hidden!important;
}
body .dwdg-energy-simple-page .des-inner,body .dwdg-energy-wrap{
  width:min(100% - clamp(40px,8vw,112px),1120px)!important;max-width:1120px!important;margin-left:auto!important;margin-right:auto!important;box-sizing:border-box!important;
}
body .dwdg-energy-simple-page .des-inner--hero{max-width:860px!important;}
/* Guide typo: only 5 sizes */
body .dwdg-energy-simple-page h1,body .dwdg-energy-simple-page h2,body .dwdg-energy-section-title,body .dwdg-energy-simple-page .section-heading h2{font-family:Inter,system-ui,sans-serif!important;font-size:var(--fs-title)!important;line-height:1.1!important;letter-spacing:-.025em!important;font-weight:800!important;color:var(--ink)!important;}
body .dwdg-energy-simple-page h3,body .dwdg-energy-simple-page .work-copy h3,body .dwdg-energy-simple-page .publication-copy h3,body .dwdg-energy-publications--auto .publication-copy h3{font-family:Inter,system-ui,sans-serif!important;font-size:var(--fs-sub)!important;line-height:1.1!important;letter-spacing:-.025em!important;font-weight:800!important;color:var(--ink)!important;}
body .dwdg-energy-simple-page p,body .dwdg-energy-simple-page li,body .dwdg-energy-simple-page a,body .dwdg-energy-wrap p{font-family:Inter,system-ui,sans-serif!important;font-size:var(--fs-body)!important;line-height:1.55!important;letter-spacing:-.005em!important;color:var(--ink-soft)!important;}
body .dwdg-energy-simple-page .eyebrow,body .dwdg-energy-simple-page .role,body .dwdg-energy-contact__eyebrow{font-size:var(--fs-small)!important;font-weight:600!important;letter-spacing:.08em!important;}
/* Expertise: reserve detail zone, keep cards readable */
body .des-expertise-layout{display:grid!important;grid-template-columns:minmax(280px,320px) minmax(0,1fr)!important;gap:36px!important;align-items:start!important;}
body .des-expertise-detail{background:#fbfaf6!important;border-radius:18px!important;padding:28px!important;box-shadow:0 18px 42px rgba(0,0,0,.045)!important;position:sticky!important;top:96px!important;}
body .des-expertise-detail span{display:block!important;margin-bottom:16px!important;color:var(--green-deep)!important;font-size:var(--fs-small)!important;font-weight:600!important;letter-spacing:.08em!important;text-transform:uppercase!important;}
body .des-expertise-readable-grid,body .dwdg-energy-expertise-readable-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:22px!important;}
body .des-expertise-readable-grid article,body .dwdg-energy-expertise-readable-grid article{border-radius:18px!important;background:#fff!important;overflow:hidden!important;box-shadow:0 14px 34px rgba(0,0,0,.055)!important;}
body .des-expertise-readable-grid img,body .dwdg-energy-expertise-readable-grid img{height:132px!important;width:100%!important;object-fit:cover!important;display:block!important;}
body .des-expertise-readable-grid article>div,body .dwdg-energy-expertise-readable-grid article>div{padding:18px 18px 22px!important;}
/* Experts carousel: max 4 visible, dynamic extra experts scroll horizontally */
body .des-experts-shell{position:relative!important;padding:0 42px!important;}
body .des-experts-carousel,body .des-experts-carousel.v51,body .des-experts-carousel.v52{
  --expert-gap:22px;display:flex!important;flex-wrap:nowrap!important;gap:var(--expert-gap)!important;overflow-x:auto!important;overflow-y:hidden!important;scroll-snap-type:x mandatory!important;scroll-behavior:smooth!important;padding:4px 2px 22px!important;scrollbar-width:thin!important;max-width:100%!important;
}
body .des-experts-carousel article,body .des-experts-carousel.v51 article,body .des-experts-carousel.v52 article{flex:0 0 calc((100% - (var(--expert-gap) * 3)) / 4)!important;max-width:calc((100% - (var(--expert-gap) * 3)) / 4)!important;display:block!important;scroll-snap-align:start!important;background:#fff!important;border-radius:16px!important;padding:16px!important;box-shadow:0 12px 30px rgba(0,0,0,.055)!important;min-height:280px!important;}
body .des-experts-carousel img{width:78px!important;height:78px!important;border-radius:999px!important;object-fit:cover!important;display:block!important;margin:0 0 14px!important;}
body .des-experts-carousel h3{margin:0 0 6px!important;font-size:var(--fs-sub)!important;line-height:1.1!important;}
body .des-experts-carousel .role{margin:0 0 10px!important;color:var(--green-deep)!important;text-transform:uppercase!important;font-size:var(--fs-small)!important;}
body .des-experts-carousel p:not(.role){margin:0 0 14px!important;font-size:var(--fs-small)!important;line-height:1.45!important;}
body .des-experts-carousel a{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:24px!important;padding:0 11px!important;border-radius:999px!important;background:var(--green)!important;color:#fff!important;font-size:var(--fs-small)!important;font-weight:700!important;text-decoration:none!important;}
body .des-experts-nav{position:absolute!important;top:50%!important;transform:translateY(-50%)!important;z-index:5!important;width:32px!important;height:32px!important;border:0!important;border-radius:999px!important;background:var(--green)!important;color:#fff!important;font-size:22px!important;line-height:1!important;display:grid!important;place-items:center!important;cursor:pointer!important;box-shadow:0 10px 25px rgba(0,0,0,.12)!important;}
body .des-experts-prev{left:0!important;}body .des-experts-next{right:0!important;}
/* Other insights: use homepage cards but force guide typography, no huge titles */
body .dwdg-energy-simple-page .insight-grid,body .dwdg-energy-insights--home-sync .insight-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:28px!important;}
body .dwdg-energy-simple-page .insight-card,body .dwdg-energy-insights--home-sync .insight-card{min-height:240px!important;border-radius:16px!important;}
body .dwdg-energy-simple-page .insight-copy,body .dwdg-energy-insights--home-sync .insight-copy{padding:16px!important;}
body .dwdg-energy-simple-page .insight-copy h3,body .dwdg-energy-simple-page .insight-copy h3 a,body .dwdg-energy-insights--home-sync .insight-copy h3,body .dwdg-energy-insights--home-sync .insight-copy h3 a{font-size:var(--fs-sub)!important;line-height:1.1!important;letter-spacing:-.025em!important;font-weight:800!important;color:#fff!important;margin:0!important;}
body .dwdg-energy-simple-page .insight-copy .eyebrow,body .dwdg-energy-insights--home-sync .insight-copy .eyebrow{font-size:var(--fs-small)!important;}
/* Contact: larger Sebastien image, smaller text, no white gap */
body .dwdg-energy-simple-page .des-contact,body .dwdg-energy-contact{width:100%!important;background:linear-gradient(105deg,#e9fff4 0%,#c8f8df 42%,#23d876 100%)!important;min-height:430px!important;padding:0!important;overflow:hidden!important;}
body .dwdg-energy-simple-page .des-contact-inner,body .dwdg-energy-contact__inner{width:min(100% - clamp(40px,8vw,112px),1120px)!important;max-width:1120px!important;min-height:430px!important;display:grid!important;grid-template-columns:minmax(380px,1fr) minmax(420px,1.1fr)!important;gap:56px!important;align-items:end!important;margin-inline:auto!important;}
body .dwdg-energy-simple-page .des-contact-inner>img,body .dwdg-energy-contact__photo img{width:min(460px,100%)!important;max-width:none!important;height:auto!important;max-height:430px!important;object-fit:contain!important;align-self:end!important;justify-self:center!important;position:relative!important;left:auto!important;bottom:auto!important;margin:0!important;}
body .dwdg-energy-simple-page .des-contact-text,body .dwdg-energy-contact__body{align-self:center!important;padding:48px 0!important;width:min(100%,540px)!important;}
body .dwdg-energy-simple-page .des-contact-text h2,body .dwdg-energy-contact__body h2{font-size:var(--fs-title)!important;line-height:1.1!important;margin:0 0 10px!important;}
body .dwdg-energy-simple-page .des-contact-text .role,body .dwdg-energy-contact__body strong{font-size:var(--fs-body)!important;line-height:1.4!important;font-weight:700!important;margin:0 0 20px!important;color:var(--ink)!important;text-transform:none!important;letter-spacing:-.005em!important;}
body .dwdg-energy-simple-page .des-contact-text p:not(.role):not(.mail),body .dwdg-energy-contact__body p{font-size:var(--fs-body)!important;line-height:1.55!important;max-width:520px!important;margin:0 0 18px!important;}
body .dwdg-energy-simple-page .des-contact-text .mail,body .dwdg-energy-contact__email{font-size:var(--fs-small)!important;font-weight:700!important;color:var(--ink)!important;}
@media(max-width:980px){
  body .dwdg-energy-simple-page .des-inner,body .dwdg-energy-wrap{width:calc(100% - 40px)!important;}
  body .des-expertise-layout{grid-template-columns:1fr!important;}
  body .des-expertise-detail{position:relative!important;top:auto!important;}
  body .des-experts-carousel article,body .des-experts-carousel.v51 article,body .des-experts-carousel.v52 article{flex-basis:calc((100% - 22px)/2)!important;max-width:calc((100% - 22px)/2)!important;}
  body .dwdg-energy-simple-page .des-contact-inner,body .dwdg-energy-contact__inner{grid-template-columns:1fr!important;gap:0!important;min-height:0!important;}
  body .dwdg-energy-simple-page .des-contact-inner>img,body .dwdg-energy-contact__photo img{width:330px!important;order:2!important;}
  body .dwdg-energy-simple-page .des-contact-text,body .dwdg-energy-contact__body{order:1!important;padding:42px 0 18px!important;}
}
@media(max-width:760px){
  body .des-expertise-readable-grid,body .dwdg-energy-expertise-readable-grid,body .dwdg-energy-simple-page .insight-grid,body .dwdg-energy-insights--home-sync .insight-grid{grid-template-columns:1fr!important;}
  body .des-experts-shell{padding:0 38px!important;}
  body .des-experts-carousel article,body .des-experts-carousel.v51 article,body .des-experts-carousel.v52 article{flex-basis:84vw!important;max-width:84vw!important;}
}
