.npb-page,
.npb-page * {
  box-sizing: border-box;
}

.npb-page {
  --npb-primary: #3157d5;
  --npb-secondary: #5f6877;
  --npb-bg-light: #f5f7fa;
  --npb-bg-dark: #1f2937;
  --npb-text-dark: #20262e;
}

.npb-section > div {
  width: 100%;
}

.npb-container {
  width: min(100% - 2rem, var(--npb-container-width, 1200px));
  margin-inline: auto;
}

.npb-container-fluid {
  width: 100%;
  padding-inline: 1rem;
}

.npb-container-narrow { max-width: var(--npb-container-narrow, 820px); }
.npb-container-wide { max-width: var(--npb-container-wide, 1500px); }

.npb-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.npb-column {
  grid-column: span var(--npb-span-desktop, 12);
  min-width: 0;
}

.npb-heading:first-child,
.npb-text:first-child,
.npb-quote:first-child,
.npb-list:first-child,
.npb-image:first-child,
.npb-video:first-child,
.npb-icon:first-child {
  margin-top: 0;
}

.npb-heading-size-small { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.npb-heading-size-medium { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.npb-heading-size-large { font-size: clamp(2.25rem, 5vw, 4rem); }
.npb-heading-size-display { font-size: clamp(3rem, 8vw, 7rem); line-height: .95; }
.npb-heading-weight-normal { font-weight: 400; }
.npb-heading-weight-semibold { font-weight: 600; }
.npb-heading-weight-bold { font-weight: 700; }
.npb-margin-bottom-none { margin-bottom: 0; }
.npb-margin-bottom-small { margin-bottom: .5rem; }
.npb-margin-bottom-medium { margin-bottom: 1rem; }
.npb-margin-bottom-large { margin-bottom: 2rem; }

.npb-text-width-narrow { max-width: 42rem; }
.npb-text-width-medium { max-width: 58rem; }
.npb-text-width-full { max-width: none; }
.npb-align-center.npb-text-width-narrow,
.npb-align-center.npb-text-width-medium { margin-inline: auto; }
.npb-align-right.npb-text-width-narrow,
.npb-align-right.npb-text-width-medium { margin-left: auto; }

.npb-button {
  display: inline-block;
  padding: .75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: .35rem;
  text-decoration: none;
  transition: opacity .15s ease, transform .15s ease;
}

.npb-button:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.npb-button-small { padding: .5rem .85rem; font-size: .9em; }
.npb-button-large { padding: 1rem 1.5rem; font-size: 1.1em; }
.npb-button-primary { background: var(--npb-primary); color: #fff; }
.npb-button-secondary { background: var(--npb-secondary); color: #fff; }
.npb-button-outline { border-color: currentColor; background: transparent; color: var(--npb-primary); }
.npb-button-link { padding-inline: 0; background: transparent; color: inherit; text-decoration: underline; }
.npb-button-full { display: block; width: 100%; text-align: center; }

.npb-quote {
  margin: 1.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--npb-primary);
}

.npb-quote p { margin: 0; font-size: 1.15em; }
.npb-quote cite { display: block; margin-top: .75rem; font-style: normal; opacity: .72; }
.npb-quote-highlight { border-left: 0; border-radius: .5rem; background: var(--npb-bg-light); }
.npb-quote-minimal { padding: 0; border-left: 0; }

.npb-list { padding-left: 1.4em; }
.npb-list-check { list-style: none; padding-left: 0; }
.npb-list-check li { position: relative; padding-left: 1.6em; }
.npb-list-check li::before { position: absolute; left: 0; content: '✓'; color: var(--npb-primary); font-weight: 700; }

.npb-divider {
  height: 0;
  margin-block: 0;
  border: 0;
  border-top-color: currentColor;
  opacity: .35;
}

.npb-image,
.npb-video {
  display: block;
  margin-block: 0 1.25rem;
  overflow: hidden;
}

.npb-image img,
.npb-video iframe,
.npb-video video {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}

.npb-image-link {
  display: block;
  color: inherit;
}

.npb-image.npb-aspect-square > img,
.npb-image.npb-aspect-square > .npb-image-link,
.npb-video.npb-aspect-square { aspect-ratio: 1; }
.npb-image.npb-aspect-portrait > img,
.npb-image.npb-aspect-portrait > .npb-image-link,
.npb-video.npb-aspect-portrait { aspect-ratio: 3 / 4; }
.npb-image.npb-aspect-landscape > img,
.npb-image.npb-aspect-landscape > .npb-image-link { aspect-ratio: 4 / 3; }
.npb-image.npb-aspect-wide > img,
.npb-image.npb-aspect-wide > .npb-image-link,
.npb-video.npb-aspect-wide { aspect-ratio: 21 / 9; }
.npb-video.npb-aspect-video { aspect-ratio: 16 / 9; }

.npb-image.npb-aspect-square > .npb-image-link img,
.npb-image.npb-aspect-portrait > .npb-image-link img,
.npb-image.npb-aspect-landscape > .npb-image-link img,
.npb-image.npb-aspect-wide > .npb-image-link img,
.npb-image.npb-aspect-square > img,
.npb-image.npb-aspect-portrait > img,
.npb-image.npb-aspect-landscape > img,
.npb-image.npb-aspect-wide > img,
.npb-video iframe,
.npb-video video {
  width: 100%;
  height: 100%;
}

.npb-fit-cover img { object-fit: cover; }
.npb-fit-contain img { object-fit: contain; }

.npb-image figcaption {
  padding-top: .55rem;
  font-size: .9em;
  opacity: .72;
}

.npb-media-width-narrow { max-width: 32rem; }
.npb-media-width-medium { max-width: 48rem; }
.npb-media-width-wide { max-width: 72rem; }
.npb-media-width-full { max-width: none; }
.npb-align-center.npb-media-width-narrow,
.npb-align-center.npb-media-width-medium,
.npb-align-center.npb-media-width-wide { margin-inline: auto; }
.npb-align-right.npb-media-width-narrow,
.npb-align-right.npb-media-width-medium,
.npb-align-right.npb-media-width-wide { margin-left: auto; }

.npb-radius-small { border-radius: .4rem; }
.npb-radius-medium { border-radius: .8rem; }
.npb-radius-large { border-radius: 1.4rem; }
.npb-radius-pill { border-radius: 999px; }
.npb-shadow-small { box-shadow: 0 5px 18px rgba(0, 0, 0, .08); }
.npb-shadow-medium { box-shadow: 0 12px 36px rgba(0, 0, 0, .12); }
.npb-shadow-large { box-shadow: 0 24px 70px rgba(0, 0, 0, .18); }

.npb-icon {
  position: relative;
  display: block;
  height: 100%;
  padding: 1.6rem;
  color: inherit;
  text-decoration: none;
}

.npb-icon-style-plain { padding-inline: 0; }
.npb-icon-style-soft { background: var(--npb-bg-light); color: var(--npb-text-dark); }
.npb-icon-style-outline { border: 1px solid rgba(127, 127, 127, .25); }
.npb-icon-style-primary { background: var(--npb-primary); color: #fff; }

.npb-icon-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--npb-primary) 13%, transparent);
  color: var(--npb-primary);
}

.npb-icon-style-primary .npb-icon-mark {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.npb-icon-mark svg,
.npb-icon-arrow svg {
  display: block;
  width: 56%;
  height: 56%;
  fill: currentColor;
}

.npb-icon-size-small { width: 2.25rem; height: 2.25rem; }
.npb-icon-size-large { width: 4rem; height: 4rem; }
.npb-icon-size-xlarge { width: 5.25rem; height: 5.25rem; }
.npb-icon-title { margin: 0 0 .6rem; color: inherit; }
.npb-icon-body > :first-child { margin-top: 0; }
.npb-icon-body > :last-child { margin-bottom: 0; }
.npb-icon-arrow { display: inline-flex; width: 1.4rem; margin-top: 1rem; color: var(--npb-primary); }
.npb-icon-style-primary .npb-icon-arrow { color: #fff; }

.npb-align-left { text-align: left; }
.npb-align-center { text-align: center; }
.npb-align-right { text-align: right; }
.npb-gap-xlarge { --bs-gutter-x: 6rem; --bs-gutter-y: 6rem; }

@media (min-width: 901px) {
  .npb-hide-desktop { display: none !important; }
}

@media (max-width: 900px) {
  .npb-column { grid-column: span var(--npb-span-tablet, 12); }
}

@media (min-width: 601px) and (max-width: 900px) {
  .npb-hide-tablet { display: none !important; }
}

@media (max-width: 600px) {
  .npb-column { grid-column: span var(--npb-span-mobile, 12); }
  .npb-hide-mobile { display: none !important; }
}

/* 0.8.0 built-in content and interactive blocks */
.npb-component-heading {
  margin: 0 0 1rem;
}

.npb-component-intro {
  max-width: 62rem;
  margin: 0 0 1.5rem;
}

.npb-component-intro > :first-child,
.npb-card-body > :first-child,
.npb-slide-body > :first-child,
.npb-accordion-content > :first-child,
.npb-tab-panels > [role="tabpanel"] > :first-child {
  margin-top: 0;
}

.npb-component-intro > :last-child,
.npb-card-body > :last-child,
.npb-slide-body > :last-child,
.npb-accordion-content > :last-child,
.npb-tab-panels > [role="tabpanel"] > :last-child {
  margin-bottom: 0;
}

.npb-component-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .7rem 1rem;
  border: 1px solid transparent;
  border-radius: .45rem;
  text-decoration: none;
  font-weight: 650;
}

.npb-component-button-primary {
  background: var(--npb-primary);
  color: #fff;
}

.npb-component-button-secondary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

/* Accordion */
.npb-accordion-items {
  display: grid;
  gap: .75rem;
}

.npb-accordion-item {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  border-radius: .65rem;
  background: color-mix(in srgb, currentColor 3%, transparent);
}

.npb-accordion-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.npb-accordion-item > summary::-webkit-details-marker {
  display: none;
}

.npb-accordion-item > summary span {
  position: relative;
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
}

.npb-accordion-item > summary span::before,
.npb-accordion-item > summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .85rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: '';
  transform: translate(-50%, -50%);
  transition: transform .18s ease;
}

.npb-accordion-item > summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.npb-accordion-item[open] > summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.npb-accordion-content {
  padding: 0 1.1rem 1.1rem;
}

/* Tabs */
.npb-tab-list {
  display: flex;
  gap: .35rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  padding-bottom: .25rem;
  scrollbar-width: thin;
}

.npb-tab-list [role="tab"] {
  flex: 0 0 auto;
  padding: .7rem 1rem;
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  border-radius: .45rem;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.npb-tab-list [role="tab"][aria-selected="true"] {
  border-color: var(--npb-primary);
  background: var(--npb-primary);
  color: #fff;
}

.npb-tab-panels > [role="tabpanel"] {
  padding: 1.2rem;
  border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  border-radius: .65rem;
}

/* Generic slider and hero slider */
.npb-slider {
  position: relative;
  overflow: hidden;
}

.npb-slider-track {
  position: relative;
}

.npb-slider [data-npb-slide][hidden] {
  display: none !important;
}

.npb-hero-slider {
  min-height: min(78vh, 760px);
  border-radius: .8rem;
  background: var(--npb-bg-dark);
  color: #fff;
}

.npb-hero-slider .npb-slider-track,
.npb-hero-slider .npb-slide {
  min-height: inherit;
}

.npb-hero-slider .npb-slide {
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  min-height: inherit;
  padding: clamp(3rem, 8vw, 7rem) clamp(1.25rem, 7vw, 6rem);
}

.npb-slide-media,
.npb-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.npb-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.npb-slide-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 18, 31, .86), rgba(10, 18, 31, .24));
}

