:root { 
  --main-color: #99C248; 
  --gold-color: #d0b168; 
  --silver-color: #383838;
  --ink:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --bg:#ffffff;
  --soft:#f8fafc;
  --radius:7px;
}

/* ======================= Titres / Textes =========================== */
header * {
  color: #fff; }

h1, h2, h3 {
  text-transform: uppercase; 
  text-align: center; }

h1, h2 {
  font-size: 1.2em; }

h1 {
  color:var(--main-color);
  font-weight: 800;
  padding: 3.75em 0 1.75em 0; }

h2 {
    padding: .55em 0;
    position: relative;
    border-bottom: var(--main-color) 1px solid;
    text-align: left;
    letter-spacing: 2px;
    margin-bottom: .65em;
}

.single-post {
    margin: 6px auto;
    padding: 0 20px;
}

/* HEADER */

.post-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

/* IMAGE */
.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* CONTENU */
.post-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.post-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.post-content ul {
    list-style: none;
    padding-left: 0;
}

.post-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.post-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--main-color);
    font-weight: bold;
}