/* =========================================================
   NONPROFIT PRACTICE PAGE — MATCH GOVCON STANDARD
========================================================= */

.page-content {
  background: #ffffff;
}

.content-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 24px;
}

/* Section backgrounds */
.content-section {
  background: #ffffff;
}

.content-section.alt {
  background: #f4f7fb;
}

/* Section headers */
.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #071a2f;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 18px;
  line-height: 1.65;
  color: #4b5c70;
  max-width: 760px;
}

/* Eyebrows */
.section-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: #5c6f86;
  margin-bottom: 6px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e3e9f1;
  border-radius: 16px;
  padding: 34px 32px;
  box-shadow: 0 10px 30px rgba(7,26,47,0.08);
}

/* Attest anchor */
.attest-anchor {
  background: #eef3fa;
}

.attest-anchor .section-header h2 {
  font-size: 38px;
}

/* Stack cards */
.stack-cards {
  display: grid;
  gap: 30px;
}

.stack-card {
  background: #ffffff;
  border-left: 6px solid #0b5ed7;
  padding: 34px 38px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(7,26,47,0.10);
}

/* Inline action links */
.inline-action {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: #0b5ed7;
  text-decoration: none;
}

.inline-action::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.inline-action:hover {
  text-decoration: underline;
}

.inline-action:hover::after {
  transform: translateX(3px);
}

/* Mobile */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .content-inner {
    padding: 72px 20px;
  }
}
.section-eyebrow {
  margin-bottom: 4px;
}
.info-card {
  box-shadow: 0 12px 34px rgba(7,26,47,0.10);
}
.attest-anchor {
  background: #e9eff8;
}
.stack-cards {
  gap: 26px;
}
.inline-action {
  margin-top: 16px;
}
@media (max-width: 1100px) and (min-width: 769px) {
  .card-grid.two-up {
    grid-template-columns: repeat(2, 1fr);
  }
}
.content-section .section-header h2 {
  font-weight: 750;
}
.info-card p {
  min-height: 84px;
}
.section-divider {
  margin: 24px 0;
}
.content-section.alt:last-of-type .section-header h2 {
  opacity: 0.9;
}
.section-header p {
  max-width: 700px;
}
@media (hover: hover) {
  .info-card:hover {
    transform: translateY(-3px);
  }
}
@media (max-width: 1024px) {
  .content-inner {
    padding: 72px 24px;
  }
}
.info-card,
.stack-card {
  border-radius: 16px;
}
.info-card p {
  line-height: 1.7;
}
.info-card {
  border-color: rgba(7,26,47,0.08);
}
.content-section {
  margin-bottom: 0;
}