.npb-slide-content {
  width: min(100%, 52rem);
}

.npb-slide-kicker,
.npb-card-kicker {
  display: inline-block;
  margin-bottom: .65rem;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.npb-slide-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  line-height: 1;
}

.npb-slide-body {
  max-width: 44rem;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.npb-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.npb-slider-arrow,
.npb-carousel-arrow {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, Canvas 84%, transparent);
  color: CanvasText;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.npb-slider-prev,
.npb-carousel-prev {
  left: 1rem;
}

.npb-slider-next,
.npb-carousel-next {
  right: 1rem;
}

.npb-slider-prev,
.npb-slider-next {
  top: 50%;
  transform: translateY(-50%);
}

.npb-slider-dots,
.npb-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}

.npb-slider-dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 4;
}

.npb-slider-dot,
.npb-carousel-dot {
  width: .7rem;
  height: .7rem;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: .7;
}

.npb-slider-dot.is-active,
.npb-carousel-dot.is-active {
  background: currentColor;
  opacity: 1;
}

/* Cards */
.npb-card-grid,
.npb-gallery,
.npb-listing-grid {
  display: grid;
  gap: 1.25rem;
}

.npb-cols-1 { grid-template-columns: minmax(0, 1fr); }
.npb-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.npb-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.npb-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.npb-card,
.npb-listing-card {
  overflow: hidden;
  min-width: 0;
  border-radius: .7rem;
  background: color-mix(in srgb, currentColor 4%, transparent);
}

