/* Shared styles for the two marketing tips articles:
 * /tips-for-new-missionaries and /tips-for-returning-missionaries.
 *
 * Both pages rendered a byte-identical inline <style> block (toc, tip
 * typography, callout, bottom CTA card) — extracted here per the
 * share.css precedent so a fix to one can't silently drift from the
 * other. Page-specific rules (none today) belong in each page's own
 * inline <style>, loaded after this sheet.
 *
 * Load order: common.css → tips.css.
 */

.section { margin-bottom: 0; }
.container > p.lead { margin-bottom: 32px; }
/* Full-width, card-less layout (like /faq): drop the boxed card and center
   the content in a responsive max-width column. */
.container { background: none; border: none; box-shadow: none; border-radius: 0; max-width: 760px; padding: 0; }

/* Section table of contents (mirrors /faq's .faq-toc) */
.tips-toc { margin: 0 0 32px; padding: 18px 22px; border: 1px solid var(--color-gray-200); border-radius: var(--radius-2xl); background: var(--color-gray-50); }
.tips-toc-title { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--color-gray-500); margin-bottom: 12px; }
.tips-toc ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px 24px; }
.tips-toc a, .tips-toc a:visited { color: var(--color-ink); text-decoration: none; font-weight: 600; font-size: 15px; line-height: 1.4; }
.tips-toc a:hover, .tips-toc a:focus { text-decoration: underline; }
.section[id] { scroll-margin-top: 90px; }

/* Section titles are <h2> and tip titles are <h3> for a proper article
   outline; .section-title matches the common.css h2 rule, so pin margin-top. */
.section-title { margin-top: 0; }
.tip { margin-bottom: 22px; }
.tip-title { font-size: 16px; font-weight: 700; color: var(--color-ink); margin: 0 0 6px; }
.tip p { margin: 0; color: var(--color-gray-700); line-height: 1.6; }
.tip ul { margin: 8px 0 0; padding-left: 22px; }
.tip li { color: var(--color-gray-700); line-height: 1.6; margin-bottom: 4px; }

/* Soft, helpful product aside — reads as a tip, not an ad. */
.tip-callout { margin: 22px 0; padding: 16px 20px; background: var(--color-info-bg); border: 1px solid var(--color-info-border); border-left: 4px solid var(--color-info); border-radius: var(--radius-lg); font-size: 15px; line-height: 1.6; color: var(--color-info-text); }
.tip-callout a, .tip-callout a:visited { color: var(--color-info-text); font-weight: 700; }

/* Bottom CTA card. Named .tips-cta-card so it no longer shadows the system
   .cta-card component (different child anatomy). */
.tips-cta-card { margin: 40px 0 8px; padding: 28px 24px; text-align: center; background: var(--color-gray-50); border: 1px solid var(--color-gray-200); border-radius: var(--radius-2xl); }
.tips-cta-card h2 { font-size: 20px; margin: 0 0 8px; color: var(--color-ink); }
.tips-cta-card p { margin: 0 0 18px; color: var(--color-gray-600); line-height: 1.6; }
.cta-secondary { display: block; margin-top: 12px; font-size: 14px; }
