.layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8rem;
  padding-top: 0.6rem;
}
/* .layout.layout--single {
} */
.layout .layout-header {
  width: calc(100% - 1.2rem);
  min-height: calc(100vw * 1 / 4);
  align-self: center;
  border-radius: 2.4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.layout .layout-header .layout-header__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(50%);
}
.layout .layout-header .layout-header__content {
  position: relative;
  z-index: 10;
  padding: 8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.layout .layout-header .layout-header__title {
  font-size: 5.2rem;
  line-height: 1.2;
  max-width: 80rem;
  font-weight: 400;
  color: #fff;
}
.layout .layout-content {
  padding: 0 8rem;
}
.layout .editor-content {
  width: 100%;
}

/*  */

@media (max-width: 768px) {
  .layout {
    gap: 4.8rem;
  }
  .layout .layout-header {
    min-height: calc(100vw * 1 / 2.5);
  }
  .layout .layout-header .layout-header__content {
    padding: 4.8rem 2.6rem;
  }
  .layout .layout-header .layout-header__title {
    font-size: 3.6rem;
    max-width: unset;
  }
  .layout .layout-content {
    padding: 0 0.6rem;
  }
  .layout .editor-content {
    max-width: unset;
  }
}
