/* ── Journal Layout ── */
.page {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 6rem 2rem 7rem;
}

.page .back {
  margin-bottom: 4rem;
}

.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s ease forwards;
}

.page-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(42, 42, 42, 0.25);
  margin-bottom: 4rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1.2s 0.5s ease forwards;
}

/* ── Article List ── */
.articles {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  animation: fadeUp 1.2s 0.7s ease forwards;
}

.article-link {
  display: block;
  text-decoration: none;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.article-link:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.article-link:hover {
  transform: translateX(12px);
}

.article-link:hover .article-title {
  color: var(--teal);
}

.article-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.article-date {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(42, 42, 42, 0.25);
  letter-spacing: 0.04em;
}
