/* ============================================================
   ARTICLE / THINKING DETAIL PAGE
   ============================================================ */

/* Hero — reuses project-hero pattern */
.article-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
}

.article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.3) 60%, rgba(8, 8, 8, 0.1) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 64px;
  max-width: 820px;
}

.article-hero-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.6);
  margin-bottom: 16px;
}

.article-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

/* Article Body */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}

.article-body p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--dim);
  line-height: 1.85;
  margin-bottom: 28px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-top: 56px;
  margin-bottom: 24px;
}

.article-body h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-body strong {
  color: var(--white);
  font-weight: 500;
}

.article-body em {
  color: rgba(245, 244, 240, 0.7);
}

.article-body blockquote {
  border-left: 2px solid rgba(245, 244, 240, 0.15);
  padding-left: 24px;
  margin: 40px 0;
}

.article-body blockquote p {
  font-style: italic;
  color: rgba(245, 244, 240, 0.6);
}

.article-body ul,
.article-body ol {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--dim);
  line-height: 1.85;
  margin-bottom: 28px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 12px;
}

.article-body a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.article-body a:hover {
  opacity: 1;
}

/* Divider */
.article-divider {
  width: 48px;
  height: 1px;
  background: rgba(245, 244, 240, 0.15);
  margin: 56px auto;
}

/* Back link */
.article-back {
  text-align: center;
  padding: 0 32px 80px;
}

.article-back-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-back-link:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .article-hero {
    height: 50vh;
    min-height: 300px;
  }

  .article-hero-content {
    padding: 0 24px 48px;
  }

  .article-body {
    padding: 48px 24px 80px;
  }

  .article-back {
    padding: 0 24px 60px;
  }
}
