/**
 * @file
 * Styles for the CertLink content type.
 * Simplified subset of the Solution page — al-hero, overview, benefits, FAQ, final CTA.
 *
 * The template renders class="node--type-solution" for CSS compatibility,
 * so all selectors share that scope with the Solution page styles.
 * (JS behavior uses .node--type-certlink scope.)
 */
/**
 * @file
 * Shared LESS variables — imported by general.less and component files.
 *
 * Breakpoint variables used in @media queries across the theme.
 */
/**
 * @file
 * Layout mixins — shared across content types.
 */
/* Full-bleed: break out of parent container to fill viewport width.
   Uses margin-left: calc(50% - 50vw) — the percentage resolves against the
   direct parent's width, cancelling out any centering offset, so the element
   always aligns with the viewport's left edge regardless of nesting depth. */
/**
 * @file
 * Floating side jumpnav for Solution pages.
 *
 * Matching the design reference from /var/www/docs/design/solutions/
 * Section: "Floating side jumpnav (left margin)"
 *
 * Behavior:
 * - Collapsed: dot strip only, no labels
 * - Hover / focus-within / .is-open: labels and title appear
 * - Mobile (< 1080px): toggle button + .is-open class control
 */
/* =========================================================================
   Floating side jumpnav (left margin)
   ========================================================================= */
.side-jumpnav {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px;
  background: rgba(0, 48, 80, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl, 16px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 16, 32, 0.28);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, padding 0.3s ease-out, background 0.3s ease-out;
  /* ---- Expand on hover / focus ---- */
}
.side-jumpnav__title {
  font-family: var(--font-display, sans-serif);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: var(--tracking-caps, 0.12em);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom-color: transparent;
  transition: max-width 0.3s ease-out, max-height 0.3s ease-out, padding 0.3s ease-out, margin 0.3s ease-out, border-color 0.3s ease-out;
}
.side-jumpnav a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 8px;
  border-radius: var(--radius-md, 6px);
  font-family: var(--font-display, sans-serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps, 0.12em);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.15s ease-out, background 0.15s ease-out, gap 0.3s ease-out, padding 0.3s ease-out;
}
.side-jumpnav a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  flex-shrink: 0;
  transition: background 0.15s ease-out, transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
