/* ===============================
   FORMULAIRE JETPACK – SCLIM
   =============================== */

.sclim-form {
  max-width: 420px;
  margin: 40px auto;
}

.sclim-form label {
  font-weight: 700;
  color: #0A4FBF;
  margin-bottom: 6px;
  display: block;
}

.sclim-form input,
.sclim-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid #ddd;
  margin-bottom: 18px;
  font-size: 1rem;
}

.sclim-form textarea {
  min-height: 120px;
}

/* Bouton envoyer */
.sclim-submit {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: #0A4FBF;
  color: #fff;
  font-weight: bold;
  transition: transform .2s ease, box-shadow .2s ease;
}

.sclim-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/* Message de succès Jetpack */
.contact-form__success {
  background: #f4f8ff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  color: #0A4FBF;
  font-weight: bold;
}

/* ===============================
   BOUTONS CONTACT
   =============================== */

.sclim-contact-actions {
  max-width: 420px;
  margin: 40px auto 0;
  display: flex;
  gap: 14px;
}

.sclim-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.sclim-btn span {
  display: inline-block;
}

/* Appeler */
.sclim-call {
  background: #0A4FBF;
}

/* WhatsApp */
.sclim-whatsapp {
  background: #25D366;
}

/* Animation */
.sclim-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

/* Mobile */
@media (max-width: 480px) {
  .sclim-contact-actions {
    flex-direction: column;
  }
}
/* Supprimer colonne image à droite sur les pages */
.page .sidebar,
.page .right-column,
.page .featured-image {
  display: none !important;
}

/* Forcer le contenu en pleine largeur */
.page .content,
.page .entry-content {
  width: 100% !important;
  max-width: 100% !important;
}
/* KOINONIA — supprimer la colonne image à droite */
.page .entry-header,
.page .post-thumbnail,
.page .featured-image,
.page .page-header-media {
  display: none !important;
}

/* KOINONIA — forcer le contenu en pleine largeur */
.page .content-area,
.page .site-content,
.page .entry-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}
/* ================================
   KOINONIA – SUPPRESSION IMAGE À DROITE
   ================================ */

/* Cache TOUS les conteneurs d’image / média */
.page .entry-header,
.page .page-header,
.page .page-header-media,
.page .post-thumbnail,
.page .featured-media,
.page .featured-image,
.page .header-media,
.page .has-post-thumbnail {
  display: none !important;
}

/* Supprime toute structure en colonnes */
.page .site-content,
.page .content-area,
.page .primary,
.page .secondary,
.page .sidebar,
.page aside {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 auto !important;
}

/* Force le contenu au centre */
.page .entry-content {
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 0 20px;
}

/* Supprime les grilles internes */
.page .wrap,
.page .container,
.page .inner-wrap {
  display: block !important;
  grid-template-columns: 1fr !important;
}
/* ================= CONTAINER GLOBAL ================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

