/* Styles pour single.php */

.single-post {
  background: #fff;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.post-header {
  margin-bottom: 2rem;
}

.post-title {
  font-size: 2.2rem;
  color: var(--couleur-principale);
  margin-bottom: 0.8rem;
}

.post-meta {
  font-size: 0.9rem;
  color: var(--couleur-secondaire);
  margin-bottom: 1.5rem;
}

.post-thumbnail {
  margin-bottom: 2rem;
}

.post-thumbnail img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--couleur-principale);
}

.post-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.post-content strong {
  font-weight: 600;
  color: #111;
}

.post-footer {
  margin-top: 2rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.post-categories,
.post-tags {
  margin-bottom: 0.5rem;
}

.author-box {
  display: flex;
  gap: 1rem;
  background: #f9f9f9;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  margin-top: 3rem;
  align-items: center;
}

.author-avatar img {
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.author-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--couleur-principale);
}

.author-info p {
  margin: 0.5rem 0;
  color: var(--couleur-secondaire);
  font-size: 0.95rem;
}

.author-info a {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
}

.author-info a:hover {
  text-decoration: underline;
}

/* Navigation post précédent / suivant */
.post-navigation {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #666;
}

.post-navigation a {
  color: var(--accent);
  text-decoration: none;
}

.post-navigation a:hover {
  text-decoration: underline;
}
.logo-img {
  height: 130px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

