/* ═══════════════════════════════════════════
   waynesheltonsr.com — Ghost Theme Stylesheet
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #138086;
  --accent-hover: #0f6870;
  --accent-mid:   #4A707A;
  --accent-soft:  #7097A8;
  --accent-bg:    #EBF3F4;
  --accent-deep:  #0D2F33;
  --dark:         #1A3035;
  --dark-hover:   #243B40;
  --mid:          #4A6268;
  --soft:         #7A9AA3;
  --surface:      #EEF5F6;
  --white:        #FDFFFF;
  --gray-bg:      #F2F8F8;
  --gray-line:    #CDDFE2;
  --text-dark:    #1A3035;
  --text-mid:     #4A6268;
  --text-soft:    #7A9AA3;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1.5px solid transparent;
}
.btn-primary       { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline       { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-outline-white       { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-white       { background: #fff; color: var(--dark); border-color: #fff; }
.btn-white:hover { background: var(--surface); }

/* ─── EYEBROW ─── */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 12px;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  background: var(--accent-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 200;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo-lockup { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(to right, var(--accent-soft) 60%, rgba(112,151,168,0.3) 100%);
  border-radius: 2px;
}
.logo-mark sup {
  font-size: 13px;
  font-weight: 300;
  color: var(--accent-soft);
  vertical-align: super;
  line-height: 0;
}
.logo-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.18); }
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

/* ─── HERO ─── */
.hero {
  background: var(--accent-deep);
  padding: 96px 2rem 88px;
}
.hero-inner { max-width: 1140px; margin: 0 auto; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: var(--accent-soft);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: #FFFFFF;
  max-width: 780px;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  line-height: 1.08;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── ABOUT STRIP ─── */
.about-strip {
  padding: 72px 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}
.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
.photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--gray-line);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
}
.photo-placeholder svg { width: 38px; height: 38px; opacity: 0.25; }
.about-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.about-content p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 15px;
}
.about-link {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  transition: color 0.15s;
}
.about-link:hover { color: var(--accent-hover); }
.cred-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-line);
}
.cred-item .val {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}
.cred-item .lbl { font-size: 11px; color: var(--text-soft); margin-top: 1px; }

/* ─── PILLARS ─── */
.pillars { padding: 80px 2rem; background: var(--white); }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.015em;
}
.section-head p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 480px;
  margin: 12px auto 0;
  line-height: 1.75;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pillars-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.pillar-card {
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 30px 26px 26px;
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.pillar-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(19,128,134,0.08);
  transform: translateY(-2px);
}
.pillar-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 9px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.pillar-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.pillar-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.pillar-link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.15s;
}
.pillar-link:hover { color: var(--accent-hover); }

/* ─── BLOG POSTS ─── */
.blog-section {
  padding: 80px 2rem;
  background: var(--surface);
  border-top: 1px solid var(--gray-line);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 38px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.post-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(19,128,134,0.08);
  transform: translateY(-2px);
}
.post-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card:nth-child(1) .post-thumb { background-color: #138086; background-image: linear-gradient(140deg, #138086 0%, #4A707A 100%); }
.post-card:nth-child(2) .post-thumb { background-color: #0D2F33; background-image: linear-gradient(140deg, #0D2F33 0%, #138086 100%); }
.post-card:nth-child(3) .post-thumb { background-color: #4A707A; background-image: linear-gradient(140deg, #4A707A 0%, #7097A8 100%); }
.post-thumb-label {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  letter-spacing: -1px;
}
.post-body { padding: 20px; }
.post-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  background: var(--accent-bg);
  color: var(--accent);
}
.post-card h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.post-card h3 a { color: inherit; transition: color 0.15s; }
.post-card h3 a:hover { color: var(--accent); }
.post-card p  { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }
.post-meta    { font-size: 12px; color: var(--text-soft); }
.blog-footer  { text-align: center; }

/* ─── WORK WITH ME ─── */
.work-section { padding: 80px 2rem; background: var(--white); }
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 52px;
}
.work-card {
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
}
.work-card.featured { border: 1.5px solid var(--accent); }
.featured-chip {
  position: absolute;
  top: -13px; left: 26px;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.work-track {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 10px;
}
.work-card h3 { font-size: 21px; font-weight: 700; color: var(--text-dark); margin-bottom: 11px; }
.work-desc    { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 22px; }
.work-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
}
.work-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-dark); }
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%;
  background: var(--accent-bg);
  margin-top: 2px;
}
.check-icon svg { width: 10px; height: 10px; }
.price-line {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 18px 0;
  border-top: 1px solid var(--gray-line);
  margin-bottom: 22px;
}
.price-num  { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 700; color: var(--dark); }
.price-note { font-size: 13px; color: var(--text-soft); }
.work-cta   { width: 100%; }

