.post-thumbnail {
  margin: 0 0 1.25rem;
}

.post-thumbnail-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* =========================================
   Shared meta base
========================================= */
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--meta-color, #5f6368);
}

.entry-meta a,
.entry-meta a:not(:hover):not(:focus) {
  color: inherit;
  text-decoration: none;
}

.entry-meta a:hover,
.entry-meta a:focus {
  color: var(--accent-color, inherit);
}

.entry-meta .entry-meta-item {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
  min-width: 0;
}

/* =========================================
   Inline meta groups with separators
========================================= */
.entry-meta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.entry-meta-inline .entry-meta-separator {
  position: relative;
  width: 1.25rem;
  height: 1em;
  margin: 0 0.35rem;
  flex: 0 0 auto;
}

.entry-meta-inline .entry-meta-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid currentColor;
  opacity: 0.35;
  transform: translateY(-50%);
}

/* =========================================
   Primary / top meta
   Category, taxonomy, etc.
========================================= */
.entry-meta-top {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--meta-top-color, #6b7280);
}

/* =========================================
   Secondary meta
   Byline + published/updated dates
========================================= */
.entry-meta-secondary {
  display: block;
  margin-top: 0.875rem;
  color: var(--meta-secondary-color, #5f6368);
}

.entry-meta-secondary .entry-byline,
.entry-meta-secondary .entry-dates {
  display: block;
  margin: 0;
}

.entry-meta-secondary .entry-byline {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--meta-byline-color, #111827);
}

.entry-meta-secondary .entry-dates {
  margin-top: 0.2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: inherit;
}

.entry-meta-secondary time {
  white-space: nowrap;
}

.entry-meta-secondary .meta-separator {
  opacity: 0.5;
}


.entry-meta-secondary .entry-byline {
  font-weight: 500;
  color: #1f2937;
}

.entry-meta-secondary .entry-dates {
  font-size: 1.2rem;
  color: #6b7280;
}



/* =========================================
   Related spacing
========================================= */
.post-content-share {
  margin: 1rem 0 1.25rem;
}

.entry-footer {
  margin-top: 1.5rem;
}

/* =========================================
   Mobile
========================================= */
@media (max-width: 767px) {
  .entry-meta {
    font-size: 0.9rem;
    gap: 0.35rem 0.6rem;
  }

  .entry-meta-top {
    font-size: 0.74rem;
  }

  .entry-meta-secondary .entry-byline {
    font-size: 0.92rem;
  }

  .entry-meta-secondary .entry-dates {
    font-size: 0.88rem;
  }
}


/* =========================================
   Repère HE — Points clés
========================================= */

.he-keypoints {
  margin: 24px 0 28px;
  padding: 18px 20px;
  background: var(--he-card-bg, #f4f6f8);
  border-left: 4px solid var(--he-accent, #003266);
  border-radius: 10px;
  color: var(--he-text, #1f2937);
}

.he-keypoints-label {
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 4px;
  font-weight: 700;
  color: var(--he-heading, #111827);
  border-bottom: 2px solid var(--he-accent, #003266);
}

.he-keypoints ul {
  margin: 0;
  padding-left: 1.15rem;
}

.he-keypoints li {
  margin: 8px 0;
  line-height: 1.55;
}

.he-keypoints li::marker {
  color: var(--he-accent, #003266);
}

