/* Container de lecture optimisé */
.container-narrow {
  max-width: 800px;
  margin: 0px auto 50px; /* Espace pour le header fixe */
  padding: 0 20px;
}

.post-header {
  text-align: center;
  padding-bottom: 40px;
  padding-top: 150px;
}

.post-category-badge {
  background: var(--green-color);
  color: var(--main-color);
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.post-title {
  padding: 20px 0;
}

.post-thumbnail {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* Style du contenu (WordPress Editor) */
.post-content {
  line-height: 1.8;
  font-size: 1.15rem;
}

.post-content p {
  padding-bottom: 1.5rem;
}

.post-content h2, .post-content h3 {
  padding-bottom: 20px;
}

.post-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

/* Navigation Flexbox */
.post-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  gap: 20px;
}

.post-navigation a {
  color: var(--text-color);
  font-weight: 600;
  transition: opacity 0.3s;
}

.post-navigation a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .post-navigation {
    flex-direction: column;
    text-align: center;
  }
}