.npb-card-image,
.npb-listing-image,
.npb-listing-image img {
  display: block;
  width: 100%;
}

.npb-card-image,
.npb-listing-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.npb-card-content,
.npb-listing-card-content {
  padding: 1.15rem;
}

.npb-card-content h3,
.npb-listing-card-content h3 {
  margin: 0 0 .65rem;
}

.npb-card-link,
.npb-listing-link {
  display: inline-flex;
  margin-top: .85rem;
  font-weight: 650;
}

.npb-card-style-soft {
  background: var(--npb-bg-light);
  color: var(--npb-text-dark);
}

.npb-card-style-outline {
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  background: transparent;
}

.npb-card-style-plain {
  background: transparent;
}

/* Horizontal carousel */
.npb-carousel {
  position: relative;
  padding-inline: 3.4rem;
}

.npb-carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}

.npb-carousel-item {
  flex: 0 0 min(82vw, 22rem);
  scroll-snap-align: start;
}

.npb-carousel-prev,
.npb-carousel-next {
  top: 50%;
  transform: translateY(-50%);
}

.npb-carousel-arrow:disabled {
  cursor: default;
  opacity: .3;
}

.npb-carousel-dots {
  margin-top: 1rem;
}

/* Testimonials */
.npb-testimonial-slider {
  padding-inline: 4rem;
}

