.article-page {
  padding-top: 94px;
}

.article-shell {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
}

.article-hero {
  padding: clamp(70px, 11vw, 132px) 0 clamp(62px, 9vw, 104px);
  background:
    radial-gradient(circle at 85% 15%, rgba(22, 166, 162, 0.12), transparent 32%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.article-back {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

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

.article-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-meta span + span::before {
  content: "·";
  margin-right: 18px;
  color: var(--muted);
}

.article-hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.98;
}

.article-lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  line-height: 1.6;
}

.article-image {
  width: min(1120px, calc(100% - 40px));
  margin: clamp(34px, 6vw, 70px) auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.article-image img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
}

.article-content {
  padding-block: clamp(68px, 10vw, 118px);
  font-size: clamp(1.06rem, 1.7vw, 1.2rem);
  line-height: 1.78;
}

.article-content section {
  margin-top: clamp(62px, 9vw, 96px);
}

.article-content section:first-child {
  margin-top: 0;
}

.article-content h2 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
}

.article-content p {
  margin-bottom: 1.35em;
}

.article-content strong {
  font-weight: 790;
}

.article-content .reflection-line {
  padding-left: 22px;
  border-left: 2px solid var(--teal);
  color: #34414a;
}

.article-content .bible-section {
  margin-top: clamp(76px, 11vw, 118px);
}

.article-content blockquote {
  margin: 0;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(22, 166, 162, 0.24);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 20px 60px rgba(19, 31, 43, 0.08);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.5;
}

.article-content blockquote p {
  margin: 0;
}

.article-footer {
  padding: clamp(62px, 9vw, 96px) 0;
  background: var(--ink);
  color: var(--white);
}

.next-article {
  display: grid;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.next-article span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.next-article strong {
  max-width: 650px;
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  line-height: 1.15;
}

@media (max-width: 680px) {
  .article-page {
    padding-top: 78px;
  }

  .article-shell {
    width: calc(100% - 36px);
  }

  .article-image {
    width: calc(100% - 36px);
    margin-top: 18px;
  }

  .article-image img {
    aspect-ratio: 4 / 3;
  }

  .article-back {
    margin-bottom: 42px;
  }

  .article-content {
    font-size: 1.04rem;
  }
}
