/* ============================================
   Festival Obliques — Culture & travel blog
   Unique CSS (anti-footprint)
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', 'Trebuchet MS', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  background: #fff;
}

a { color: #5cad8f; text-decoration: none; }
a:hover { color: #3d8b6e; text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* Layout */
.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Entete ---- */
.entete {
  padding: 28px 0 20px;
  border-bottom: 1px solid #eee;
}
.entete__inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.entete__titre {
  font-family: 'Lora', 'Book Antiqua', serif;
  font-size: 24px;
  font-weight: 400;
  color: #5cad8f;
  text-decoration: none;
}
.entete__titre:hover { color: #3d8b6e; text-decoration: none; }
.entete__accroche {
  font-size: 12px;
  color: #999;
  font-style: italic;
}
.entete__menu {
  display: flex;
  gap: 18px;
}
.entete__menu a {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
}
.entete__menu a:hover { color: #5cad8f; }

/* ---- Corps ---- */
.corps {
  padding: 36px 0 60px;
}

/* ---- Liste articles (accueil) ---- */
.fil {}
.fil__element {
  padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
}
.fil__element:first-child { padding-top: 0; }
.fil__element:last-child { border-bottom: none; }
.fil__info {
  font-size: 11px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.fil__info span { margin-right: 12px; }
.fil__nom {
  font-family: 'Lora', 'Book Antiqua', serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 8px;
}
.fil__nom a { color: #5cad8f; }
.fil__nom a:hover { color: #3d8b6e; text-decoration: none; }
.fil__apercu {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 10px;
}
.fil__suite {
  font-size: 12px;
  color: #5cad8f;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.fil__suite:hover { color: #3d8b6e; text-decoration: none; }

/* ---- Article unique ---- */
.recit {
  max-width: 680px;
  margin: 0 auto;
}
.recit__titre {
  font-family: 'Lora', 'Book Antiqua', serif;
  font-size: 28px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin-bottom: 12px;
}
.recit__meta {
  font-size: 12px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.recit__meta span { margin-right: 14px; }

.recit__corps {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
}
.recit__corps p { margin-bottom: 18px; }
.recit__corps h2 {
  font-family: 'Lora', 'Book Antiqua', serif;
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin: 30px 0 14px;
}
.recit__corps h3 {
  font-family: 'Lora', 'Book Antiqua', serif;
  font-size: 17px;
  font-weight: 400;
  color: #555;
  margin: 24px 0 10px;
}
.recit__corps ul, .recit__corps ol {
  margin: 0 0 18px 20px;
  color: #555;
}
.recit__corps li { margin-bottom: 5px; }
.recit__corps blockquote {
  margin: 20px 0;
  padding: 16px 22px;
  border-left: 4px solid #5cad8f;
  background: #f8faf9;
  font-style: italic;
  color: #666;
}

/* Pied article */
.recit__fin {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}
.recit__etiquettes {
  font-size: 11px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* Voir aussi */
.aussi {
  margin-top: 14px;
}
.aussi strong {
  font-size: 13px;
  color: #666;
  font-family: 'Lora', 'Book Antiqua', serif;
}
.aussi ul { list-style: none; padding: 0; margin-top: 6px; }
.aussi li {
  padding: 4px 0;
  font-size: 14px;
}
.aussi li::before {
  content: "— ";
  color: #5cad8f;
}

/* ---- Pied de page ---- */
.piedepage {
  background: #f8f8f8;
  border-top: 1px solid #eee;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}
.piedepage__note {
  margin-top: 4px;
  font-style: italic;
  font-size: 11px;
  color: #bbb;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .entete__inner { flex-direction: column; align-items: flex-start; }
  .entete__menu { gap: 12px; }
  .entete__titre { font-size: 20px; }
  .recit__titre { font-size: 22px; }
  .fil__nom { font-size: 18px; }
  .wrap { padding: 0 16px; }
}