.npb-testimonial {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.npb-testimonial > img {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.npb-testimonial blockquote {
  max-width: 54rem;
  margin: 0 auto 1rem;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
}

.npb-testimonial figcaption span {
  display: block;
  margin-top: .2rem;
  opacity: .7;
}

.npb-testimonial-slider .npb-slider-dots {
  position: static;
  color: inherit;
}

/* Gallery */
.npb-gallery-item {
  margin: 0;
}

.npb-gallery-item a,
.npb-gallery-item img {
  display: block;
  width: 100%;
}

.npb-gallery-item img {
  aspect-ratio: 4 / 3;
  border-radius: .55rem;
  object-fit: cover;
}

.npb-gallery-item figcaption {
  padding-top: .5rem;
  font-size: .9rem;
  opacity: .72;
}

/* Dynamic ProcessWire page/blog listing */
.npb-listing-list {
  display: grid;
  gap: 1rem;
}

.npb-listing-list .npb-listing-card {
  display: grid;
  grid-template-columns: minmax(12rem, 32%) minmax(0, 1fr);
}

.npb-listing-image {
  overflow: hidden;
}

.npb-listing-image.npb-aspect-square { aspect-ratio: 1; }
.npb-listing-image.npb-aspect-landscape { aspect-ratio: 4 / 3; }
.npb-listing-image.npb-aspect-wide { aspect-ratio: 16 / 9; }
.npb-listing-image[class*="npb-aspect-"] img { height: 100%; object-fit: cover; }
.npb-listing-date { display: block; margin-bottom: .55rem; font-size: .85rem; opacity: .68; }
.npb-listing-summary { margin: 0; }
.npb-listing-empty { padding: 1rem; border: 1px dashed color-mix(in srgb, currentColor 24%, transparent); border-radius: .55rem; }

@media (max-width: 900px) {
  .npb-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .npb-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .npb-cols-2,
  .npb-cols-3,
  .npb-cols-4 { grid-template-columns: minmax(0, 1fr); }

  .npb-listing-list .npb-listing-card { grid-template-columns: minmax(0, 1fr); }
  .npb-carousel { padding-inline: 0; }
  .npb-carousel-arrow { display: none; }
  .npb-carousel-item { flex-basis: min(88vw, 22rem); }
  .npb-hero-slider .npb-slider-arrow { width: 2.35rem; height: 2.35rem; }
  .npb-slider-prev { left: .45rem; }
  .npb-slider-next { right: .45rem; }
  .npb-testimonial-slider { padding-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .npb-carousel-track { scroll-behavior: auto; }
  .npb-accordion-item > summary span::after { transition: none; }
}

/* Additional ready-made blocks */
.npb-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: .8rem;
  background: var(--npb-bg-light);
  color: var(--npb-text-dark);
}
.npb-cta-content { max-width: 54rem; }
.npb-cta-kicker { display: block; margin-bottom: .5rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.npb-cta-body > :first-child { margin-top: 0; }
.npb-cta-body > :last-child { margin-bottom: 0; }
.npb-cta-block > .npb-component-button { flex: 0 0 auto; gap: .45rem; }

.npb-stats-grid,
.npb-team-grid {
  display: grid;
  gap: 1.15rem;
}
.npb-stat {
  padding: 1.35rem;
  border: 1px solid color-mix(in srgb, currentColor 15%, transparent);
  border-radius: .7rem;
  text-align: center;
}
.npb-stat-value { display: block; margin-bottom: .35rem; font-size: clamp(2rem, 5vw, 4rem); line-height: 1; }
.npb-stat h3 { margin: 0 0 .5rem; }
.npb-stat-body > :first-child { margin-top: 0; }
.npb-stat-body > :last-child { margin-bottom: 0; }

.npb-timeline { position: relative; display: grid; gap: 1.2rem; margin: 0; padding: 0; list-style: none; }
.npb-timeline::before { position: absolute; top: .4rem; bottom: .4rem; left: .55rem; width: 2px; background: color-mix(in srgb, currentColor 18%, transparent); content: ''; }
.npb-timeline-item { position: relative; display: grid; grid-template-columns: 1.2rem minmax(0, 1fr); gap: 1rem; }
.npb-timeline-marker { z-index: 1; width: 1.1rem; height: 1.1rem; margin-top: .35rem; border: 3px solid Canvas; border-radius: 50%; background: var(--npb-primary); box-shadow: 0 0 0 1px color-mix(in srgb, currentColor 20%, transparent); }
.npb-timeline-content { padding: 0 0 1rem; }
.npb-timeline-date { display: inline-block; margin-bottom: .35rem; font-size: .85rem; font-weight: 700; opacity: .72; }
.npb-timeline-content h3 { margin: 0 0 .55rem; }
.npb-timeline-content > div > :first-child { margin-top: 0; }
.npb-timeline-content > div > :last-child { margin-bottom: 0; }

.npb-team-card { overflow: hidden; border: 1px solid color-mix(in srgb, currentColor 15%, transparent); border-radius: .7rem; }
.npb-team-card > img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.npb-team-card-content { padding: 1.1rem; }
.npb-team-card h3 { margin: 0; }
.npb-team-role { display: block; margin-top: .2rem; opacity: .7; }
.npb-team-bio { margin-top: .8rem; }
.npb-team-bio > :first-child { margin-top: 0; }
.npb-team-bio > :last-child { margin-bottom: 0; }
.npb-team-link { display: inline-flex; margin-top: .8rem; font-weight: 650; }

.npb-logo-cloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 3rem); }
.npb-logo-item { display: grid; place-items: center; min-width: 7rem; min-height: 4rem; }
.npb-logo-item a { display: grid; place-items: center; }
.npb-logo-item img { display: block; width: auto; max-width: 10rem; height: auto; max-height: 4.5rem; object-fit: contain; }

@media (max-width: 700px) {
  .npb-cta-block { align-items: stretch; flex-direction: column; }
  .npb-cta-block > .npb-component-button { align-self: flex-start; }
}

/* 0.13.0 responsive per-element overrides */
@media (min-width: 901px) {
  .npb-r-desktop-mt-xsmall { margin-top: .35rem !important; }
  .npb-r-desktop-mt-small { margin-top: .75rem !important; }
  .npb-r-desktop-mt-medium { margin-top: 1.5rem !important; }
  .npb-r-desktop-mt-large { margin-top: 3rem !important; }
  .npb-r-desktop-mt-xlarge { margin-top: 5rem !important; }
  .npb-r-desktop-mb-xsmall { margin-bottom: .35rem !important; }
  .npb-r-desktop-mb-small { margin-bottom: .75rem !important; }
  .npb-r-desktop-mb-medium { margin-bottom: 1.5rem !important; }
  .npb-r-desktop-mb-large { margin-bottom: 3rem !important; }
  .npb-r-desktop-mb-xlarge { margin-bottom: 5rem !important; }
  .npb-r-desktop-align-left { text-align: left !important; }
  .npb-r-desktop-align-center { text-align: center !important; }
  .npb-r-desktop-align-right { text-align: right !important; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .npb-r-tablet-mt-xsmall { margin-top: .35rem !important; }
  .npb-r-tablet-mt-small { margin-top: .75rem !important; }
  .npb-r-tablet-mt-medium { margin-top: 1.5rem !important; }
  .npb-r-tablet-mt-large { margin-top: 3rem !important; }
  .npb-r-tablet-mt-xlarge { margin-top: 5rem !important; }
  .npb-r-tablet-mb-xsmall { margin-bottom: .35rem !important; }
  .npb-r-tablet-mb-small { margin-bottom: .75rem !important; }
  .npb-r-tablet-mb-medium { margin-bottom: 1.5rem !important; }
  .npb-r-tablet-mb-large { margin-bottom: 3rem !important; }
  .npb-r-tablet-mb-xlarge { margin-bottom: 5rem !important; }
  .npb-r-tablet-align-left { text-align: left !important; }
  .npb-r-tablet-align-center { text-align: center !important; }
  .npb-r-tablet-align-right { text-align: right !important; }
}
@media (max-width: 600px) {
  .npb-r-mobile-mt-xsmall { margin-top: .35rem !important; }
  .npb-r-mobile-mt-small { margin-top: .75rem !important; }
  .npb-r-mobile-mt-medium { margin-top: 1.5rem !important; }
  .npb-r-mobile-mt-large { margin-top: 3rem !important; }
  .npb-r-mobile-mt-xlarge { margin-top: 5rem !important; }
  .npb-r-mobile-mb-xsmall { margin-bottom: .35rem !important; }
  .npb-r-mobile-mb-small { margin-bottom: .75rem !important; }
  .npb-r-mobile-mb-medium { margin-bottom: 1.5rem !important; }
  .npb-r-mobile-mb-large { margin-bottom: 3rem !important; }
  .npb-r-mobile-mb-xlarge { margin-bottom: 5rem !important; }
  .npb-r-mobile-align-left { text-align: left !important; }
  .npb-r-mobile-align-center { text-align: center !important; }
  .npb-r-mobile-align-right { text-align: right !important; }
}
@media (min-width: 901px) {
  .npb-r-desktop-order-1 { order: 1 !important; }
  .npb-r-desktop-order-2 { order: 2 !important; }
  .npb-r-desktop-order-3 { order: 3 !important; }
  .npb-r-desktop-order-4 { order: 4 !important; }
  .npb-r-desktop-order-5 { order: 5 !important; }
  .npb-r-desktop-order-6 { order: 6 !important; }
  .npb-r-desktop-order-7 { order: 7 !important; }
  .npb-r-desktop-order-8 { order: 8 !important; }
  .npb-r-desktop-order-9 { order: 9 !important; }
  .npb-r-desktop-order-10 { order: 10 !important; }
  .npb-r-desktop-order-11 { order: 11 !important; }
  .npb-r-desktop-order-12 { order: 12 !important; }
  .npb-r-desktop-order-13 { order: 13 !important; }
  .npb-r-desktop-order-14 { order: 14 !important; }
  .npb-r-desktop-order-15 { order: 15 !important; }
  .npb-r-desktop-order-16 { order: 16 !important; }
  .npb-r-desktop-order-17 { order: 17 !important; }
  .npb-r-desktop-order-18 { order: 18 !important; }
  .npb-r-desktop-order-19 { order: 19 !important; }
  .npb-r-desktop-order-20 { order: 20 !important; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .npb-r-tablet-order-1 { order: 1 !important; }
  .npb-r-tablet-order-2 { order: 2 !important; }
  .npb-r-tablet-order-3 { order: 3 !important; }
  .npb-r-tablet-order-4 { order: 4 !important; }
  .npb-r-tablet-order-5 { order: 5 !important; }
  .npb-r-tablet-order-6 { order: 6 !important; }
  .npb-r-tablet-order-7 { order: 7 !important; }
  .npb-r-tablet-order-8 { order: 8 !important; }
  .npb-r-tablet-order-9 { order: 9 !important; }
  .npb-r-tablet-order-10 { order: 10 !important; }
  .npb-r-tablet-order-11 { order: 11 !important; }
  .npb-r-tablet-order-12 { order: 12 !important; }
  .npb-r-tablet-order-13 { order: 13 !important; }
  .npb-r-tablet-order-14 { order: 14 !important; }
  .npb-r-tablet-order-15 { order: 15 !important; }
  .npb-r-tablet-order-16 { order: 16 !important; }
  .npb-r-tablet-order-17 { order: 17 !important; }
  .npb-r-tablet-order-18 { order: 18 !important; }
  .npb-r-tablet-order-19 { order: 19 !important; }
  .npb-r-tablet-order-20 { order: 20 !important; }
}
@media (max-width: 600px) {
  .npb-r-mobile-order-1 { order: 1 !important; }
  .npb-r-mobile-order-2 { order: 2 !important; }
  .npb-r-mobile-order-3 { order: 3 !important; }
  .npb-r-mobile-order-4 { order: 4 !important; }
  .npb-r-mobile-order-5 { order: 5 !important; }
  .npb-r-mobile-order-6 { order: 6 !important; }
  .npb-r-mobile-order-7 { order: 7 !important; }
  .npb-r-mobile-order-8 { order: 8 !important; }
  .npb-r-mobile-order-9 { order: 9 !important; }
  .npb-r-mobile-order-10 { order: 10 !important; }
  .npb-r-mobile-order-11 { order: 11 !important; }
  .npb-r-mobile-order-12 { order: 12 !important; }
  .npb-r-mobile-order-13 { order: 13 !important; }
  .npb-r-mobile-order-14 { order: 14 !important; }
  .npb-r-mobile-order-15 { order: 15 !important; }
  .npb-r-mobile-order-16 { order: 16 !important; }
  .npb-r-mobile-order-17 { order: 17 !important; }
  .npb-r-mobile-order-18 { order: 18 !important; }
  .npb-r-mobile-order-19 { order: 19 !important; }
  .npb-r-mobile-order-20 { order: 20 !important; }
}


/* Progressive page/blog listing ------------------------------------------ */
.npb-listing-card[hidden] {
  display: none !important;
}
.npb-listing-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.npb-listing-more {
  appearance: none;
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  border-radius: .5rem;
  background: transparent;
  color: inherit;
  padding: .7rem 1.15rem;
  font: inherit;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
}
.npb-listing-more:hover,
.npb-listing-more:focus-visible {
  border-color: currentColor;
  background: color-mix(in srgb, currentColor 7%, transparent);
}
.npb-listing-more:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}


/* Privacy-friendly poster for external video ----------------------------- */
.npb-video-poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: #111;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.npb-video-poster > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.npb-video-poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.58));
}
.npb-video-poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #111;
  transform: translate(-50%, -50%);
  box-shadow: 0 .75rem 2rem rgba(0,0,0,.28);
  transition: transform .2s ease, background-color .2s ease;
}
.npb-video-poster-play svg { width: 1.3rem; height: 1.3rem; margin-left: .15rem; }
.npb-video-poster-title {
  position: absolute;
  right: 1rem;
  bottom: .85rem;
  left: 1rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,.75);
}
.npb-video-poster:hover > img { transform: scale(1.02); }
.npb-video-poster:hover .npb-video-poster-play,
.npb-video-poster:focus-visible .npb-video-poster-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.npb-video-poster:focus-visible { outline: 3px solid var(--npb-primary); outline-offset: -3px; }
@media (prefers-reduced-motion: reduce) {
  .npb-video-poster > img,
  .npb-video-poster-play { transition: none; }
}

