/* ── Article Page ────────────────────────────────────────────────────
   Standalone article layout. Extends landing.html nav + footer chrome.
   Typography: Cormorant Garamond display + DM Sans body for long-form reading.
   ─────────────────────────────────────────────────────────────── */

.article-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.article-inner {
  display: flex;
  flex-direction: column;
}

/* ── Meta (category + read time) ── */
.article-meta-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* ── Article title — Cormorant Garamond, light, aristocratic ── */
.article-title {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 300;
  color: var(--t1);
  margin-bottom: 44px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

/* ── Section headings — Cormorant, gold-underlined ── */
.article-body h2 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--t1);
  margin: 44px 0 16px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}

/* ── Body paragraphs ── */
.article-body p {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.9;
  margin-bottom: 20px;
  letter-spacing: 0.012em;
}

/* ── Drop cap — first letter of the opening paragraph ── */
.article-body > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5.4em;
  font-weight: 300;
  line-height: 0.78;
  float: left;
  margin: 0.06em 0.1em 0 0;
  color: var(--gold);
}

/* ── Lists ── */
.article-body ul,
.article-body ol {
  padding-left: 22px;
  margin-bottom: 20px;
}

.article-body li {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 8px;
  letter-spacing: 0.012em;
}

/* ── Strong / emphasis ── */
.article-body strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.06em;
  font-weight: 600;
  color: var(--t1);
  letter-spacing: 0.005em;
}

/* ── Blockquotes inside articles ── */
.article-body blockquote {
  position: relative;
  padding: 4px 0 4px 2.8rem;
  margin: 32px 0;
  border: none;
  background: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: var(--t1);
}

.article-body blockquote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px;
  line-height: 0;
  color: var(--gold);
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 36px;
  font-style: normal;
  font-weight: 300;
}

/* ── "Try this:" callout blocks ── */
.article-body p strong:first-child {
  display: block;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

/* ── Back link ── */
.article-back {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--bd);
}

/* ── Responsive — mobile ── */
@media (max-width: 767px) {
  .article-main {
    padding: 36px 20px 56px;
  }

  .article-body h2 {
    font-size: 22px;
    margin-top: 36px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .article-body > p:first-of-type::first-letter {
    font-size: 4.8em;
  }
}
