/* NGIN Alliance Playbook — Custom Styles */
/* Auto-built: 2026-03-18T19:58:33.274Z */

/* === variables.css === */
/* ============================================
   NGIN Alliance Playbook — CSS Custom Properties
   ============================================ */

:root {
  /* Brand Colors */
  --ngin-navy: #1B3A6B;
  --ngin-navy-light: #234B8A;
  --ngin-navy-dark: #142D52;
  --ngin-teal: #2E7D6B;
  --ngin-teal-light: #3A9B84;
  --ngin-teal-bg: #F0FBF7;
  --ngin-amber: #D97706;
  --ngin-amber-light: #F59E0B;
  --ngin-amber-bg: #FFFBF0;

  /* Neutrals */
  --ngin-white: #FFFFFF;
  --ngin-gray-50: #F9FAFB;
  --ngin-gray-100: #F3F4F6;
  --ngin-gray-200: #E5E7EB;
  --ngin-gray-300: #D1D5DB;
  --ngin-gray-400: #9CA3AF;
  --ngin-gray-600: #4B5563;
  --ngin-gray-700: #374151;
  --ngin-gray-900: #111827;

  /* Spacing */
  --ngin-section-pad: clamp(40px, 6vw, 72px);
  --ngin-content-max: 900px;
  --ngin-sidebar-width: 230px;

  /* Radius */
  --ngin-radius-sm: 4px;
  --ngin-radius: 6px;
  --ngin-radius-lg: 8px;
  --ngin-radius-xl: 12px;
  --ngin-radius-pill: 100px;

  /* Transitions */
  --ngin-transition: 0.2s ease;
}


/* === global.css === */
/* ============================================
   NGIN Alliance Playbook — Global Overrides
   Scoped to Squarespace 7.1 using official hooks
   ============================================ */

/* --- Material Symbols (font loaded via JS for reliability) --- */

/* --- Shared icon base (Material Symbols Outlined) --- */
.ngin-icon,
.ngin-icon-after,
.ngin-link-arrow,
.ngin-label-icon {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal !important;
  font-style: normal !important;
  line-height: 1 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  vertical-align: middle;
}

/* --- Button icon (always after text) --- */
[data-sqsp-button] .ngin-icon,
[data-sqsp-button] .ngin-icon-after {
  font-size: 20px;
  margin-left: 6px;
  opacity: 0.9;
  transition: transform var(--ngin-transition);
}

[data-sqsp-button]:hover .ngin-icon,
[data-sqsp-button]:hover .ngin-icon-after {
  transform: translateX(3px);
}

[data-sqsp-button][data-ngin-icon] {
  display: inline-flex !important;
  align-items: center;
  gap: 0;
}

/* --- Inline link arrows (paragraph / body text links) --- */
.ngin-inline-link {
  text-decoration: none !important;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: opacity var(--ngin-transition);
}

.ngin-inline-link:hover {
  opacity: 0.7;
}

.ngin-link-arrow {
  font-size: 16px;
  margin-left: 3px;
  opacity: 0.7;
  transition: transform var(--ngin-transition), opacity var(--ngin-transition);
}

.ngin-inline-link:hover .ngin-link-arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* --- Section label icons (white, left of label text, vertically centered) --- */
.ngin-label-icon {
  font-size: 36px;
  color: #fff !important;
  display: inline-flex !important;
  margin-right: 8px;
  margin-bottom: 0;
  vertical-align: middle;
}

/* Make the parent strong tag flex so icon + text vertically center */
strong[data-ngin-label-icon="done"] {
  display: inline-flex !important;
  align-items: center;
}

/* --- Navigation hover + active state ---
   OBSERVED selectors: .header-nav-list, .header-menu-nav-list
   These are standard 7.1 nav wrappers but not officially documented hooks.
   -------------------------------------------------------------------- */

/* Desktop nav links — kill all Squarespace default underlines */
.header-nav-list a,
.header-nav-item a,
.header-nav-item--active a {
  position: relative;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
  transition: color 0.25s ease;
}