/* ─── EMAIL SIGNUP ─── */
.signup-section {
  background: var(--accent);
  color: #fff;
  padding: 80px 2rem;
  text-align: center;
}
.signup-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.signup-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  margin: 0 auto 34px;
  line-height: 1.75;
}
.signup-row { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.signup-row input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}
.signup-row input::placeholder { color: rgba(255,255,255,0.45); }
.signup-row input:focus        { border-color: rgba(255,255,255,0.5); }
.signup-row button {
  padding: 12px 20px;
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
}
.signup-row button:hover { background: var(--surface); }
.signup-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 13px; }

/* ─── FOOTER ─── */
footer {
  background: var(--accent-deep);
  color: rgba(255,255,255,0.5);
  padding: 56px 2rem 34px;
}
.footer-inner  { max-width: 1140px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .mark {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 11px;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.footer-brand .mark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.5) 65%, rgba(255,255,255,0.1) 100%);
  border-radius: 2px;
}
.footer-brand .mark sup { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45); vertical-align: super; line-height: 0; }
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 250px; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 12px;
}
.footer-social { display: flex; gap: 18px; }
.footer-social a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-social a:hover { color: #fff; }

/* ─── SINGLE POST ─── */
.post-full-hero {
  background: var(--accent-deep);
  padding: 72px 2rem 64px;
}
.post-full-hero .eyebrow { color: var(--accent-soft); }
.post-full-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  max-width: 760px;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  line-height: 1.1;
}
.post-full-hero .post-meta { color: rgba(255,255,255,0.5); font-size: 14px; }
.post-feature-image {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  transform: translateY(-32px);
}
.post-feature-image img { border-radius: 12px; width: 100%; box-shadow: 0 8px 40px rgba(0,0,0,0.15); }
.post-content-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem 80px;
}
.post-content-wrap p  { font-size: 16.5px; color: var(--text-mid); line-height: 1.9; margin-bottom: 24px; }
.post-content-wrap h2 { font-size: 26px; font-weight: 700; color: var(--text-dark); margin: 40px 0 16px; }
.post-content-wrap h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin: 32px 0 12px; }
.post-content-wrap ul,
.post-content-wrap ol { padding-left: 1.5rem; margin-bottom: 24px; }
.post-content-wrap li { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; }
.post-content-wrap strong { color: var(--text-dark); font-weight: 600; }
.post-content-wrap a { color: var(--accent); }
.post-content-wrap a:hover { color: var(--accent-hover); }
.post-content-wrap blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 0 12px 24px;
  margin: 32px 0;
  color: var(--text-mid);
  font-style: italic;
}
.post-content-wrap pre {
  background: var(--accent-deep);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 24px;
  font-size: 14px;
}
.post-content-wrap code {
  background: var(--surface);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}
.post-content-wrap pre code { background: none; color: inherit; padding: 0; }

.post-author-bio {
  max-width: 740px;
  margin: 0 auto 80px;
  padding: 24px 2rem;
  border-top: 1px solid var(--gray-line);
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ─── STATIC PAGES ─── */
.page-hero {
  background: var(--accent-deep);
  padding: 72px 2rem 64px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 16px auto 0;
  line-height: 1.75;
}
.page-content-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 2rem 80px;
}
.page-content-wrap p  { font-size: 16.5px; color: var(--text-mid); line-height: 1.9; margin-bottom: 24px; }
.page-content-wrap h2 { font-size: 26px; font-weight: 700; color: var(--text-dark); margin: 40px 0 16px; }
.page-content-wrap h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin: 32px 0 12px; }
.page-content-wrap a  { color: var(--accent); }
.page-content-wrap a:hover { color: var(--accent-hover); }

