/* ── Article body typography ── */
.prose-article p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
  color: #374151;
}

.prose-article h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1b4332;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose-article ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.prose-article ul li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.4rem;
  line-height: 1.7;
  color: #4b5563;
  font-size: 0.9rem;
}

.prose-article ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #52b788;
  font-weight: 700;
}

/* ── Line clamp ── */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Smooth scroll ── */
html {
  scroll-behavior: smooth;
}

/* ── Focus style ── */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2d6a4f;
}

/* ── Thin scrollbar ── */
::-webkit-scrollbar       { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: #95d5b2; border-radius: 2px; }
