/* =========================
   BASE PAGE (POESIA)
========================= */

body {
  background-color: #b1122a; /* rouge-rose plus profond et élégant */
  color: #f5e9ec;
  font-family: Georgia, serif;
  max-width: 1000px;
  margin: auto;
  padding: 70px 50px;
}

/* =========================
   HOME
========================= */

.home,
.home:visited {
  color: #ffd1dc;
  text-decoration: none;
  font-size: 16px;
}

.home:hover {
  opacity: 0.6;
}

/* =========================
   TITRE SECTION
========================= */

h1 {
  font-size: 54px;
  font-weight: normal;
  margin-top: 30px;
  margin-bottom: 70px;
  color: #ffe6ea;
}

/* =========================
   POST STRUCTURE (comme ensaios)
========================= */

.post {
  display: flex;
  gap: 30px;
  margin-bottom: 70px;
  align-items: flex-start;
}

/* =========================
   IMAGE (CORRIGÉE)
========================= */

.post img {
  width: 220px;
  height: 220px;
  object-fit: cover;
}

/* =========================
   TEXTE
========================= */

.post-text {
  flex: 1;
}

.post-text h2 {
  margin-top: 0;
  font-size: 32px;
  font-weight: normal;
}

.post-text a,
.post-text a:visited {
  color: #ffffff;
  text-decoration: none;
}

.post-text a:hover {
  opacity: 0.6;
}

.post-text p {
  color: #ffe6ea;
  font-size: 18px;
  line-height: 1.8;
}