.side-jumpnav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.side-jumpnav a:hover::before {
  background: var(--al-orange-300, #f3c483);
  transform: scale(1.2);
}
.side-jumpnav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.side-jumpnav a.is-active::before {
  background: var(--al-orange, #e09030);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(224, 144, 48, 0.22);
}
.side-jumpnav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(224, 144, 48, 0.45);
}
.side-jumpnav .side-jumpnav__label {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.3s ease-out, opacity 0.3s ease-out;
}
.side-jumpnav:hover,
.side-jumpnav:focus-within {
  padding: 12px 10px;
}
.side-jumpnav:hover .side-jumpnav__title,
.side-jumpnav:focus-within .side-jumpnav__title {
  max-width: 200px;
  max-height: 32px;
  padding: 4px 10px 8px;
  margin-bottom: 4px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.side-jumpnav:hover a,
.side-jumpnav:focus-within a {
  gap: 10px;
  padding: 7px 10px;
}
.side-jumpnav:hover .side-jumpnav__label,
.side-jumpnav:focus-within .side-jumpnav__label {
  max-width: 160px;
  opacity: 1;
}
/* =========================================================================
   Mobile toggle button
   ========================================================================= */
.side-jumpnav__toggle {
  display: none;
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 41;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--al-navy, #003050);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(0, 16, 32, 0.25);
  cursor: pointer;
  padding: 0;
}
.side-jumpnav__toggle svg {
  transition: transform 0.15s ease-out;
}
/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
  .side-jumpnav {
    opacity: 0;
    pointer-events: none;
    transform: translate(-12px, -50%);
    padding: 12px 10px;
  }
  .side-jumpnav.is-open {
    left: 60px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
  }
  .side-jumpnav.is-open .side-jumpnav__title {
    max-width: 200px;
    max-height: 32px;
    padding: 4px 10px 8px;
    margin-bottom: 4px;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  .side-jumpnav.is-open a {
    gap: 10px;
    padding: 7px 10px;
  }
  .side-jumpnav.is-open .side-jumpnav__label {
    max-width: 160px;
    opacity: 1;
  }
  .side-jumpnav__toggle {
    display: inline-flex;
  }
  .side-jumpnav__toggle.is-open svg {
    transform: rotate(180deg);
  }
}
@media (max-width: 640px) {
  .side-jumpnav {
    left: 8px;
  }
  .side-jumpnav.is-open {
    left: 52px;
  }
  .side-jumpnav__toggle {
    left: 10px;
  }
}
/**
 * Shared breadcrumb mixin.
 * Used by solutions.less and blog.less.
 */
/* =========================================================================
   Full-bleed: break out of Bootstrap .container parent
   overflow-x already handled by general.less
   ========================================================================= */
.node--type-solution {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
/* =========================================================================
   Container
   ========================================================================= */
.node--type-solution .container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 20px;
}
/* =========================================================================
   HERO SECTION
   ========================================================================= */
.node--type-solution .al-hero {
  position: relative;
  background: var(--al-navy);
  color: #fff;
  padding: 56px 0 48px;
  overflow: hidden;
}
.node--type-solution .al-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 30%, rgba(224, 144, 48, 0.1), transparent 55%), linear-gradient(180deg, rgba(0, 31, 54, 0) 0%, rgba(0, 31, 54, 0.65) 100%);
  pointer-events: none;
}
.node--type-solution .al-hero__orbit {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 720px;
  height: 720px;
  pointer-events: none;
  opacity: 0.55;
}
.node--type-solution .al-hero__inner {
  position: relative;
}
.node--type-solution .al-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}
.node--type-solution .al-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-out);
}
.node--type-solution .al-hero .breadcrumb a:hover {
  color: #fff;
}
.node--type-solution .al-hero .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
}
.node--type-solution .al-hero .breadcrumb__current {
  color: var(--al-orange-300);
}
.node--type-solution .al-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}
.node--type-solution .al-hero__iso-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.node--type-solution .iso-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.node--type-solution .iso-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--al-orange);
  display: inline-block;
}
.node--type-solution .al-hero__h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 16ch;
  text-wrap: balance;
}
.node--type-solution .al-hero__sub {
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 60ch;
  margin: 0 0 36px;
}
/* Single al-hero CTA (CertLink has no secondary CTA) */
.node--type-solution .al-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.node--type-solution .al-hero__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-md);
  background: var(--al-orange);
  color: #fff;
  text-decoration: none;
  transition: background var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.node--type-solution .al-hero__cta a:hover {
  background: var(--al-orange-700);
  transform: translateY(-1px);
}
/* Hero Panel (At a glance) */
.node--type-solution .al-hero__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.node--type-solution .al-hero__panel-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin: 0 0 18px;
}
.node--type-solution .al-hero__panel-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.node--type-solution .al-hero__panel-row:first-of-type {
  border-top: 0;
}
.node--type-solution .al-hero__panel-row svg {
  flex-shrink: 0;
  color: var(--al-orange);
  margin-top: 2px;
}
.node--type-solution .al-hero__panel-row b {
  color: #fff;
  font-weight: 700;
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  margin-bottom: 2px;
}
/* =========================================================================
   HERO PARAGRAPHS (Overview section)
   ========================================================================= */
.node--type-solution .heroparas {
  background: var(--al-navy-50);
  padding: 112px 0;
  border-bottom: 1px solid var(--al-gray-100);
}
.node--type-solution .al-heroparas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.node--type-solution .heropara {
  padding: 0;
  position: relative;
}
.node--type-solution .heropara::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--al-orange);
  margin-bottom: 18px;
}
.node--type-solution .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-solution .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-solution .heropara p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--al-navy-600);
  margin: 0;
}
/* =========================================================================
   SECTION HEAD (shared by benefits, FAQ)
   ========================================================================= */
