.home-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg,rgba(20, 55, 128, 0) 30%, rgba(20, 55, 128, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    align-items: center;
    min-height: 600px;
    box-sizing: border-box;
}

.home-hero__curve {
    position: absolute;
    left: 0;
    bottom: -45px;
    width: 100%;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}

.home-hero__curve svg {
    display: block;
    width: 100%;
    height: 90px;
}

.home-hero__curve path {
    fill: #ffffff;
}

.home-hero__content {
    max-width: 100%;
}

.home-hero__spacer {
    min-height: 1px;
}

.home-hero__title {
    color: #fff;
    margin: 0 0 20px;
    font-size: 5em;
    line-height: .9;
}

.home-hero__title em {
	color:#00ADEF;
}

.home-hero__subtext {
    color: #fff;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.6;
	font-weight:600
}

.home-hero__subtext p {
    margin: 0 0 1em;
}

.home-hero__subtext p:last-child {
    margin-bottom: 0;
}

.slide-button {
    display: inline-block;
    padding: 20px 35px;
    background-color: #fff;
    color: #164999;
    text-decoration: none;
    border-radius: 0;
    border:3px solid #fff;
    transition: background-color 0.3s ease;
    font-weight: 700;
    position: relative;
	line-height:1;
}

.slide-button:after {
    content:url('/wp-content/uploads/2026/04/brand-plus.svg'); margin-left:8px
}

.slide-button:hover {
    background-color: transparent;
    color: #fff;
	border:3px solid #fff;
}

@media (max-width: 1024px) {
    .home-hero__inner {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        min-height: 560px;
    }

    .home-hero__spacer {
        display: none;
    }

    .home-hero__content {
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .home-hero {
        min-height: 520px;
    }

    .home-hero__inner {
        padding: 40px 20px;
        min-height: 520px;
    }

    .home-hero__title {
        font-size: clamp(1.9rem, 8vw, 3rem);
    }

    .home-hero__subtext {
        font-size: 1rem;
    }

    .slide-button {
        padding: 12px 65px 12px 20px;
    }

    .slide-button:after {
        right: 20px;
    }
}