/*
 * BASE.CSS — styles généraux et structure
 */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
}

.homepage {
    max-width: 1000px;
    overflow: hidden;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cache l'affichage de métadonnées */
.post-meta, .entry-meta, .posted-on, .byline {
    display: none;
}

/* Navigation des articles */
.post-navigation {
    display: none;
}
 .entry-title {
    font-size: 2rem;
    color: #0e918c;
    margin-bottom: 1rem;
    text-align: center;
    
    padding-left: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
.pagination {

  text-align: center;

  margin-top: 2rem;

}



.pagination .page-numbers {

  display: inline-block;

  margin: 0 6px;

  padding: 8px 12px;

  background: #f1f1f1;

  color: #333;

  border-radius: 6px;

  text-decoration: none;

  transition: background 0.2s;

}



.pagination .current {

  background-color: #0e918c;

  color: white;

  font-weight: bold;

}



.pagination .page-numbers:hover {

  background-color: #0e918c;

  color: white;

}