/* === REFLECTIONS ===
   Quieter than the blog: no tags, no filters, a little more air around the
   text. Shared article styles live in /css/post.css. */

.reflections-page-title {
  margin-bottom: 8px;
}

.reflections-intro {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 34em;
}

.reflection-card {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--divider-color);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.reflection-card:hover {
  opacity: 0.7;
  text-decoration: none;
  color: inherit;
}

.reflection-card-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.reflection-card-date {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.reflection-card-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* === ENTRY PAGE === */
#post-header {
  margin-bottom: 36px;
}

.post-body {
  font-size: var(--font-size-lg);
  line-height: 1.85;
}

.post-body p {
  margin-bottom: 22px;
}

.post-body p:last-child {
  color: var(--text-muted);
}

@media screen and (max-width: 768px) {
  .post-body {
    font-size: var(--font-size-base);
  }
}
