:root {
  --brun: #5a4636;
  --brun-doux: #7a6452;
  --beige-fond: #fbf8f4;
  --beige-alt: #f2e9de;
  --beige: #f4eee7;
  --blanc: #ffffff;
  --texte: #2f2a26;
  --muted: #6f675f;
  --bordure: rgba(90,70,54,0.15);

  /* Cadres bleus articles */
  --bleu-fond: #eef3f8;
  --bleu-bordure: #3f6f9a;
  --bleu-texte: #243c53;
}

/* ================= RESET ================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  background: var(--beige-fond);
  color: var(--texte);
  line-height: 1.6;
}

/* ================= STRUCTURE ================= */
.frame {
  width: 94%;
  max-width: 1650px;
  margin: 0 auto;
}

.frame.narrow {
  max-width: 900px;
}

/* ================= HEADER ================= */
.site-header {
  background: var(--beige-fond);
  border-bottom: 1px solid var(--bordure);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.site-name {
  font-size: 1.4rem;
  color: var(--brun);
  letter-spacing: 0.06em;
}

.nav a {
  margin-left: 1.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--brun);
}

/* ================= BANNIÈRE ================= */
.hero {
  padding: 1.2rem 0;
}

.hero-banner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 44px rgba(90,70,54,0.18);
}

.hero-banner img {
  width: 100%;
  display: block;
}

/* ================= TITRE DE PAGE ================= */
.page-title {
  margin: 1.4rem 0 2rem;
}

.page-title-banner {
  max-width: 1100px;
  padding: 1.4rem 2.2rem;
  background: linear-gradient(90deg, var(--beige-alt), var(--beige-fond));
  border-left: 6px solid var(--brun-doux);
  border-radius: 18px;
}

.page-title-banner h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
  color: var(--brun);
}

.article-meta {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ================= SECTIONS ================= */
.section {
  padding: 2.4rem 0;
}

.section.alt {
  background: var(--beige-alt);
}

/* ================= GRILLES ================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* ================= CARTES ================= */
.card {
  background: var(--blanc);
  border-radius: 24px;
  padding: 2.4rem 2.6rem;
  box-shadow: 0 16px 34px rgba(90,70,54,0.12);
}

.card h2 {
  margin-top: 0;
  font-size: 1.3rem;
  color: var(--brun);
}

.card p,
.card li {
  font-size: 1.05rem;
}

/* ================= PRÉSENTATION PHOTO ================= */
.presentation-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.presentation-inner img {
  width: 150px;
  max-width: 150px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(90,70,54,0.18);
}

/* ================= ARTICLES – CONTENU ================= */
.article-content img.article-image {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
}

/* ================= CADRES BLEUS ARTICLES ================= */
.info-box.blue {
  background: var(--bleu-fond);
  border-left: 6px solid var(--bleu-bordure);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  margin: 2.2rem 0;
  color: var(--bleu-texte);
}

.info-box.blue h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--bleu-bordure);
}

.info-box.blue p,
.info-box.blue li {
  font-size: 1.02rem;
}

/* ================= ÉCLAIRAGES RÉCENTS ================= */
.editorial-card {
  background: linear-gradient(180deg, var(--beige), var(--beige-fond));
  border-left: 8px solid var(--brun-doux);
  border-radius: 26px;
  box-shadow: 0 20px 44px rgba(90,70,54,0.14);
}

.editorial-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
  color: var(--brun);
}

.editorial-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brun-doux);
}

/* Grille 2 colonnes */
.recent-articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

/* Ligne article */
.recent-article-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  color: inherit;
}

/* 🔒 TAILLE VERROUILLÉE DES IMAGES */
.editorial-card .recent-articles img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(90,70,54,0.18);
}

/* Texte article */
.recent-article-text h3 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
  color: var(--brun);
}

.article-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.recent-article-row:hover h3 {
  text-decoration: underline;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--beige);
  padding: 2.4rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .recent-articles {
    grid-template-columns: 1fr;
  }

  .presentation-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .presentation-inner img {
    width: 130px;
  }

  .editorial-card .recent-articles img {
    width: 64px;
    height: 64px;
  }
}