/* =========================================================
   CONSTRUCTION — INDUSTRY PAGE (Top-tier finish)
   Scope: construction.html only
   Matches the GovCon / Nonprofit rhythm + premium polish
========================================================= */

.page-content {
  background: #ffffff;
}

/* Global rhythm */
.content-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px;
}

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

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

/* Section dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e1e6ee, transparent);
  margin: 0;
}

/* ---------- Section headers (chapter-level) ---------- */
.section-header {
  margin-bottom: 36px;
}

.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: 820px;
}

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

/* ---------- Card grids ---------- */
.card-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 24px;
}

.card-grid.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
}

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

.info-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #071a2f;
}

.info-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #425466;
}

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

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

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

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

.stack-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #071a2f;
}

.stack-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #425466;
  max-width: 92%;
}

/* Inline action links (match your system) */
.inline-action {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: #0b5ed7;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.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);
}

.mini-links {
  margin-top: 6px;
}

/* ---------- CTA gravity (keeps your cta.css look, just spacing harmony) ---------- */
.cta-panel {
  padding: 84px 28px;
}

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

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

  .content-inner {
    padding: 64px 20px;
  }

  .stack-card {
    padding: 28px 24px;
  }
}
