/* PAGE */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.page-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.page h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-intro {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 580px;
}

/* POST LIST */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.post-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
}
.post-item:first-child {
  border-top: 1px solid var(--rule);
}

.post-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.post-date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.post-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--accent-light);
  color: var(--accent);
}

.post-tag.external {
  background: #F0E6D8;
  color: #A07850;
}

.post-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text);
  transition: color 0.2s;
}

.post-item a:hover .post-title {
  color: var(--accent);
}

.post-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.post-external-note {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 6px;
}

/* FOOTER */
.page-footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid var(--rule);
  max-width: 720px;
  margin: 0 auto;
}
.page-footer p {
  font-size: 13px;
  color: var(--text-secondary);
}
.page-footer a {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 600px) {
  .page { padding: 60px 24px 80px; }
}
