/* page basic intro */
.page-intro {
    text-align: center;
}


/* page full screen hero */
body .hero-page,
body .hero-page.hero {
    height: auto;
    min-height: 0;
    background: var(--carrousel_grey);
    padding-top: 5em;
    margin-bottom: 2em;
    color: #fff;
    text-align: center;
}

body .hero-page::before {
    display: none;
}

body .hero-page h1 {
    color: #fff;
}

/* blockquote */
blockquote {
    margin: 0;
    font-size: 2em;
    line-height: 117%;
    font-weight: 700;
    letter-spacing: -.025em;
}

blockquote p {
    margin-top: .5em;
}


/* page  hero */
.page-hero {
    background: var(--carrousel_grey);
    color: #fff;
    display: flex;
    align-items: center;
    max-height: calc(var(--vh, 1vh) * 100);
    transition: max-height 0.6s linear;
    position: relative;
    min-height: 600px;
    overflow: hidden;
    height: 100vh;
    height: calc(var(--vh) * 100);
}


/* ===================================== Responsive  ===================================== */


/*  Desktop  */
@media screen and (min-width: 1024px) {

    .page-intro {
        width: 70%;
        margin: 2em auto;
    }

    body .hero-page,
    body .hero-page.hero {
        padding-top: 7em;
    }


    .excerpt-text {
        font-size: 1.4em;
    }

    blockquote {
        font-size: 3.3em;
    }

}