body {
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 1rem;
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 2rem;
}

.n-container {
  max-width: var(--n-max-width, 1360px);
  width: 100%;
  margin: 0 auto;
}

.layout-container,
.page-content {
  margin: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.n-title,
.title {
  font-size: 1.8rem;
  line-height: normal;
  margin: 0;
  font-weight: 500;
}

.layout-content.n-container {
  padding: 50px 0;
}

.n-site-header-wrapper {
  position: relative;
  width: 100%;
}

body.path-frontpage .n-site-header-wrapper {
  background-color: var(--n-color-cream);
}

.n-site-header-sentinel {
  height: 1px;
  width: 100%;
}

.n-site-header {
  width: auto;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.region-breadcrumb {
  min-height: unset;
}

.n-site-header--fixed {
  max-width: unset;
  position: fixed;
  top: var(--drupal-displace-offset-top, 0px);
  left: var(--drupal-displace-offset-left, 0px);
  right: var(--drupal-displace-offset-right, 0px);
  width: 100%;
  z-index: 500;
  animation: ndHeaderSlideIn 0.35s ease-out;
}
.n-site-header--fixed > * {
  width: 100%;
  max-width: var(--n-max-width, 1360px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .n-site-header--fixed {
    top: 0;
  }
}

.n-site-header--white {
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@keyframes ndHeaderSlideIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .n-site-header--fixed {
    animation: none;
  }
}
.field--name-field-blocks {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 50px 0;
}

.n-footer {
  background: var(--n-color-dark, #242323);
  color: var(--n-color-white, #ffffff);
  margin-top: 50px;
  padding: clamp(1.4rem, 3vw, 2rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.n-footer a {
  color: inherit;
}
.n-footer__inner {
  max-width: var(--n-max-width, 1360px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.4vw, 1.4rem);
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(220px, 1fr) minmax(280px, 1.4fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
}
.n-footer__brand {
  display: flex;
  align-items: flex-start;
}
.n-footer__logo-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}
.n-footer__logo-image {
  height: auto;
  max-height: 44px;
  width: auto;
  max-width: 100%;
}
.n-footer__nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.15rem;
}
.n-footer__nav .menu-item {
  margin: 0;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.n-footer__nav .menu-item:last-child {
  border-bottom: 0;
}
.n-footer__nav a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, transform 0.2s ease;
}
.n-footer__nav a:hover, .n-footer__nav a:focus {
  color: var(--n-color-cream, #fef1e1);
  text-decoration: underline;
  transform: translateX(2px);
}
.n-footer__nav a:focus-visible {
  outline: 2px solid var(--n-color-white, #ffffff);
  outline-offset: 2px;
}
.n-footer__legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.n-footer__legal-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--n-color-white, #ffffff);
}
.n-footer__legal-content {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  opacity: 0.92;
}
.n-footer__legal-content p {
  margin: 0 0 0.5rem;
}
.n-footer__bottom {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.n-footer__bottom-inner {
  max-width: var(--n-max-width, 1360px);
  margin: 0 auto;
  padding: 0.75rem clamp(1rem, 2.4vw, 1.4rem) 1rem;
}
.n-footer__copyright {
  font-size: 0.8rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 960px) {
  .n-footer__inner {
    grid-template-columns: 1fr;
  }
  .n-footer__legal-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=layout.css.map */