/* ─── KOENIG EDITOR CARDS ─── */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 0 auto;
  transform: translateX(calc(50% - 50vw * 0.85));
}
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.kg-image { max-width: 100%; }
.kg-image-card { margin: 0 0 28px; }
.kg-image-card img { border-radius: 8px; }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; gap: 8px; margin-bottom: 8px; }
.kg-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.kg-bookmark-card { border: 1px solid var(--gray-line); border-radius: 8px; overflow: hidden; margin-bottom: 28px; }
.kg-bookmark-container { display: flex; }
.kg-bookmark-content { padding: 16px 20px; }
.kg-bookmark-title { font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.kg-bookmark-description { font-size: 13px; color: var(--text-soft); }
.kg-callout-card { display: flex; gap: 16px; padding: 20px 24px; border-radius: 8px; background: var(--surface); margin-bottom: 28px; }
.kg-callout-emoji { font-size: 22px; }
.kg-callout-text { font-size: 16px; color: var(--text-dark); line-height: 1.7; }
.kg-video-card { margin-bottom: 28px; }
.kg-video-card video { width: 100%; border-radius: 8px; }
.kg-audio-card { border: 1px solid var(--gray-line); border-radius: 8px; padding: 16px; margin-bottom: 28px; }
.kg-divider { border: none; border-top: 1px solid var(--gray-line); margin: 40px 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .about-inner  { grid-template-columns: 1fr; }
  .photo-frame  { max-width: 280px; margin: 0 auto; aspect-ratio: 3/2; }
  .pillars-grid, .pillars-grid--three { grid-template-columns: 1fr; }
  .posts-grid   { grid-template-columns: 1fr; }
  .work-grid    { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .signup-row   { flex-direction: column; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   MINISTRY & TECHNOLOGY PAGE
   page-ministry-and-technology.hbs
   ═══════════════════════════════════════════ */

/* ─── MINISTRY HERO VARIANT ─── */
.hero--ministry { padding: 80px 2rem 72px; }
.hero--ministry-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-ministry-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 20px;
}
.hero-ministry-eyebrow span { font-size: 16px; }
.hero--ministry h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  max-width: 100%;
}
.hero--ministry .hero-sub {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}
.hero-cred-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.hero-cred-item { text-align: center; }
.hero-cred-val {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-cred-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.hero-cred-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ─── PROBLEM SECTION ─── */
.problem-section {
  padding: 80px 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}
.problem-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.problem-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.problem-text p:last-child { margin-bottom: 0; }
.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-card {
  border: 1px solid var(--gray-line);
  border-radius: 10px;
  padding: 20px 22px;
  background: var(--gray-bg);
}
.problem-card-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0;
}
.problem-card--highlight {
  border-color: var(--accent);
  background: var(--accent-bg);
}
.problem-card--highlight .problem-card-label { color: var(--accent); }
.problem-card--highlight p {
  color: var(--text-dark);
  font-style: normal;
  font-weight: 500;
}

/* ─── PRODUCT SECTION ─── */
.product-section {
  padding: 80px 2rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--gray-line);
}
.product-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 0;
}
.product-card {
  background: var(--accent-deep);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 380px;
}
.product-left {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
}
.product-chip {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(19,128,134,0.35);
  color: var(--accent-soft);
  margin-bottom: 20px;
}
.product-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.product-left > p {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 28px;
}
.product-parts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 28px;
}
.product-part {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.part-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(19,128,134,0.2);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.part-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.part-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
}
.product-price-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.product-price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.product-right {
  background: rgba(0,0,0,0.2);
  padding: 52px 36px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.toolkit-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 10px;
}
.toolkit-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.toolkit-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.6;
}
.toolkit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}
.toolkit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.toolkit-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── BUNDLE ROW ─── */
.product-bundle-row {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(19,128,134,0.18);
  border: 1px solid rgba(19,128,134,0.4);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.product-bundle-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 5px;
}
.product-bundle-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.product-bundle-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.product-bundle-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.product-bundle-was {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.product-bundle-price {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.product-bundle-save {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent-soft);
}
.product-bundle-cta {
  white-space: nowrap;
  padding: 14px 28px;
  font-size: 15px;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 80px 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  background: var(--gray-bg);
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 14px;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── WHO THIS IS FOR ─── */
.audience-section {
  padding: 80px 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.audience-card {
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 28px 24px;
  background: var(--gray-bg);
}
.audience-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.audience-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.audience-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── POSTS SECTION (ministry page variant) ─── */
.posts-section {
  padding: 80px 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--gray-line);
}

/* ─── RESPONSIVE — MINISTRY PAGE ─── */
@media (max-width: 900px) {
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-card  { grid-template-columns: 1fr; }
  .product-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .steps-grid    { grid-template-columns: 1fr; max-width: 420px; }
  .audience-grid { grid-template-columns: 1fr; }
  .hero-cred-bar { gap: 24px; }
  .hero-cred-divider { display: none; }
  .product-bundle-row { flex-direction: column; align-items: flex-start; padding: 24px 28px; }
}
@media (max-width: 600px) {
  .product-left  { padding: 36px 24px; }
  .product-right { padding: 36px 24px; }
  .product-bundle-right { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ═══════════════════════════════════════════
   PRODUCT SALES PAGES
   page-ministry-in-context.hbs
   page-ministry-in-context-toolkit.hbs
   page-ministry-in-context-bundle.hbs
   All classes prefixed .sp- (sales page)
   ═══════════════════════════════════════════ */

/* ─── HERO ─── */
.sp-hero {
  background: var(--accent-deep);
  padding: 80px 2rem 72px;
  text-align: center;
}
.sp-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.sp-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 20px;
}
.sp-hero h1 {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.sp-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 32px;
}
.sp-hero-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.sp-hero-was {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.sp-hero-price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sp-hero-price {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.sp-hero-save {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--accent-soft);
  font-weight: 500;
}
.sp-hero-cta {
  padding: 15px 30px;
  font-size: 16px;
  white-space: nowrap;
}
.sp-hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.sp-hero-upsell {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.sp-hero-upsell a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sp-hero-upsell a:hover { color: #fff; }

/* ─── LAYOUT UTILITIES ─── */
.sp-section { padding: 80px 2rem; }
.sp-section--white { background: var(--white); border-bottom: 1px solid var(--gray-line); }
.sp-section--surface { background: var(--surface); border-bottom: 1px solid var(--gray-line); }
.sp-section--deep { background: var(--accent-deep); }
.sp-container { max-width: 1040px; margin: 0 auto; }
.sp-container--narrow { max-width: 680px; margin: 0 auto; }
.sp-section-head { text-align: center; margin-bottom: 56px; }
.sp-section-head--light h2 { color: #fff; }
.sp-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.sp-label--light { color: var(--accent-soft); }
.sp-section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.sp-section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.sp-prose p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.sp-prose p:last-child { margin-bottom: 0; }

/* ─── GUIDE PARTS (guide sales page) ─── */
.sp-guide-parts { display: flex; flex-direction: column; gap: 0; }
.sp-guide-part {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0;
  border-top: 1px solid var(--gray-line);
  padding: 40px 0;
}
.sp-guide-part:last-child { border-bottom: 1px solid var(--gray-line); }
.sp-guide-part-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 6px;
}
.sp-guide-part-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.sp-guide-part-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.sp-guide-part-body p:last-child { margin-bottom: 0; }
.sp-guide-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.sp-source {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid rgba(19,128,134,0.2);
}

/* ─── USE CASE PILLS ─── */
.sp-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.sp-use-cases--light .sp-use-case {
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid rgba(19,128,134,0.2);
}
.sp-use-case {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(19,128,134,0.18);
  color: rgba(255,255,255,0.8);
}

/* ─── BEFORE / AFTER ─── */
.sp-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.sp-ba-card {
  border-radius: 12px;
  padding: 32px 28px;
}
.sp-ba-card--before {
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
}
.sp-ba-card--after {
  background: var(--accent-deep);
  border: 1px solid rgba(19,128,134,0.3);
}
.sp-ba-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sp-ba-card--before .sp-ba-label { color: var(--text-soft); }
.sp-ba-card--after .sp-ba-label { color: var(--accent-soft); }
.sp-ba-prompt {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-line);
}
.sp-ba-card--after .sp-ba-prompt {
  color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(255,255,255,0.08);
}
.sp-ba-output p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 12px;
  color: var(--text-mid);
}
.sp-ba-card--after .sp-ba-output p { color: rgba(255,255,255,0.72); }
.sp-ba-output p:last-child { margin-bottom: 0; }
.sp-ba-verdict {
  font-size: 13px !important;
  font-style: italic;
  opacity: 0.7;
}
.sp-ba-card--after .sp-ba-verdict { color: var(--accent-soft) !important; opacity: 1; }

/* ─── FIT LIST ─── */
.sp-fit-list { display: flex; flex-direction: column; gap: 12px; }
.sp-fit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 10px;
  border: 1px solid var(--gray-line);
  background: var(--gray-bg);
}
.sp-fit-check {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}
.sp-fit-item p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ─── TEMPLATE CARDS (toolkit page) ─── */
.sp-template-cards { display: flex; flex-direction: column; gap: 0; }
.sp-template-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--gray-line);
}
.sp-template-card:last-child { border-bottom: 1px solid var(--gray-line); }
.sp-template-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  padding-top: 4px;
}
.sp-template-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sp-template-card-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 10px;
}
.sp-template-best-for {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* ─── UPSELL BOX ─── */
.sp-upsell-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--accent-bg);
  border: 1px solid rgba(19,128,134,0.25);
  border-radius: 12px;
}
.sp-upsell-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.sp-upsell-desc { font-size: 14px; color: var(--text-mid); }

