/* DLTQ Posts - Minimal typography */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
  padding: 2rem;
  max-width: 65ch;
  margin: 0 auto;
}

.home-link {
  display: inline-block;
  font-size: 0.875rem;
  color: #999;
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.3s;
}

.home-link:hover {
  color: #000;
}

.post-date {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content a:hover {
  text-decoration-thickness: 2px;
}

.post-content .conclusion-placeholder {
  padding: 2rem;
  background: #f9f9f9;
  border-left: 3px solid #ddd;
  font-style: italic;
  color: #666;
}

.post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  font-size: 0.875rem;
  color: #999;
}

.post-footer a {
  color: #999;
  text-decoration: none;
}

.post-footer a:hover {
  color: #000;
}
