/* ===========================
   PAGE-COMMON.CSS
   Shared components across article, checklist,
   resource-center, service, and industry pages.
   Loaded after styles.css.
   =========================== */

/* ───────────────────────────
   HERO (base — padding set per category)
   ─────────────────────────── */
.hero {
  background:
    linear-gradient(105deg, rgba(7,27,51,.97), rgba(7,27,51,.88), rgba(15,63,112,.65)),
    radial-gradient(circle at 78% 32%, rgba(245,130,32,.4), transparent 30%);
  color: var(--white);
  padding: 84px 0 72px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 14px;
  margin-bottom: 14px;
}

.hero p {
  font-size: 19px;
  color: #dbe9f8;
  margin: 0;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ───────────────────────────
   BREADCRUMB
   ─────────────────────────── */
.breadcrumb {
  background: var(--soft);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
}

.breadcrumb-inner a { color: var(--blue); text-decoration: none; font-weight: 700; }
.breadcrumb-inner a:hover { color: var(--orange); }
.breadcrumb-inner span { color: var(--border); }

/* ───────────────────────────
   SECTION / SECTION-TITLE
   (service & industry pages)
   ─────────────────────────── */
section { padding: 84px 0; }

.section-title { text-align: center; max-width: 820px; margin: 0 auto 52px; }

.section-title h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.section-title p { font-size: 19px; color: var(--gray); margin: 0; }

/* ───────────────────────────
   SIDEBAR CARD
   (articles, checklists, resource centers)
   ─────────────────────────── */
.sidebar-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(7,27,51,.08);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

/* ───────────────────────────
   ASSESS CTA (sidebar CTA block)
   ─────────────────────────── */
.assess-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  padding: 28px;
  color: var(--white);
}

.assess-cta h3 { font-size: 17px; margin: 0 0 10px; }
.assess-cta p  { font-size: 14px; color: rgba(255,255,255,.75); margin: 0 0 18px; line-height: 1.6; }
.assess-cta .btn { display: block; text-align: center; font-size: 14px; }

/* ───────────────────────────
   RELATED LIST
   ─────────────────────────── */
.related-list { list-style: none; padding: 0; margin: 0; }

.related-list li a {
  display: block;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  position: relative;
}

.related-list li:last-child a { border-bottom: none; }

.related-list li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.related-list li a:hover { color: var(--orange); }

/* ───────────────────────────
   BACK LINK
   ─────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 32px;
}

.back-link:hover { color: var(--orange); }

/* ───────────────────────────
   PAGE CTA (dark full-width final section)
   ─────────────────────────── */
.cta {
  background:
    linear-gradient(105deg, rgba(7,27,51,.96), rgba(7,27,51,.84)),
    radial-gradient(circle at right, rgba(245,130,32,.55), transparent 34%);
  color: var(--white);
  text-align: center;
}

.cta h2 { font-size: clamp(36px, 4vw, 48px); line-height: 1.05; margin: 0 0 18px; }
.cta p  { font-size: 19px; color: #dbe9f8; max-width: 760px; margin: 0 auto 30px; }
