.hero {
    width: 100vw;
    padding: 140px 0px 0;
    background: rgb(var(--blue));
    position: relative;
    height: 100vh;
    overflow: hidden;
    border-bottom: 30px solid rgb(var(--green));
}
.hero-wrapper {
    display: grid;
    grid-template-rows: repeat(10, auto);
    grid-template-columns: 1fr;
    max-width: 90vw;
    margin: 0 auto;
    height: 100%;
}

.hero .text-grid-item {
    border-radius: 20px;
    padding: 30px 40px 20px;
    background: rgb(var(--light));
    box-shadow: 0 2px 12px 6px rgba(var(--orange), 0.25);
    grid-row: 1 / 3;
    grid-column: 1;
    z-index: 1;
}

.hero .img-grid-item {
    position: relative;
    margin: 0 -20px;
    grid-row: 2 / 11;
    grid-column: 1;
}
.hero .img-grid-item:after {
    content: '';
    position:absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
    background: rgba(var(--blue), 1);
    mix-blend-mode: color;
}

.hero .img-grid-item img {
    width: 100%;
    margin: 0;
    height: 100%;
    object-position: top;
    object-fit: cover;
}

.hero .content-grid {
    margin-top: 36px;
}
.hero p.is-style-dot-font {
    font-size: 40px;
    margin: 0;
}
.hero strong.is-style-dot-font {
    font-size: 20px;
    margin: 0;
}

.hero .time {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.jamie-face {
    position:absolute;
    z-index: 2;
    width: 100px;
    margin: 0;
}

.jamie-face img {
    width: 100%;
    object-fit: contain;
}

.jamie-face.scuba {
    transform: rotate(90deg) translateY(30px);
    top: 260px;
    left: 0;
}

.jamie-face.smile {
    transform: translateY(60px) rotate(-30deg);
    bottom: 0;
    right: 0;
}
@media screen and (min-width: 1024px) {
    .hero {
        padding: 0 40px;
        height: 1000px;
    }
    .hero-wrapper {
        grid-template-rows: repeat(3, auto);
        grid-template-columns: repeat(12, 1fr);
        max-width: 90vw;
        margin: 0 auto;
        height: 1000px;
    }

    .hero .text-grid-item {
        grid-row: 2;
        grid-column: 2 / 6;
        padding: 30px 40px 30px;
        /* display: flex;
        flex-direction: column;
        align-items: center; */
    }

    .hero .img-grid-item {
        margin-right: -5vw;
        grid-row: 1 / 4;
        grid-column: 5 / 13;
        overflow: hidden;   /* Keeps the :after overlay contained */
    }
    .hero .img-grid-item:before {
        content: '';
        position:absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left:0;
        background: linear-gradient(90deg,rgba(var(--blue), 1) 8%, rgba(0, 0, 0, 0) 100%);
    }
    .jamie-face {
        width: 250px;
    }
    .jamie-face.smile {        
        bottom: -60px;
    }
    .jamie-face.scuba {
        top: 450px;
        left: -60px;
    }
}
