.hero{
    position:relative;
    width:100%;
    padding:140px 0 72px;
    overflow:hidden;
    background:#F6F6F4!important;
    color:#111;
    font-family:"Manrope",-apple-system,BlinkMacSystemFont,"Segoe UI",system-ui,sans-serif;
}

.hero.container{
    max-width:none!important;
    margin-left:0!important;
    margin-right:0!important;
    padding-left:0!important;
    padding-right:0!important;
}

.hero,
.hero *{
    box-sizing:border-box;
}

.hero__decoration{
    display:none;
}

.hero__wrapper,
.h-hero__wrapper{
    position:relative;
    display:grid;
    grid-template-columns:180px minmax(0,980px) minmax(180px,360px);
    gap:40px;
    align-items:start;
    width:100%;
    max-width:1800px;
    margin:0 auto;
    padding:0 38px;
}

.hero__eyebrow{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    grid-column:1;
    grid-row:1;
    margin:0;
    padding-top:8px;
    padding-left:22px;
    color:#111!important;
    font-size:14px;
    line-height:1;
    font-weight:600;
}

.hero__eyebrow:before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#096DF2;
}

.hero__title{
    grid-column:1 / 3;
    grid-row:1;
    max-width:980px;
    margin:0;
    color:#111!important;
    font-size:60px;
    line-height:.95;
    letter-spacing:0;
    font-weight:700;
    text-transform:none;
}

.hero--has-eyebrow .hero__title{
    grid-row:2;
    margin-top:72px;
}

.hero__title--xlarge{
    max-width:1120px;
    font-size:72px;
}

.hero__content{
    grid-column:1 / -1;
    grid-row:3;
    display:grid;
    grid-template-columns:minmax(0,980px) minmax(180px,360px);
    gap:40px;
    width:100%;
    margin-top:56px;
    padding-top:28px;
    border-top:1px solid #BDBDB8;
}

.hero__body{
    max-width:760px;
    margin:0;
    color:#333!important;
    font-size:18px;
    line-height:1.55;
    font-weight:400;
}

.hero__body p,
.hero__body ul,
.hero__body ol{
    margin-top:0;
}

.hero__body > :last-child{
    margin-bottom:0;
}

.hero__body a{
    color:#096DF2!important;
    font-weight:600;
    text-decoration:underline;
    transition:color .2s ease, background-color .2s ease;
}

.hero__cta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:flex-end;
    align-items:flex-start;
}

.hero__content--cta-only{
    grid-template-columns:1fr;
    width:min(calc(100vw - 76px), 1724px);
}

.hero__content--cta-only .hero__cta{
    justify-content:center;
}

.hero__cta .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 18px;
    border-radius:0!important;
    box-shadow:none!important;
    text-decoration:none!important;
    font-size:11px;
    line-height:1;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.hero__cta .btn--primary{
    background:#096DF2!important;
    border-color:#096DF2!important;
    color:#fff!important;
}

.hero__cta .btn--secondary{
    background:transparent!important;
    border:1px solid #111!important;
    color:#111!important;
}

.pre-wrap{
    white-space:pre-wrap;
}

@media(max-width:900px){
    .hero{
        padding:110px 0 64px;
    }

    .hero__wrapper,
    .h-hero__wrapper{
        grid-template-columns:1fr;
        gap:32px;
    }

    .hero__eyebrow,
    .hero__title,
    .hero__content{
        grid-column:1;
    }

    .hero__title{
        margin-top:0;
    }

    .hero--has-eyebrow .hero__title{
        margin-top:40px;
    }

    .hero__title--xlarge{
        font-size:60px;
    }

    .hero__content{
        grid-template-columns:1fr;
        gap:24px;
        margin-top:14px;
    }

    .hero__content--cta-only{
        width:100%;
    }

    .hero__cta{
        justify-content:flex-start;
    }
}

@media(max-width:560px){
    .hero{
        padding:90px 0 54px;
    }

    .hero__wrapper,
    .h-hero__wrapper{
        padding:0 22px;
    }

    .hero__title,
    .hero__title--xlarge{
        font-size:46px;
        line-height:1;
    }

    .hero__body{
        font-size:16px;
    }

    .hero__cta .btn{
        width:100%;
    }
}