/* Kill Squarespace native active underline on parent item */
.header-nav-item--active {
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.header-nav-item--active::after,
.header-nav-item--active::before {
  display: none !important;
}

/* Green underline — starts hidden, slides in on hover */
.header-nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #caddbb;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.header-nav-list a:hover::after,
.header-nav-list a:focus-visible::after {
  transform: scaleX(1);
}

/* Active state — page you're currently on */
.header-nav-list a[aria-current="page"]::after,
.header-nav-list a.header-nav-item--active::after {
  transform: scaleX(1);
  background-color: #caddbb;
}

.header-nav-list a[aria-current="page"],
.header-nav-list a.header-nav-item--active {
  opacity: 1 !important;
}

/* Mobile menu links — simpler left-border accent */
.header-menu-nav-list a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.header-menu-nav-list a:hover {
  padding-left: 4px;
}

.header-menu-nav-list a[aria-current="page"] {
  border-left: 3px solid #caddbb;
  padding-left: 8px;
}


/* === components.css === */
/* ============================================
   NGIN Alliance Playbook — Component Styles
   Custom modules injected into Squarespace
   ============================================ */

/* --- Case Study Meta Pills --- */
.ngin-pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.ngin-pill {
  display: inline-block;
  font-style: normal !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid;
  white-space: nowrap;
}

/* Navy — Organizations */
.ngin-pill--navy {
  border-color: var(--ngin-navy, #1B3A6B);
  color: var(--ngin-navy, #1B3A6B);
}

/* Green — Building Blocks */
.ngin-pill--green {
  border-color: #caddbb;
  color: #1B3A6B;
}

/* Gray — Related Tools */
.ngin-pill--gray {
  border-color: #9CA3AF;
  color: #6B7280;
}


/* === sections.css === */
/* ============================================
   NGIN Alliance Playbook — Section-Specific Styles
   Scoped to section data-section-id
   ============================================ */

/* --- "Start Where You Are" pathway cards ---
   Section: 69badb6c344ec84841fe29e2
   -------------------------------------------- */

section[data-section-id="69badb6c344ec84841fe29e2"] li h2 {
  font-weight: 700 !important;
}

section[data-section-id="69badb6c344ec84841fe29e2"] li p {
  line-height: 1.45 !important;
}

/* Pathway list buttons — green #caddbb, matching primary button style */
section[data-section-id="69badb6c344ec84841fe29e2"] .list-item-content__button {
  background-color: #caddbb !important;
  color: var(--ngin-navy, #1B3A6B) !important;
  border-color: #caddbb !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

section[data-section-id="69badb6c344ec84841fe29e2"] .list-item-content__button:hover {
  background-color: #b8d0a3 !important;
  border-color: #b8d0a3 !important;
}

/* Arrow icon inside pathway list buttons */
section[data-section-id="69badb6c344ec84841fe29e2"] .list-item-content__button .ngin-icon {
  font-size: 18px;
  margin-left: 6px;
  opacity: 0.8;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

section[data-section-id="69badb6c344ec84841fe29e2"] .list-item-content__button:hover .ngin-icon {
  transform: translateX(4px);
  opacity: 1;
}

/* --- Case Studies intro callout bar ---
   OBSERVED selector: yui block ID (fragile, re-test if content changes)
   -------------------------------------------- */
#block-yui_3_17_2_1_1773858190654_874 .sqs-block-content {
  border-left: 3px solid #caddbb;
  padding-left: 16px;
}

/* --- Case Studies city cards ---
   Section: 69baee0a0909bd79f56324b3
   OBSERVED selectors: .list-item, .list-item-media, .list-item-content, etc.
   -------------------------------------------- */

/* Card: rounded corners, overflow clip */
section[data-section-id="69baee0a0909bd79f56324b3"] .list-item {
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

section[data-section-id="69baee0a0909bd79f56324b3"] .list-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Image: break out of card padding, flush top/left/right.
   Squarespace uses position:absolute + padding-bottom aspect ratio.
   We override the image to position:static so it sizes naturally,
   then use negative margins + calc width to fill the card. */
section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-media {
  margin: -20px -20px 0 -20px !important;
  width: calc(100% + 40px) !important;
  border: none !important;
  border-radius: 0 !important;
}

section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-media-inner {
  overflow: hidden !important;
  border-radius: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 0 !important;
  position: relative !important;
}

section[data-section-id="69baee0a0909bd79f56324b3"] .list-image {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  border-radius: 0 !important;
  border: none !important;
  object-fit: cover !important;
  aspect-ratio: 3 / 2 !important;
}

/* Title: bold + larger, space above and below */
section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__title {
  font-weight: 700 !important;
  font-size: 1.35em !important;
  margin-top: 16px !important;
  margin-bottom: 10px !important;
}

/* Bold text (first p): space below before italic */
section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__description p:first-child {
  margin-bottom: 2px !important;
}

/* Italic text: softer gray, tight to bold text above */
section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__description em,
section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__description i {
  color: #9CA3AF !important;
}

section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__description p:nth-child(2) {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
}

/* Normal body text: tighter line height */
section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__description p {
  line-height: 1.45 !important;
  margin-bottom: 4px !important;
}

/* Button: dark #1e2930 with white text, bold */
section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__button {
  background-color: #1e2930 !important;
  color: #fff !important;
  border-color: #1e2930 !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__button:hover {
  background-color: #2a3a44 !important;
  border-color: #2a3a44 !important;
}

/* Arrow icon inside case study buttons */
section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__button .ngin-icon {
  font-size: 18px;
  margin-left: 10px;
  opacity: 0.8;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

section[data-section-id="69baee0a0909bd79f56324b3"] .list-item-content__button:hover .ngin-icon {
  transform: translate(3px, -3px);
  opacity: 1;
}



/* === responsive.css === */
/* ============================================
   NGIN Alliance Playbook — Responsive Overrides
   ============================================ */

/* --- Mobile --- */
@media (max-width: 767px) {
  /* Mobile overrides will be added here */
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .ngin-animate,
  .ngin-animate * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


