/* =========================================================================
   Empreinte Océane – styles complémentaires au Tailwind compilé
   1. Utilitaires manquants
   2. Contenu d'article (.eo-prose)
   3. Pagination (.eo-pagination)
   4. Gravity Forms (CSS par défaut désactivé via gform_disable_css)
   Palette : #0B4E56 (bleu nuit) · #178A98 (turquoise) · #F7AA2E (jaune)
             #FAF6EE (fond crème) · #16282C (texte)
   ========================================================================= */

/* ---- 1. Utilitaires ----------------------------------------------------- */

.eo-col-span-full {
  grid-column: 1 / -1;
}

/* ---- 2. Contenu d'article ----------------------------------------------- */

.eo-prose {
  color: rgba(22, 40, 44, 0.8);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.eo-prose > * + * {
  margin-top: 1.25em;
}

.eo-prose h2 {
  color: #0B4E56;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 2em;
}

.eo-prose h3 {
  color: #0B4E56;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 1.75em;
}

.eo-prose strong {
  color: #0B4E56;
  font-weight: 700;
}

.eo-prose a {
  color: #178A98;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.eo-prose a:hover {
  color: #0B4E56;
}

.eo-prose ul,
.eo-prose ol {
  padding-left: 1.5em;
}

.eo-prose ul {
  list-style: disc;
}

.eo-prose ol {
  list-style: decimal;
}

.eo-prose li + li {
  margin-top: 0.5em;
}

.eo-prose li::marker {
  color: #F7AA2E;
  font-weight: 700;
}

.eo-prose blockquote {
  border-left: 4px solid #F7AA2E;
  padding: 0.5em 0 0.5em 1.5em;
  color: #0B4E56;
  font-weight: 600;
}

.eo-prose img {
  border-radius: 1.5rem;
  border: 2px solid rgba(11, 78, 86, 0.1);
}

.eo-prose figcaption {
  font-size: 0.8125rem;
  color: rgba(22, 40, 44, 0.5);
  margin-top: 0.75em;
  text-align: center;
}

.eo-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.eo-prose th,
.eo-prose td {
  border: 1px solid rgba(22, 40, 44, 0.1);
  padding: 0.6em 0.9em;
  text-align: left;
}

.eo-prose th {
  background: rgba(231, 240, 240, 0.5);
  color: #0B4E56;
  font-weight: 700;
}

/* ---- 3. Pagination ------------------------------------------------------ */

.eo-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
}

.eo-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.75rem;
  border: 2px solid rgba(11, 78, 86, 0.15);
  border-radius: 9999px;
  background: #FFFFFF;
  color: #0B4E56;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
}

.eo-pagination .page-numbers:hover {
  border-color: #0B4E56;
  box-shadow: 3px 3px 0 #0B4E56;
  transform: translateY(-1px);
}

.eo-pagination .page-numbers.current {
  background: #F7AA2E;
  border-color: #0B4E56;
  box-shadow: 3px 3px 0 #0B4E56;
}

.eo-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

/* ---- 4. Gravity Forms --------------------------------------------------- */

.gform_wrapper form {
  display: flex;
  flex-direction: column;
}

.gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gform_wrapper .gfield_label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0B4E56;
  margin-bottom: 0.4rem;
}

.gform_wrapper .gfield_required {
  color: #F7AA2E;
  margin-left: 0.15rem;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100%;
  background: #FAF6EE;
  border: 2px solid rgba(11, 78, 86, 0.15);
  border-radius: 1rem;
  padding: 0.8rem 1.1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #16282C;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: #178A98;
  box-shadow: 3px 3px 0 rgba(23, 138, 152, 0.25);
}

.gform_wrapper textarea {
  min-height: 9rem;
  resize: vertical;
}

.gform_wrapper .gfield_description {
  font-size: 0.8125rem;
  color: rgba(22, 40, 44, 0.5);
  margin-top: 0.4rem;
}

.gform_wrapper .gform_footer {
  margin-top: 1.75rem;
}

.gform_wrapper input[type="submit"],
.gform_wrapper .gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F7AA2E;
  color: #0B4E56;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  padding: 1rem 2.25rem;
  border: 2px solid #0B4E56;
  border-radius: 9999px;
  box-shadow: 4px 4px 0 #0B4E56;
  cursor: pointer;
  transition: all 0.2s;
}

.gform_wrapper input[type="submit"]:hover,
.gform_wrapper .gform_button:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 #0B4E56;
}

/* Validation et confirmation */

.gform_wrapper .gform_validation_errors {
  background: rgba(247, 170, 46, 0.12);
  border: 2px solid #F7AA2E;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: #0B4E56;
  font-size: 0.875rem;
  font-weight: 600;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select {
  border-color: #C0392B;
}

.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
  color: #C0392B;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

.gform_confirmation_message {
  background: rgba(23, 138, 152, 0.08);
  border: 2px solid #178A98;
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: #0B4E56;
  font-weight: 600;
  line-height: 1.6;
}

/* Honeypot GF */
.gform_wrapper .gform_validation_container {
  display: none !important;
}
