/* ============================================
   Thought Page Styles
   ============================================ */

.thought-page {
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.thought-page-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 600px) {
  .thought-page-inner {
    padding: 0 1.5rem;
  }
}

/* ---- Header ---- */
.thought-header {
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.thought-header-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.thought-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  text-transform: uppercase;
}

.thought-read-time {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.thought-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

html.light .thought-title {
  color: var(--text);
}

.thought-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.thought-ornament {
  color: var(--terracotta);
  width: 120px;
  margin-top: 1.5rem;
}

/* ---- Article Content ---- */
.thought-content {
  opacity: 0;
  transform: translateY(20px);
}

.thought-content p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.thought-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text);
  border-left: 2px solid var(--terracotta);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 2.5rem 0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .thought-content blockquote {
    padding-left: 1.5rem;
    font-size: 1.2rem;
  }
}

html.light .thought-content blockquote {
  color: var(--text);
}

/* ---- Footer ---- */
.thought-footer {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  opacity: 0;
}

.thought-back {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.thought-back:hover {
  color: var(--terracotta);
}
