/* CBA Orlando — nonprofit rebuild layer.
   Sits ON TOP of cba-redesign.css ("Divine Light") and adds only the classes
   the new organizational IA needs. No color, type, or spacing token is
   redefined here — everything below consumes the existing :root variables so
   the site stays visually identical to the rest of the ministry family.
   Prefix: .np-  */

/* ---- header additions ---------------------------------------------------- */
.np-login {
  font: 600 0.82rem/1 Inter, system-ui, sans-serif;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.np-login:hover, .np-login:focus-visible { color: var(--green); border-color: var(--green); }
.np-give-btn { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
@media (max-width: 720px) { .np-login { display: none; } }

/* ---- hero ---------------------------------------------------------------- */
.np-hero .hero-lede { max-width: 46ch; }
.np-hero h1 { max-width: 20ch; }
.np-ministry-hero .eyebrow a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; }

/* ---- generic measure / lead ---------------------------------------------- */
.np-measure { max-width: 68ch; }
.np-lead {
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.18rem);
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 1.15rem;
}
.np-lead em { color: var(--ink); font-style: italic; }
.np-h2 {
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.7rem);
  color: var(--ink);
  margin: 2.2rem 0 0.8rem;
  letter-spacing: -0.01em;
}
.np-fineprint {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--ink-faint);
  max-width: 62ch;
  margin-top: 1rem;
}

/* ---- ministry cards ------------------------------------------------------ */
.np-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: 2rem;
}
.np-card {
  --accent: var(--home);
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.np-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 14px 34px -18px color-mix(in srgb, var(--accent) 55%, transparent);
}
.np-card-media { aspect-ratio: 16 / 9; background: var(--mist); overflow: hidden; }
.np-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.np-card-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.np-card-kicker {
  font: 600 0.72rem/1.2 Inter, system-ui, sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.np-card h3 {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  letter-spacing: -0.015em;
}
.np-card h3 a { color: var(--ink); text-decoration: none; }
.np-card h3 a:hover { color: var(--accent); }
.np-card-tag { margin: 0 0 0.6rem; color: var(--ink); font-weight: 500; line-height: 1.5; }
.np-card-why { margin: 0 0 0.9rem; color: var(--ink-soft); font-size: 0.93rem; line-height: 1.6; }
.np-card-meta {
  margin: auto 0 0.85rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}
.np-card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
}
.np-card-link:hover { text-decoration: underline; }

/* ---- badges -------------------------------------------------------------- */
.np-badge {
  font: 600 0.63rem/1 Inter, system-ui, sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.np-badge-local { background: var(--mist); color: var(--ink-soft); border-color: var(--line-strong); }
.np-badge-soon {
  background: color-mix(in srgb, var(--green) 12%, transparent);
  color: var(--green);
  border: 1px solid color-mix(in srgb, var(--green) 32%, transparent);
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
}

/* ---- point lists --------------------------------------------------------- */
.np-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.np-points-wide { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 2rem; }
.np-points li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1rem;
  border-left: 3px solid color-mix(in srgb, var(--green) 40%, transparent);
}
.np-points strong {
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
}
.np-points span { color: var(--ink-soft); line-height: 1.65; font-size: 0.95rem; }

.np-list { margin: 0 0 1.2rem; padding-left: 1.1rem; color: var(--ink-soft); line-height: 1.72; }
.np-list li { margin-bottom: 0.7rem; }

/* ---- need / role / policy cards ------------------------------------------ */
.np-needs {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin-top: 2rem;
}
.np-need {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
}
.np-need h3 {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.np-need p { margin: 0; color: var(--ink-soft); line-height: 1.68; font-size: 0.95rem; }
.np-need .np-card-meta { margin: 0.8rem 0 0; }

/* ---- numbered steps ------------------------------------------------------ */
.np-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: np;
}
.np-steps li { display: flex; flex-direction: column; gap: 0.35rem; }
.np-steps .number {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  opacity: 0.55;
  line-height: 1;
}
.np-steps strong { font-family: Poppins, system-ui, sans-serif; font-weight: 600; color: var(--ink); }
.np-steps span:last-child { color: var(--ink-soft); line-height: 1.65; font-size: 0.95rem; }

/* ---- definition facts ---------------------------------------------------- */
.np-facts {
  margin: 1.8rem 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.np-facts > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.np-facts dt {
  font: 600 0.78rem/1.5 Inter, system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
}
.np-facts dd { margin: 0; color: var(--ink); line-height: 1.6; font-size: 0.96rem; }
@media (max-width: 560px) { .np-facts > div { grid-template-columns: 1fr; gap: 0.25rem; } }

/* ---- leaders ------------------------------------------------------------- */
.np-leaders {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.np-leaders li {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.np-leaders strong { font-family: Poppins, system-ui, sans-serif; font-weight: 600; color: var(--ink); }
.np-leaders span { color: var(--ink-soft); font-size: 0.9rem; }

/* ---- table --------------------------------------------------------------- */
.np-table-wrap { overflow-x: auto; margin-top: 2rem; }
.np-table { width: 100%; border-collapse: collapse; font-size: 0.96rem; }
.np-table th {
  text-align: left;
  font: 600 0.76rem/1.5 Inter, system-ui, sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 0.7rem 1rem 0.7rem 0;
  border-bottom: 1px solid var(--line-strong);
}
.np-table td {
  padding: 0.85rem 1rem 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.55;
  vertical-align: top;
}
.np-table td a { color: var(--green); font-weight: 600; text-decoration: none; }
.np-table td a:hover { text-decoration: underline; }

/* ---- give ---------------------------------------------------------------- */
.np-give-panel {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.np-give-panel h2 {
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.95rem);
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.np-give-panel p { color: var(--ink-soft); margin: 0 0 1.4rem; line-height: 1.65; }
.np-give-cta { font-size: 1rem; padding: 0.9rem 2.2rem; }
.np-give-panel .np-fineprint { margin: 1.3rem auto 0; text-align: left; }
.np-give-band { border-top: 1px solid var(--line); }

/* ---- contact ------------------------------------------------------------- */
.np-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.np-contact-strip .button { text-decoration: none; }
