/* ============================================================
   SECTION ARTICLE DU MOIS
   Layout 2 colonnes : image produit à gauche, texte à droite.
   Design : Les Domaines Rollan de By — fond gris clair, typographie serif élégante
   ============================================================ */

/* ── Google Fonts — à coller dans <head> de header.php si pas déjà présent ──
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Playfair+Display:wght@400;500&display=swap" rel="stylesheet">
   ── */

/* ── Conteneur principal ── */
.article-mois {
  background-color: #eeece8;
  padding: 80px 20px 90px;
}

/* ── Grille 2 colonnes (55% image / 45% texte), max 1100px, centrée ── */
.article-mois__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: center;
}

/* ════════════════════════════════════════
   COLONNE IMAGE (gauche)
   ════════════════════════════════════════ */
.article-mois__col--img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px 20px 0;
}

.article-mois__img {
  max-width: 100%;
  max-height: 650px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(6px 12px 20px rgba(0, 0, 0, 0.13));
}

/* ════════════════════════════════════════
   COLONNE TEXTE (droite)
   ════════════════════════════════════════ */
.article-mois__col--text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.article-mois__text-inner {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

/* ── Étiquette dorée (ex : "LE VIN DU MOIS") ── */
.article-mois__etiquette {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #9c8354;
  margin: 0 0 14px 0;
  line-height: 1;
}

/* ── Titre principal : Playfair Display, élégant, fin ── */
.article-mois__titre {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(34px, 4.2vw, 40px);
  font-weight: 400;
  color: #111111;
  margin: 0 0 52px 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* ── Description : Lato Light, centré, 3 paragraphes aérés ── */
.article-mois__description {
  color: #2e2e2e;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.9;
  margin: 0 0 60px 0;
  text-align: center;
}

.article-mois__description p {
  margin: 0 0 24px 0;
}

.article-mois__description p:last-child {
  margin-bottom: 0;
}

/* ── Bouton COMMANDER ── */
.article-mois__btn-wrap {
  text-align: center;
}

.article-mois__btn {
  display: inline-block;
  background-color: #9c8354;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 52px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.article-mois__btn:hover,
.article-mois__btn:focus {
  background-color: #7a6338;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

/* ════════════════════════════════════════
   SI AUCUNE IMAGE : la colonne texte
   prend toute la largeur et reste centrée
   ════════════════════════════════════════ */
.article-mois__inner--no-img {
  grid-template-columns: 1fr;
}

.article-mois__inner--no-img .article-mois__col--text {
  justify-content: center;
}

.article-mois__inner--no-img .article-mois__text-inner {
  max-width: 560px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   RESPONSIVE — tablette (< 900px)
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  .article-mois {
    padding: 56px 20px 64px;
  }

  .article-mois__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-mois__col--img {
    order: 1;
    padding: 0;
  }

  .article-mois__col--text {
    order: 2;
    justify-content: center;
  }

  .article-mois__text-inner {
    max-width: 100%;
  }

  .article-mois__titre {
    font-size: clamp(26px, 6vw, 38px);
    margin-bottom: 28px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — mobile (< 480px)
   ════════════════════════════════════════ */
@media (max-width: 480px) {
  .article-mois {
    padding: 40px 16px 48px;
  }

  .article-mois__description {
    font-size: 0.85rem;
    margin-bottom: 36px;
  }

  .article-mois__btn {
    padding: 15px 36px;
  }
}