.node--type-solution section.padded {
  padding: 128px 0;
}
.node--type-solution .al-section-head {
  max-width: 760px;
  margin: 0 0 56px;
}
.node--type-solution .al-section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin-bottom: 14px;
}
.node--type-solution .al-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.55vw, 44px);
  font-weight: 800;
  color: var(--al-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
}
.node--type-solution .al-section-head .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--al-navy-600);
  max-width: 68ch;
  margin: 0;
}
.node--type-solution section.dark .al-section-head h2 {
  color: #fff;
}
.node--type-solution section.dark .al-section-head .lede {
  color: rgba(255, 255, 255, 0.78);
}
/* =========================================================================
   BENEFITS
   ========================================================================= */
.node--type-solution .benefits {
  background: #fff;
}
.node--type-solution .al-benefits__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.node--type-solution .al-benefits__grid .al-b-card {
  flex: 0 1 calc((100% - 40px) / 3);
  min-width: 0;
}
.node--type-solution .al-b-card {
  background: #fff;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all var(--dur-2) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.node--type-solution .al-b-card:hover {
  border-color: var(--al-navy-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.node--type-solution .al-b-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--al-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.node--type-solution .al-b-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--al-navy-600);
  margin: 0;
}
.node--type-solution .al-b-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--al-navy-50);
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.node--type-solution .al-b-card:hover .al-b-card__icon {
  background: var(--al-orange);
  color: #fff;
}
/* =========================================================================
   FAQ
   ========================================================================= */
.node--type-solution .faq {
  background: #fff;
}
.node--type-solution .faq .al-section-head {
  text-align: center;
  margin: 0 auto 48px;
}
.node--type-solution .faq__wrap {
  max-width: 880px;
  margin: 0 auto;
}
.node--type-solution .faq__wrap > .field {
  margin: 0;
  padding: 0;
}
.node--type-solution .faq-item {
  border-top: 1px solid var(--al-gray-100);
}
.node--type-solution .faq-item:last-child,
.node--type-solution .faq-item:last-of-type {
  border-bottom: 1px solid var(--al-gray-100);
}
.node--type-solution .faq-item__btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--al-navy);
  letter-spacing: -0.005em;
  list-style: none;
  transition: color var(--dur-1) var(--ease-out);
}
.node--type-solution .faq-item__btn::-webkit-details-marker {
  display: none;
}
.node--type-solution .faq-item__btn::marker {
  content: '';
}
.node--type-solution .faq-item__btn:hover {
  color: var(--al-orange-700);
}
.node--type-solution .faq-item__btn:focus-visible {
  outline: 2px solid var(--al-orange);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.node--type-solution .faq-item__btn > span:first-child {
  flex: 1;
  padding-top: 2px;
}
.node--type-solution .faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--al-navy-100);
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.node--type-solution .faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--al-orange);
  color: #fff;
  border-color: var(--al-orange);
}
.node--type-solution .faq-item__body {
  padding: 0 56px 28px 0;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--al-navy-600);
  max-width: 78ch;
}
.node--type-solution .faq-item__body p {
  margin: 0;
}
/* =========================================================================
   FINAL CTA
   ========================================================================= */