/* ─── PRICING GRIDS ─── */
.sp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sp-pricing-grid--two {
  grid-template-columns: 1fr 1fr;
  max-width: 600px;
  margin: 0 auto;
}
.sp-price-card {
  border-radius: 12px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.sp-price-card--featured {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.sp-price-chip {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  margin-bottom: 16px;
  align-self: flex-start;
}
.sp-price-chip--subtle { background: rgba(19,128,134,0.35); color: var(--accent-soft); }
.sp-price-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.sp-price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sp-price-strike {
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  font-weight: 400;
}
.sp-price-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.sp-price-btn { width: 100%; text-align: center; }
.btn-white {
  background: #fff;
  color: var(--accent-deep);
  border: none;
}
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); }

/* ─── INCLUDES GRID (bundle page) ─── */
.sp-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.sp-include-card {
  border-radius: 14px;
  padding: 40px 36px;
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
}
.sp-include-card--featured {
  background: var(--accent-deep);
  border-color: rgba(19,128,134,0.3);
}
.sp-include-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.sp-include-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.sp-include-card:not(.sp-include-card--featured) .sp-include-tag { color: var(--accent); }
.sp-include-value {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}
.sp-include-card:not(.sp-include-card--featured) .sp-include-value { color: var(--text-soft); }
.sp-include-card--featured h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}
.sp-include-card:not(.sp-include-card--featured) h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.sp-include-card--featured > p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.75;
}
.sp-include-card:not(.sp-include-card--featured) > p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.75;
}
.sp-parts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.sp-part {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sp-part-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(19,128,134,0.2);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.sp-part-body strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.sp-part-body span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.sp-template-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sp-template-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-line);
}
.sp-template-list li:last-child { border-bottom: none; }
.sp-template-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.sp-template-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── ABOUT BIO ─── */
.sp-bio { text-align: center; }
.sp-bio-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.sp-bio h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.2;
}
.sp-bio p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.sp-bio p:last-of-type { margin-bottom: 24px; }
.sp-bio-creds {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sp-bio-creds span {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid rgba(19,128,134,0.2);
}

/* ─── FAQ ─── */
.sp-faq { display: flex; flex-direction: column; gap: 0; }
.sp-faq-item {
  padding: 24px 0;
  border-top: 1px solid var(--gray-line);
}
.sp-faq-item:last-child { border-bottom: 1px solid var(--gray-line); }
.sp-faq-q {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sp-faq-a {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─── FINAL CTA ─── */
.sp-final-cta {
  background: var(--accent-deep);
  padding: 80px 2rem;
  text-align: center;
}
.sp-final-cta h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.sp-final-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.sp-final-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.sp-final-was {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.sp-final-now {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.sp-final-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sp-final-btn { padding: 15px 30px; font-size: 16px; }
.sp-final-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0;
}

/* ─── RESPONSIVE — SALES PAGES ─── */
@media (max-width: 900px) {
  .sp-ba-grid       { grid-template-columns: 1fr; }
  .sp-includes-grid { grid-template-columns: 1fr; }
  .sp-pricing-grid  { grid-template-columns: 1fr; }
  .sp-pricing-grid--two { max-width: 100%; }
  .sp-guide-part    { grid-template-columns: 60px 1fr; }
  .sp-upsell-box    { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .sp-hero-price-row { flex-direction: column; gap: 16px; }
  .sp-hero-cta       { width: 100%; }
  .sp-template-card  { flex-direction: column; gap: 12px; }
  .sp-final-cta-row  { flex-direction: column; align-items: stretch; }
  .sp-final-btn      { text-align: center; }
  .sp-include-card   { padding: 28px 24px; }
}

/* ─── BLOG LISTING PAGE ─── */
.blog-listing-hero {
  background: var(--accent-deep);
  color: #fff;
  padding: 72px 24px 56px;
  text-align: center;
}
.blog-listing-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin: 8px 0 16px;
}
.blog-listing-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
}
.blog-listing-section { padding: 56px 24px 80px; }
.posts-grid--full { max-width: 1080px; margin: 0 auto; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
}
.pagination-info {
  font-size: 14px;
  color: var(--accent-mid);
}