/* 0.18.0 semantic navigation, table of contents and search */
.npb-page .npb-heading[id]{scroll-margin-top:clamp(5rem,10vh,8rem)}
.npb-breadcrumbs{font-size:.92rem}
.npb-breadcrumbs ol{display:flex;flex-wrap:wrap;align-items:center;gap:.4rem;margin:0;padding:0;list-style:none}
.npb-breadcrumbs a,.npb-breadcrumbs span{display:inline-flex;align-items:center;min-height:2rem}
.npb-breadcrumbs a{text-decoration:none;color:var(--npb-primary)}
.npb-breadcrumbs a:hover{text-decoration:underline}
.npb-breadcrumbs [aria-current="page"]{color:inherit;font-weight:650}
.npb-breadcrumb-separator{min-height:0!important;opacity:.55;user-select:none}
.npb-breadcrumbs-style-pills li>a,.npb-breadcrumbs-style-pills li>span:not(.npb-breadcrumb-separator){padding:.35rem .7rem;border-radius:999px;background:color-mix(in srgb,var(--npb-primary) 8%,transparent)}
.npb-breadcrumbs-style-compact{font-size:.84rem}
.npb-breadcrumbs-style-compact ol{gap:.25rem}
.npb-table-of-contents{--npb-toc-indent:1rem}
.npb-table-of-contents .npb-toc-title{margin:0 0 .75rem;font-weight:700}
.npb-table-of-contents ul,.npb-table-of-contents ol{display:grid;gap:.45rem;margin:0;padding-inline-start:1.25rem}
.npb-table-of-contents li{margin:0}
.npb-table-of-contents a{text-decoration:none;color:inherit}
.npb-table-of-contents a:hover{text-decoration:underline;color:var(--npb-primary)}
.npb-table-of-contents .npb-toc-level-3{margin-inline-start:var(--npb-toc-indent)}
.npb-table-of-contents .npb-toc-level-4{margin-inline-start:calc(var(--npb-toc-indent) * 2)}
.npb-table-of-contents .npb-toc-level-5{margin-inline-start:calc(var(--npb-toc-indent) * 3)}
.npb-table-of-contents .npb-toc-level-6{margin-inline-start:calc(var(--npb-toc-indent) * 4)}
.npb-toc-style-boxed{padding:1rem 1.15rem;border:1px solid color-mix(in srgb,currentColor 15%,transparent);border-radius:.75rem;background:color-mix(in srgb,var(--npb-primary) 4%,transparent)}
.npb-toc-style-minimal{font-size:.92rem}
.npb-toc-empty{margin:0;color:var(--npb-secondary)}
.npb-search-form{display:flex;align-items:stretch;gap:.6rem;margin:0}
.npb-search-form input[type="search"]{min-width:0;flex:1;width:100%;border:1px solid color-mix(in srgb,currentColor 22%,transparent);border-radius:.55rem;background:var(--npb-surface,#fff);color:inherit;font:inherit;line-height:1.3}
.npb-search-size-small input[type="search"]{padding:.5rem .7rem}
.npb-search-size-medium input[type="search"]{padding:.7rem .85rem}
.npb-search-size-large input[type="search"]{padding:.9rem 1rem;font-size:1.08rem}
.npb-search-style-stacked{flex-direction:column;align-items:stretch}
.npb-search-style-compact{gap:.35rem}
.npb-search-style-compact input[type="search"]{border-radius:999px}
.npb-search-style-compact .npb-button{border-radius:999px}
.npb-visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
@media (max-width:640px){.npb-search-form{flex-direction:column}.npb-search-form .npb-button{width:100%}.npb-table-of-contents .npb-toc-level-4,.npb-table-of-contents .npb-toc-level-5,.npb-table-of-contents .npb-toc-level-6{margin-inline-start:var(--npb-toc-indent)}}

/* A/B testing: without JavaScript, visitors see variant A only. */
[data-npb-ab-group][data-npb-ab-variant="b"]:not([data-npb-ab-shown]) { display: none; }

/* Scaffolded custom element markup ------------------------------------------
   Generated element definitions use predictable class names. These defaults
   make an image repeater (gallery, slider, logo strip) render as a responsive
   grid straight away, and keep configuration fields out of the visible flow. */
.npb-custom-element [hidden] { display: none !important; }

.npb-repeater-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.npb-custom-element[data-columns="1"] .npb-repeater-images,
.npb-custom-element .npb-field-columns[data-columns="1"] ~ .npb-repeater-images { grid-template-columns: minmax(0, 1fr); }
.npb-custom-element[data-columns="2"] .npb-repeater-images { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.npb-custom-element[data-columns="3"] .npb-repeater-images { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.npb-custom-element[data-columns="4"] .npb-repeater-images { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.npb-repeater-images .npb-repeater-item { margin: 0; }
.npb-repeater-images .npb-repeater-item img,
.npb-repeater-images .npb-repeater-item figure img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}
.npb-repeater-images .npb-repeater-item figure { margin: 0; }
.npb-repeater-images .npb-repeater-item > strong:empty { display: none; }
.npb-repeater-caption {
  display: block;
  margin-top: 5px;
  font-size: .875em;
  line-height: 1.4;
  opacity: .8;
}

@media (max-width: 700px) {
  .npb-custom-element[data-columns="3"] .npb-repeater-images,
  .npb-custom-element[data-columns="4"] .npb-repeater-images { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
