/* ==========================================================================
   Divine Wellness — Articles
   Shared stylesheet for the /articles/ index and article posts.
   Layout is a single centered prose column with full-width figures.
   Everything is built from tokens.css variables and the shared components.
   ========================================================================== */

/* =========================== Hero =========================== */

.article-hero {
  padding-top: calc(clamp(40px, 6vw, 72px) + 84px);
  background: linear-gradient(180deg, var(--tint-pink) 0%, var(--page-bg) 100%);
}
.article-hero__blob-1 {
  top: -150px; right: -110px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(227, 122, 109, 0.20), rgba(227, 122, 109, 0) 70%);
  filter: blur(32px);
  animation-duration: 15s;
}
.article-hero__blob-2 {
  bottom: -170px; left: -130px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(199, 138, 178, 0.16), rgba(199, 138, 178, 0) 70%);
  filter: blur(34px);
  animation-duration: 13s;
}
.article-hero .breadcrumb { margin-bottom: 22px; }
.article-hero__copy { max-width: 760px; }
.article-hero h1 { margin-bottom: 14px; }
.article-hero .lead { max-width: 48ch; }
.article-hero__date { margin-top: 4px; }

/* =========================== Post body =========================== */

.article {
  background: linear-gradient(180deg, var(--cream) 0%, var(--page-bg) 100%);
  padding-top: clamp(40px, 5vw, 64px);
}
.article__container { max-width: 720px; }

.article .prose { margin: 0 0 20px; }
.article h2 {
  margin: 46px 0 18px;
  font-size: var(--fs-h2-sm);
}

/* Figures */
.article__figure { margin: 32px 0; }
.article__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-card-md);
  box-shadow: var(--shadow-card);
}
/* Spa waiting room is a small 560px source — keep it small and centered
   rather than stretched to the full column width. */
.article__figure--sm { max-width: 560px; margin-left: auto; margin-right: auto; }

/* Details callout (address / dates / phone) */
.article__details {
  margin: 30px 0;
  padding: 24px 28px;
  border-radius: var(--r-card-md);
  background: var(--cream-bright);
  border: 1px solid var(--hairline-soft);
  box-shadow: var(--shadow-card);
}
.article__details p { margin: 0 0 6px; color: var(--body); }
.article__details p:last-child { margin-bottom: 0; }
.article__details-addr {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

/* CTA + sign-off */
.article__cta { margin: 26px 0 8px; }
.article__signoff {
  margin-top: 30px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}
.article__signoff span { font-style: normal; font-weight: 600; }
.article__ps { color: var(--body); }

/* =========================== Opt-in block =========================== */

.article-updates {
  background: linear-gradient(180deg, var(--page-bg) 0%, var(--tint-mint) 100%);
  text-align: center;
}
.article-updates__inner { max-width: 640px; margin: 0 auto; }
.article-updates__inner .prose { margin: 14px auto 22px; max-width: 52ch; }
.article-updates .subscribe-form { justify-content: center; }
.article-updates__fine {
  margin-top: 14px;
  font-size: var(--fs-small);
  color: var(--body);
}

/* =========================== Index listing =========================== */

.articles-list {
  background: linear-gradient(180deg, var(--cream) 0%, var(--page-bg) 100%);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
