/* ── Article Layout ── */
body {
  line-height: 1.85;
}

article {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 6rem 2rem 7rem;
}

article .back {
  margin-bottom: 3rem;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s ease forwards;
}

.date {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.5s ease forwards;
}

p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(42, 42, 42, 0.65);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.7s ease forwards;
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.7s ease forwards;
}

.divider {
  width: 30px;
  height: 1px;
  background: var(--teal);
  margin: 3rem 0;
  opacity: 0;
  animation: fadeUp 1s 0.7s ease forwards;
}
