.page-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    position: relative;
}
.page__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    position: relative;
    gap: 8rem;
}
.page-intro {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    border-radius: 1.2rem;
    min-height: calc(100vw * 1 / 3);
    height: auto;
    margin-top: 1.2rem;
    background-color: rgba(255, 255, 255, .1);
}
.page-intro__bg-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.page-intro__bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-intro__inner {
    width: 100%;
    display: flex;
    align-self: stretch;
}
.page-intro__content {
    position: relative;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    overflow: hidden;
    flex-direction: column;
    z-index: 10;
    padding: 6rem;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
}
.page-intro__content:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg,rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
}
.page__title {
    position: relative;
    z-index: 20;
    display: block;
    font-family: var(--font-family-title);
    color: #fff;
    font-size: 6rem;
    line-height: 1.2;
    font-weight: 200;
}


.page-body {
    width: 100%;
    display: flex;
    position: relative;
}

.page-body  .page-body__content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}


.page-body .page__content {
    width: 100%;
    position: relative;
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}




