#ta-explorer-app {
  width: 100%;
  margin: 1.5rem 0 2rem;
  color: #172033;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#ta-explorer-app,
#ta-explorer-app *,
#ta-explorer-app *::before,
#ta-explorer-app *::after {
  box-sizing: border-box;
}

#ta-explorer-app .tae-shell {
  display: grid;
  gap: 0.85rem;
}

#ta-explorer-app .tae-hero,
#ta-explorer-app .tae-toolbar,
#ta-explorer-app .tae-map-panel,
#ta-explorer-app .tae-list-panel,
#ta-explorer-app .tae-detail-panel {
  background: #ffffff;
  border: 1px solid #d8dfeb;
  box-shadow: 0 8px 30px rgba(17, 31, 53, 0.05);
}

#ta-explorer-app .tae-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(240px, 0.8fr);
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #eef4ff 0%, #f7fbff 46%, #ffffff 100%);
  border-radius: 0 0 18px 18px;
}

#ta-explorer-app .tae-intro {
  margin: 0;
  max-width: 78ch;
  line-height: 1.52;
  color: #42506a;
  font-size: 0.96rem;
}

#ta-explorer-app .tae-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-content: center;
}

#ta-explorer-app .tae-stat-pill {
  border: 1px solid #d5e1f7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.72rem 0.82rem;
}

#ta-explorer-app .tae-stat-pill--hero {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 88px;
}

#ta-explorer-app .tae-stat-pill strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  color: #101827;
}

#ta-explorer-app .tae-stat-pill span {
  display: block;
  margin-top: 0.25rem;
  color: #58657d;
  font-size: 0.88rem;
  font-weight: 700;
}

#ta-explorer-app .tae-toolbar {
  border-radius: 16px;
  padding: 0.8rem 1rem;
}

#ta-explorer-app .tae-toolbar-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

#ta-explorer-app .tae-filter-group {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

#ta-explorer-app .tae-filter-label,
#ta-explorer-app .tae-section-title {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555555;
  line-height: 1.2;
}

#ta-explorer-app .tae-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

#ta-explorer-app .tae-filter-chip,
#ta-explorer-app .tae-sort-btn {
  border: 1px solid #c9d4e5;
  background: #f8fbff;
  color: #243149;
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

#ta-explorer-app .tae-filter-chip:hover,
#ta-explorer-app .tae-sort-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
  background: #ffffff;
}

#ta-explorer-app .tae-filter-chip.is-active {
  background: #172033;
  border-color: #172033;
  color: #ffffff;
}

#ta-explorer-app .tae-map-panel,
#ta-explorer-app .tae-list-panel,
#ta-explorer-app .tae-detail-panel {
  border-radius: 16px;
}

#ta-explorer-app .tae-map-panel {
  padding: 0.9rem 1rem 1rem;
}

#ta-explorer-app .tae-map-head {
  display: flex;
  align-items: center;
  margin-bottom: 0.65rem;
}

#ta-explorer-app .tae-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  align-items: center;
  color: #4d5c76;
  font-size: 0.88rem;
}

#ta-explorer-app .tae-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

#ta-explorer-app .tae-legend-dot--segment {
  background: #c73a2b;
}

#ta-explorer-app .tae-legend-dot--parcours {
  background: #2f6f3e;
}

#ta-explorer-app .tae-map-shell {
  position: relative;
  min-height: 560px;
}

#ta-explorer-app #ta-explorer-map,
#ta-explorer-app .leaflet-container {
  width: 100%;
  height: 560px;
  border-radius: 16px;
  overflow: hidden;
  background: #ecf2fb;
}

#ta-explorer-app .tae-map-badge {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #172033;
  color: #172033;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

#ta-explorer-app .tae-bottom-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
  gap: 1rem;
  align-items: start;
}

#ta-explorer-app .tae-bottom-grid > * {
  min-height: 0;
}

#ta-explorer-app .tae-bottom-grid .tae-list-panel,
#ta-explorer-app .tae-bottom-grid .tae-detail-panel {
  min-height: 0;
}

#ta-explorer-app .tae-list-panel {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 0;
  overflow: hidden;
}

#ta-explorer-app .tae-detail-panel {
  min-height: 100%;
}

#ta-explorer-app .tae-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

#ta-explorer-app .tae-list-title-wrap h2 {
  margin: 0;
  font-size: 1rem;
  color: #101827;
}

#ta-explorer-app .tae-list-title-wrap p {
  margin: 0.15rem 0 0;
  color: #6b7890;
  font-size: 0.86rem;
}

#ta-explorer-app .tae-results {
  display: grid;
  grid-auto-rows: min-content;
  gap: 0.38rem;
  align-content: start;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto !important;
  overflow-x: hidden;
  padding-right: 0.2rem;
}