.node--type-solution .al-finalcta {
  background: var(--al-navy-900);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.node--type-solution .al-finalcta::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 2px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(-15deg) scale(1, 0.34);
  opacity: 0.22;
  pointer-events: none;
}
.node--type-solution .al-finalcta::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(28deg) scale(1, 0.4);
  opacity: 0.14;
  pointer-events: none;
}
.node--type-solution .al-finalcta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.node--type-solution .al-finalcta__inner.with-form {
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.node--type-solution .al-finalcta__copy {
  max-width: 680px;
  padding-top: 8px;
}
.node--type-solution .al-finalcta__mailto {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  margin-top: 24px;
  text-decoration: none;
  transition: border-color var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.node--type-solution .al-finalcta__mailto:hover {
  color: #fff;
  border-color: var(--al-orange);
  background: rgba(224, 144, 48, 0.1);
  text-decoration: none;
}
.node--type-solution .al-finalcta h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.15vw, 50px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 24px;
  max-width: 16ch;
  text-wrap: balance;
}
.node--type-solution .al-finalcta p {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
  max-width: 60ch;
}
/* =========================================================================
   INLINE LINKS (within body text)
   ========================================================================= */
.node--type-solution a.inline-link,
.node--type-solution .heropara a,
.node--type-solution .al-b-card a,
.node--type-solution .faq-item__body a {
  color: var(--fg-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 144, 48, 0.35);
  transition: color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.node--type-solution a.inline-link:hover,
.node--type-solution .heropara a:hover,
.node--type-solution .al-b-card a:hover,
.node--type-solution .faq-item__body a:hover {
  color: var(--al-orange-700);
  border-bottom-color: var(--al-orange-700);
}
.node--type-solution section.dark a {
  color: var(--al-orange-300);
  border-bottom-color: rgba(243, 196, 131, 0.45);
}
.node--type-solution section.dark a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.node--type-solution section.al-finalcta .al-finalcta__copy a {
  color: var(--fg-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 144, 48, 0.35);
  transition: color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.node--type-solution section.al-finalcta .al-finalcta__copy a:hover {
  color: var(--al-orange-700);
  border-bottom-color: var(--al-orange-700);
}
/* =========================================================================
   BUTTONS
   ========================================================================= */
.node--type-solution .al-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
  cursor: pointer;
  border: none;
}
.node--type-solution .al-btn--primary {
  background: var(--al-orange);
  color: #fff;
}
.node--type-solution .al-btn--primary:hover {
  background: var(--al-orange-700);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}
.node--type-solution .al-btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}
/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .node--type-solution .al-benefits__grid .al-b-card {
    flex: 0 1 calc((100% - 20px) / 2);
  }
  .node--type-solution .al-heroparas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .node--type-solution .al-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .node--type-solution .al-hero__panel {
    max-width: 520px;
  }
  .node--type-solution .al-heroparas__grid {
    grid-template-columns: 1fr;
  }
  .node--type-solution .al-benefits__grid .al-b-card {
    flex: 0 1 100%;
  }
  .node--type-solution .faq-item__btn {
    gap: 16px;
    font-size: 18px;
    padding: 20px 0;
  }
  .node--type-solution .faq-item__body {
    padding: 0 0 24px;
    font-size: 16.5px;
  }
  .node--type-solution .al-finalcta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .node--type-solution .al-finalcta__inner.with-form {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .node--type-solution section.padded {
    padding: 64px 0;
  }
}
/* =========================================================================
   DARK THEME — CertLink portal
   ---------------------------------------------------------------------------
   certlink loads only certlink.css (not al-pages.css), so it carries its own
   dark block. The certlink node uses .node--type-solution. Hero, breadcrumb
   and final CTA are navy bands already and need no override.
   ========================================================================= */
body.dark .node--type-solution {
  /* Section backgrounds */
  /* Hero-paragraphs / overview strip */
  /* Section headings */
  /* Benefit cards */
  /* FAQ accordion */
}
body.dark .node--type-solution .heroparas {
  background: var(--al-navy-900);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
body.dark .node--type-solution .benefits {
  background: var(--al-navy);
}
body.dark .node--type-solution .faq {
  background: var(--al-navy-900);
}
body.dark .node--type-solution .heropara h3 {
  color: #fff;
}
body.dark .node--type-solution .heropara p {
  color: rgba(255, 255, 255, 0.76);
}
body.dark .node--type-solution .al-section-head h2 {
  color: #fff;
}
body.dark .node--type-solution .al-section-head .lede {
  color: rgba(255, 255, 255, 0.78);
}
body.dark .node--type-solution .al-b-card {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.08);
}
body.dark .node--type-solution .al-b-card:hover {
  background: var(--al-navy-700);
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark .node--type-solution .al-b-card h3 {
  color: #fff;
}
body.dark .node--type-solution .al-b-card p {
  color: rgba(255, 255, 255, 0.74);
}
body.dark .node--type-solution .al-b-card__icon {
  background: rgba(255, 255, 255, 0.06);
}
body.dark .node--type-solution .faq-item {
  border-top-color: rgba(255, 255, 255, 0.1);
}
body.dark .node--type-solution .faq-item:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
body.dark .node--type-solution .faq-item__btn {
  color: #fff;
}
body.dark .node--type-solution .faq-item__btn:hover {
  color: var(--al-orange-300);
}
body.dark .node--type-solution .faq-item__body {
  color: rgba(255, 255, 255, 0.78);
}
body.dark .node--type-solution .faq-item__icon {
  border-color: rgba(255, 255, 255, 0.18);
}
