.n3t-page-layout--container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.n3t-page-layout--header {
  width: 100%;
}

.n3t-page-layout--hero-content {
  display: inline-block;
  padding: 1.5rem;
  border-radius: 0/5rem;
  background: var(--dark-grey-o-02);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.6px);
  -webkit-backdrop-filter: blur(5.6px);
}

.n3t-page-layout--no-hero-container .n3t-page-layout--hero-content {
  padding: 0;
}

.n3t-page-layout--hero-container.n3t-page-layout--hero-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.n3t-page-layout--hero-container.full-height {
  padding: min(8vw, 120px) 0;
}

.n3t-page-layout--hero-container.small-height {
  padding: min(4vw, 60px) 0;
}

.n3t-page-layout--hero-container {
  position: relative;
  border-top: 7px solid var(--secondary-color);
}

.n3t-page-layout--hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 25px 25px 0 0;
  border-color: var(--secondary-color) transparent transparent transparent;
  transform: rotate(0deg);
}

.n3t-page-layout--hero {
  max-width: 1440px;
  width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.n3t-page-layout--no-hero-container,
.n3t-page-layout--hero-container {
  margin-bottom: var(--section-vertical-space);
  padding-bottom: var(--section-vertical-space);
  padding-top: var(--section-vertical-space);
  background: var(--light-grey);  
}

.n3t-page-layout--no-hero-container .n3t-page-layout--hero-content {
  background: none;
  box-shadow: none;
}

.n3t-page-layout--content {
  flex: 1;
  max-width: 1440px;
  width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  margin-bottom: var(--section-vertical-space);
}

.n3t-page-layout--footer {
  width: 100%;
}