#ta-explorer-app .tae-result-row {
  width: 100%;
  border: 1px solid #d8dfeb;
  border-radius: 12px;
  background: #fcfdff;
  padding: 0.55rem 0.65rem;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

#ta-explorer-app .tae-result-row:hover {
  border-color: #aebed8;
  background: #f7fafe;
}

#ta-explorer-app .tae-result-row.is-active {
  border-color: #172033;
  background: #eff4fb;
  box-shadow: 0 6px 18px rgba(17, 31, 53, 0.08);
}

#ta-explorer-app .tae-result-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffffff;
}

#ta-explorer-app .tae-result-mark--segment {
  background: #c73a2b;
}

#ta-explorer-app .tae-result-mark--parcours {
  background: #2f6f3e;
}

#ta-explorer-app .tae-result-main {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

#ta-explorer-app .tae-result-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #101827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#ta-explorer-app .tae-result-meta {
  display: block;
  font-size: 0.8rem;
  color: #69768e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#ta-explorer-app .tae-detail-panel {
  padding: 1rem;
}

#ta-explorer-app .tae-detail-card {
  display: grid;
  gap: 0.9rem;
}

#ta-explorer-app .tae-detail-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

#ta-explorer-app .tae-source-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

#ta-explorer-app .tae-source-badge--segment {
  background: #fff0ea;
  color: #b13a28;
  border: 1px solid #efb5a7;
}

#ta-explorer-app .tae-source-badge--parcours {
  background: #edf7ef;
  color: #2f6f3e;
  border: 1px solid #b8d2bd;
}

#ta-explorer-app .tae-detail-commune {
  font-size: 0.87rem;
  color: #6a7790;
}

#ta-explorer-app .tae-detail-commune--below {
  margin: 0.12rem 0 0;
  line-height: 1.2;
}

#ta-explorer-app .tae-detail-head h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.08;
  color: #101827;
}

#ta-explorer-app .tae-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.9fr);
  gap: 0.9rem;
  align-items: end;
}

#ta-explorer-app .tae-stats-grid--compact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

#ta-explorer-app .tae-stat-box,
#ta-explorer-app .tae-alt-box,
#ta-explorer-app .tae-summary-box,
#ta-explorer-app .tae-side-box,
#ta-explorer-app .tae-access-tile {
  border: 1px solid #dbe2ef;
  border-radius: 14px;
  background: #fbfdff;
}

#ta-explorer-app .tae-stat-box,
#ta-explorer-app .tae-alt-box {
  padding: 0.62rem 0.72rem;
}

#ta-explorer-app .tae-stat-box span,
#ta-explorer-app .tae-alt-box span {
  display: block;
  margin-bottom: 0.12rem;
  color: #687791;
  font-size: 0.76rem;
}

#ta-explorer-app .tae-stat-box strong,
#ta-explorer-app .tae-alt-box strong {
  color: #101827;
  font-size: 0.95rem;
}

#ta-explorer-app .tae-side-box,
#ta-explorer-app .tae-summary-box,
#ta-explorer-app .tae-access-tile {
  padding: 0.85rem;
}

#ta-explorer-app .tae-bullet-list,
#ta-explorer-app .tae-side-text,
#ta-explorer-app .tae-summary-box p {
  margin: 0;
  color: #43516a;
  line-height: 1.5;
}

#ta-explorer-app .tae-bullet-list {
  padding-left: 1rem;
}

#ta-explorer-app .tae-bullet-list--compact {
  font-size: 0.9rem;
}

#ta-explorer-app .tae-profile-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 0.9rem;
  align-items: end;
}

#ta-explorer-app .tae-profile-col {
  display: grid;
  gap: 0.35rem;
}

#ta-explorer-app .tae-profile-chart,
#ta-explorer-app .tae-profile-empty {
  border: 1px solid #dbe2ef;
  border-radius: 14px;
  background: #fbfdff;
  padding: 0.7rem;
}

#ta-explorer-app .tae-profile-svg-wrap {
  position: relative;
}

#ta-explorer-app .tae-profile-chart svg {
  display: block;
  width: 100%;
  height: 128px;
}

#ta-explorer-app .tae-profile-badge {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #345f3a;
  color: #345f3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

#ta-explorer-app .tae-profile-badge--segment {
  border-color: #c73a2b;
  color: #c73a2b;
}

#ta-explorer-app .tae-profile-badge--parcours {
  border-color: #345f3a;
  color: #345f3a;
}

#ta-explorer-app .tae-profile-empty {
  color: #69778f;
}

