/******* Do not edit this file *******
Code Snippets Manager
Saved: Oct 15 2025 | 05:53:16 */
/* ==========================================================================
   2. Header Styles
   ========================================================================== */
/* Create space for the reading progress bar */
header.wp-block-template-part {
  padding-top: 4px;
}
@media (min-width: 768px) {
  header.wp-block-template-part {
    padding-top: 8px;
  }
}
/* ==========================================================================
   3. Desktop Navigation Styles
   ========================================================================== */
/* This rule applies the shared underline effect to BOTH link types */
.gs-top-level-item, .mega-menu__link {
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.3s cubic-bezier(0.33, 1, 0.68, 1), background-position 0s 0.3s;
}
/* This rule ONLY targets the mega menu links to fix their underline width */
.mega-menu__link {
  display: inline-block !important;
}
/* --- Underline Position & Hover Effects --- */
.gs-top-level-item {
  background-position: 0 calc(100% - 16px);
}
.mega-menu__link {
  background-position: 0 calc(100% - 6px);
}
.gs-top-level-item:hover, .mega-menu__link:hover {
  background-size: 100% 1px;
  background-position: 100% inherit;
}
/* ==========================================================================
   4. Mobile Navigation (Scoped Styles)
   ========================================================================== */
.mobile-nav {
  background: transparent;
  width: 100%;
  max-width: 100%;
  font-family: "AC Sans", sans-serif;
}
/* --- Underline Effects --- */
.mobile-nav .nav-toggle-text, .mobile-nav .nav-links a span, .mobile-nav .nav-direct-link span {
  display: inline-block;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left bottom;
  transition: background-size 0.3s ease;
}
.mobile-nav .nav-toggle:hover .nav-toggle-text, .mobile-nav .nav-links a:hover span, .mobile-nav .nav-direct-link:hover span {
  background-size: 100% 1px;
}
/* --- Accordion Toggle Buttons --- */
.mobile-nav .nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--menu-text);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.mobile-nav .nav-toggle-h2 {
  font-size: 28px;
  padding: 7px 4px 9px 0px;
}
.mobile-nav .nav-toggle-h2 .nav-toggle-text {
  background-position: left calc(100% - 2px);
}
.mobile-nav .nav-toggle-h4 {
  font-size: 16px;
  padding: 8px 4px 8px 0px;
  font-weight: 700;
}
.mobile-nav .nav-toggle-h4 .nav-toggle-text {
  opacity: 0.6;
  padding-top: 6px;
}
/* --- Accordion Icon (+/-) --- */
.mobile-nav .nav-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
  margin-left: 15px;
  padding: 0px 0px 4px 0px;
  display: inline-block;
}
.mobile-nav .nav-icon::before, .mobile-nav .nav-icon::after {
  content: "";
  width: 14px;
  height: 2px;
  /* This tells the icon to match the parent button's text color */
  background-color: currentColor !important;
  position: absolute;
  top: 5px;
  left: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.mobile-nav .nav-icon::after {
  transform: rotate(90deg);
}
.mobile-nav .nav-section.active > .nav-toggle .nav-icon::after, .mobile-nav .nav-subsection.active > .nav-toggle .nav-icon::after {
  transform: rotate(0);
  opacity: 0;
}
/* --- Accordion Content Panel --- */
.mobile-nav .nav-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--menu-content-bg);
}
.mobile-nav .nav-section.active > .nav-content, .mobile-nav .nav-subsection.active > .nav-content {
  max-height: 2000px;
  /* Use a single large value for all panels */
}
/* --- Accordion Links & Layout --- */
.mobile-nav .nav-links {
  list-style: none;
  margin-block-start: 0.5em;
  padding-inline-start: 0;
  /* Add this line to remove browser default padding */
}
.mobile-nav .nav-links li {
  margin: 0;
}
.mobile-nav .nav-links a {
  display: block;
  color: var(--menu-text);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  padding: 6px 20px 6px 16px;
}
.mobile-nav .nav-links a span {
  background-position: left calc(100% - 3px);
}
.mobile-nav .nav-subsection {
  margin-left: 0;
}
.mobile-nav .nav-subsection .nav-links a {
  padding-left: 16px;
}
.mobile-nav .nav-subsection:last-child, .mobile-nav .nav-links li:last-child {
  margin-bottom: 24px;
}
/* --- Direct Links (Not in Accordion) --- */
.mobile-nav .nav-direct-link {
  display: block;
  color: var(--menu-text);
  text-decoration: none;
  font-size: 28px;
}
.mobile-nav .nav-direct-link--padded span {
  padding-bottom: 0px;
  background-position: left calc(100% - 10px);
}
/* ==========================================================================
   5. Mobile Search
   ========================================================================== */
.mobile-nav .mobile-search-container {
  background-color: transparent;
  color: var(--wp--preset--color);
}
.mobile-nav .mobile-search-container .wp-block-search__inside-wrapper {
  border-bottom: 1px solid currentColor !important;
  background-color: transparent !important;
  padding: 0 !important;
}
.mobile-nav .mobile-search-container .wp-block-search__input {
  background-color: transparent !important;
  color: inherit !important;
  border: none !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-top: 12px !important;
  padding-bottom: 6px !important;
}
.mobile-nav .mobile-search-container .wp-block-search__button {
  background-color: transparent !important;
}
.mobile-nav .mobile-search-container.search-inverted .wp-block-search__button {
  padding: 0 3px 0 0 !important;
  color: inherit !important;
}
.mobile-nav .mobile-search-container.search-inverted .wp-block-search__button svg {
  width: 16px !important;
  height: 16px !important;
}
/* --- Placeholder Styles --- */
.mobile-nav .mobile-search-container .wp-block-search__input::placeholder {
  font-size: var(--wp--preset--font-size--fluid-regular);
  color: inherit !important;
  opacity: 0.7;
}
body.darkmode .mobile-nav .mobile-search-container .wp-block-search__input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1;
}
/* ==========================================================================
   6. Accessibility & Utility Styles
   ========================================================================== */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: 8px;
  background: #121721;
  color: white;
  text-decoration: none;
}
.skip-nav:focus {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Custom 'clear search' button for WebKit browsers */
.wp-block-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23999999" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" vector-effect="non-scaling-stroke"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>');
  background-repeat: no-repeat;
  background-position: center;
  height: 22px;
  width: 22px;
  transform: translateY(-3px);
  cursor: pointer;
}
/* ==========================================================================
   7. Modal & Panel Styles
   ========================================================================== */
/* Hide the default modal 'X' close button from the plugin */
.gs-dynamicpanel-close {
  display: none !important;
}
/* Hide the main page's scrollbar when the modal is open */
body.gs-panel-open {
  overflow: hidden !important;
}
/* Stop scrollbar flash during closing animation */
#gs-dynamicpanel {
  overflow: hidden;
}
/* Enable scrolling only on the inner content panel when modal is active */
#gs-dynamicpanel.active .gsbp-caf1403 {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* For smooth scrolling on iOS */
}
/* Selects the list item that contains the specific link */
li:has(a[href*="integrated-innovation-hub"]) {
  padding-left: 1rem;
}
