/* ShaadiPath article-plus.css
   Design upgrade layer. Loaded AFTER article.css, only on the 2026 guide set.
   Adds: hero key-facts strip, callout blockquotes, comparison/pro-con cards,
   answer-box polish and richer artifact framing. Theme-aware via existing tokens. */

/* ---- Hero key-facts strip ------------------------------------------------ */
.key-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  margin: 0 4.6vw 0;
  max-width: 1180px;
  margin-inline: auto;
  border: 1px solid var(--border);
  background: var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.key-facts > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--white);
}

.key-facts span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.key-facts strong {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.15;
  color: var(--ink);
}

.key-facts small {
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .key-facts { margin-left: 0; margin-right: 0; }
}

/* ---- Callout blockquotes -------------------------------------------------- */
.callout {
  position: relative;
  margin: 26px 0;
  padding: 20px 22px 20px 56px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.callout::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  content: "i";
}

.callout p { margin: 0; }
.callout p + p { margin-top: 10px; }

.callout[data-tone="tip"] { border-left-color: var(--gold); }
.callout[data-tone="tip"]::before { content: "\2728"; background: var(--gold-soft); color: #8a5a13; }
.callout[data-tone="warn"] { border-left-color: #b4452e; }
.callout[data-tone="warn"]::before { content: "!"; background: #f6dcd4; color: #92341f; }

/* ---- Pro / con cards ----------------------------------------------------- */
.proscons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.proscons article {
  padding: 20px 22px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.proscons h4 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.proscons ul { margin: 0; padding: 0; list-style: none; }

.proscons li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 15.5px;
  line-height: 1.6;
  border-top: 1px solid var(--border);
}

.proscons li:first-child { border-top: 0; }

.proscons li::before {
  position: absolute;
  left: 0;
  top: 6px;
  font-weight: 700;
  content: "\2713";
  color: #2f7d52;
}

.proscons article.con li::before { content: "\2715"; color: #b4452e; }

/* ---- Answer box accent --------------------------------------------------- */
.guide-plus .quick-answer {
  background:
    linear-gradient(180deg, var(--accent-soft) 0%, transparent 70%),
    var(--white);
  border-top: 3px solid var(--accent);
}

/* ---- Planning artifact framing ------------------------------------------ */
.guide-plus .planning-artifact {
  background:
    radial-gradient(120% 120% at 100% 0%, var(--accent-soft) 0%, transparent 45%),
    var(--white);
}

.guide-plus .planning-artifact .artifact-heading span {
  color: var(--accent);
}

/* ---- Section header numeral tint ----------------------------------------- */
.guide-plus .section-header > span {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* ---- ShaadiPath pricing fact card ---------------------------------------- */
.price-fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 26px 0;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  background:
    linear-gradient(180deg, var(--gold-soft) 0%, transparent 80%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.price-fact-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}

.price-fact span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-fact p {
  margin: 4px 0 10px;
  font-size: 15.5px;
  line-height: 1.6;
}

.price-fact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.price-fact a b { font-weight: 700; }

/* ---- Pull stat inside body ----------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.stat-row > div {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--gold);
  background: var(--white);
}

.stat-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
}

.stat-row span {
  font-size: 13px;
  color: var(--muted);
}