#ta-explorer-app .tae-alt-grid--stack {
  display: grid;
  gap: 0.55rem;
  align-self: end;
}

#ta-explorer-app .tae-alt-grid--stack .tae-alt-box {
  padding: 0.52rem 0.68rem;
}

#ta-explorer-app .tae-access-block {
  display: grid;
  gap: 0.45rem;
}

#ta-explorer-app .tae-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

#ta-explorer-app .tae-access-tile a {
  color: #0b5cad;
  text-decoration: none;
  font-weight: 700;
}

#ta-explorer-app .tae-access-tile a:hover {
  color: #0b5cad;
  text-decoration: underline;
}

#ta-explorer-app .tae-link-muted {
  color: #7a879f;
}

#ta-explorer-app .tae-qr {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}

#ta-explorer-app .tae-qr img {
  width: 132px;
  height: 132px;
  border-radius: 12px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  padding: 0.45rem;
}

#ta-explorer-app .tae-qr.is-hidden {
  display: none;
}

Oui — voici le bloc CSS Explorer complet nettoyé, avec le hero façon Home et la correction pour les 2 tuiles de stats afin qu’elles restent bien séparées.

css
/* Masque le titre WordPress natif pour éviter le doublon */
.page-id-64 .entry-header {
  display: none;
}

/* Hero Explorer aligné sur Home */
#ta-explorer-app .tae-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(220px, 0.65fr);
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  padding: 1.35rem 1.4rem;
  margin: 0 0 1rem;
  border-radius: 18px;
  border: 1px solid rgba(174, 195, 225, 0.65);
  background:
    radial-gradient(circle at top right, rgba(107, 160, 240, 0.2), transparent 34%),
    linear-gradient(135deg, #edf4ff 0%, #f7fbff 55%, #f4f8ff 100%);
  box-shadow: 0 12px 28px rgba(64, 92, 138, 0.08);
}

#ta-explorer-app .tae-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 42%);
}

#ta-explorer-app .tae-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

#ta-explorer-app .tae-hero-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.5rem;
  color: #5d7291;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#ta-explorer-app .tae-hero-title {
  margin: 0;
  color: #13233c;
  font-size: clamp(2.35rem, 2.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 24ch;
  text-wrap: balance;
}

#ta-explorer-app .tae-intro {
  margin: 0.8rem 0 0;
  color: #3f5676;
  line-height: 1.65;
  max-width: 74ch;
  font-size: 1.02rem;
}

#ta-explorer-app .tae-hero-side {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

/* Wrapper des 2 tuiles */
#ta-explorer-app .tae-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  min-width: min(100%, 320px);
}

/* Tuiles individuelles */
#ta-explorer-app .tae-hero-stats > * {
  min-width: 0;
  padding: 1rem 1.05rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(171, 193, 224, 0.78);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

/* Valeurs */
#ta-explorer-app .tae-hero-stats > * strong,
#ta-explorer-app .tae-hero-stats > * b {
  display: block;
  color: #13233c;
  font-size: 1.9rem;
  line-height: 1;
}

/* Labels */
#ta-explorer-app .tae-hero-stats > * span,
#ta-explorer-app .tae-hero-stats > * small {
  display: block;
  margin-top: 0.3rem;
  color: #5d7291;
  font-size: 0.9rem;
  font-weight: 800;
}

/* Harmonisation des panneaux */
#ta-explorer-app .tae-toolbar,
#ta-explorer-app .tae-map-panel,
#ta-explorer-app .tae-list-panel,
#ta-explorer-app .tae-detail-panel {
  border-radius: 18px;
  border: 1px solid rgba(174, 195, 225, 0.65);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,248,255,0.98) 100%);
  box-shadow: 0 12px 28px rgba(64, 92, 138, 0.08);
}

#ta-explorer-app .tae-toolbar:hover,
#ta-explorer-app .tae-map-panel:hover,
#ta-explorer-app .tae-list-panel:hover,
#ta-explorer-app .tae-detail-panel:hover {
  border-color: rgba(113, 162, 228, 0.85);
  box-shadow: 0 16px 34px rgba(77, 112, 171, 0.14);
}

@media (min-width: 1100px) {
  #ta-explorer-app .tae-hero-title {
    white-space: nowrap;
  }
}

@media (max-width: 920px) {
  #ta-explorer-app .tae-hero {
    grid-template-columns: 1fr;
    padding: 1.15rem 1.1rem;
  }

  #ta-explorer-app .tae-hero-side {
    justify-content: flex-start;
  }

  #ta-explorer-app .tae-hero-stats {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  #ta-explorer-app .tae-hero-stats {
    grid-template-columns: 1fr;
    max-width: 220px;
  }
}