/**
 * @file
 * aiHubLink page — overrides and standalone rules on top of al-pages.css.
 *
 * al-pages.css provides shared base styles (loaded first, weight 102).
 * This file provides aiHubLink-specific rules (loaded weight 108).
 * Rules are scoped under .node--type-aihub-link to avoid affecting other pages.
 *
 * NOTE: certlink.css carries .node--type-solution .al-heroparas__grid / .heropara*
 * rules, but aihublink does NOT load certlink.css — so those rules are reproduced
 * here under .node--type-aihub-link.
 */
/* Design reference: heroparas padding 80px (al-pages.css base uses 80px too) */
.node--type-aihub-link {
  /* --- Overview grid (4 cards: What / Who / Why / How) ------------------- */
  /* al-heroparas__grid is the live markup class (.heroparas__grid in design ref) */
  /*
   * Hero CTA buttons: the design uses the generic .al-btn system, but this page
   * also carries .node--type-solution, whose al-pages.css rules restyle .al-btn
   * (display font, weight 700, border:none, wider --lg padding) and win by load
   * order. Restore the design/general-css button look (font-sans, 600, a 1px
   * transparent border so the ghost button's inline border-color shows, and the
   * design --lg sizing). Same specificity as the solution rules, but aihublink.css
   * loads later (weight 108 > 102), so these take precedence.
   */
  /* Benefits grid: match design ref — CSS grid 2-col (4 cards as 2×2) */
  /* Slightly tighter FAQ spacing */
}
.node--type-aihub-link .heroparas {
  padding: 80px 0;
}
.node--type-aihub-link .al-heroparas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.node--type-aihub-link .heropara {
  padding: 0;
  position: relative;
}
.node--type-aihub-link .heropara::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--al-orange);
  margin-bottom: 18px;
}
.node--type-aihub-link .heropara__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin: 0 0 6px;
}
.node--type-aihub-link .heropara h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--al-navy);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.node--type-aihub-link .heropara p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--al-navy-600);
  margin: 0;
}
.node--type-aihub-link .al-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 12px 20px;
  border: 1px solid transparent;
  justify-content: center;
}
.node--type-aihub-link .al-btn--lg {
  padding: 16px 28px;
  font-size: 17px;
}
.node--type-aihub-link .al-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.node--type-aihub-link .al-benefits__grid .al-b-card {
  flex: none;
  /* override flex sizing */
  width: auto;
}
.node--type-aihub-link .faq.padded {
  padding-top: 80px;
  padding-bottom: 80px;
}
/* --- Editorial density overrides ----------------------------------------- */
/* design-review defaults to editorial; port those overrides for the live site */
body[data-density="editorial"] .node--type-aihub-link .heroparas {
  padding: 112px 0;
}
body[data-density="editorial"] .node--type-aihub-link .al-heroparas__grid {
  gap: 48px;
}
/* --- Dark theme ------------------------------------------------------------- */
body.dark .node--type-aihub-link .heroparas {
  background: var(--al-navy-900);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
body.dark .node--type-aihub-link .heropara h3 {
  color: #fff;
}
body.dark .node--type-aihub-link .heropara p {
  color: rgba(255, 255, 255, 0.76);
}
/* Responsive: tablet — 2 columns for overview grid and benefits */
@media (max-width: 1024px) {
  .node--type-aihub-link .heroparas {
    padding: 56px 0;
  }
  .node--type-aihub-link .al-heroparas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .node--type-aihub-link .al-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Responsive: mobile — single column */
@media (max-width: 768px) {
  .node--type-aihub-link .heroparas {
    padding: 48px 0;
  }
  .node--type-aihub-link .al-heroparas__grid {
    grid-template-columns: 1fr;
  }
  .node--type-aihub-link .al-benefits__grid {
    grid-template-columns: 1fr;
  }
}
