/* ====== CONTENEUR GLOBAL ====== */
.journal-ameliorations {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 1.5rem 4rem;
}

/* ====== HEADER / INTRO ====== */
.ja-header {
  margin-bottom: 2.5rem;
}

.ja-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.ja-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 0.75rem;
}

.ja-intro {
  max-width: 52rem;
  line-height: 1.6;
  font-size: 0.98rem;
}

/* ====== TIMELINE ====== */
.ja-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ja-item {
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.ja-date {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: blue;
}

.ja-item ul {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ja-item li {
  line-height: 1.5;
  font-size: 0.96rem;
}

/* ====== SECTION SUGGESTIONS ====== */
.suggest-section {
  margin-top: 3rem;
  padding: 1.75rem 1.5rem;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 14px;
}

.suggest-section h2 {
  margin-bottom: 0.5rem;
}

.suggest-section p {
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.suggest-section form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.suggest-section label {
  font-size: 0.9rem;
  font-weight: 500;
}

.suggest-section textarea,
.suggest-section input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(15,23,42,0.2);
  font-size: 0.95rem;
}

.suggest-section textarea:focus,
.suggest-section input:focus {
  outline: none;
  border-color: var(--accent-color, #0f766e);
  box-shadow: 0 0 0 1px rgba(15,118,110,0.2);
}

.suggest-section button {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 12px 20px;
  background: var(--accent-color, #0f766e);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.suggest-section button:hover {
  background: #0c5e57;
  transform: translateY(-2px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .journal-ameliorations {
    padding-inline: 1.25rem;
  }

  .ja-item {
    padding: 1rem 1.1rem;
  }

  .suggest-section {
    padding: 1.5rem 1.1rem;
  }
}