.nh-teasergrid {
    padding: 24px 0;
}

.nh-teasergrid.nh-teasergrid--default {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 1200px;
    height: 1200px;
}

.nh-teasergrid__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
    height: 100%;
}

.nh-card {
    border-radius: 50px !important;
    overflow: hidden;
    position: relative;
    padding: 1.5rem;
}

.nh-card--hero {
    background: #0b2f66;
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    min-height: 420px;
    gap: 2rem;
}

h2.nh-card__title {
    font-size: 2rem;
}

.nh-hero__title {
    font-size: 68px;
    line-height: 1.2;
    margin: 14px 0 12px;
    font-weight: 800;
    color: #fff;
    text-wrap: balance;

}

.nh-pill--light {
    background: #fff;
    color: black;
    font-size: 16px;
    border-radius: 15px;
}

.nh-hero__text {
    margin: 0 0 18px;
    opacity: 0.9;
    max-width: 44ch;
    font-size: 22px;
}

.nh-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    padding: 3px 10px;
    font-size: 1rem;
    font-weight: 700;
    width: fit-content;
}

.nh-pill--dark {
    background: #0b2f66;
    color: #fff;
    margin-bottom: 1.5rem;
}



.nh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
    border: 0;
    text-align: center;

        transition: all 0.3s ease-out;
}

.nh-btn:hover {
	color: var(--dark-blue);
	background-color: #f3f6fa;
}

.nh-btn--primary {
    background: #2f7de1;
    color: #fff;
}

.nh-btn--secondary {
    background: #2f7de1;
    color: #fff;
}

.nh-right {
    display: grid;
    grid-template-rows: 45% auto;
    gap: 1rem;
}

.nh-right__topImage {
    border-radius: 50px;
    overflow: hidden;
    min-height: 240px;
}

.nh-right__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.nh-card--white {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nh-card--light {
    background: var(--light-blue);
}

.nh-card__media {
    border-radius: 30px;
    overflow: hidden;
}
.nh-light--blue{
    background-color: #f3f6fa;
}



.nh-card__title {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
    color: #0b0f1a;
}

.nh-card__text {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(11, 15, 26, 0.75);
}

.nh-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 990px) {

    .nh-teasergrid.nh-teasergrid--default {
        height: auto;
        
    }

    .nh-card--hero {
        gap: 1rem;
    }

    .nh-teasergrid__wrap {
        display: flex;
        flex-direction: column;
    }

    .nh-right {
        display: flex;
        grid-template-rows: 45% auto;
        gap: 1rem;
        flex-direction: column;
    }

    .nh-card--hero {
        min-height: unset;
    }

}

@media (max-width: 750px) {
    .nh-hero__title {
        font-size: 52px;
    }
    h2.nh-card__title {
	font-size: 1.75rem;
}

    .nh-right__bottom {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }

    .nh-img {
        display: unset;
        border-radius: 50px;

    }
    
}

@media (max-width: 500px) {
    .nh-hero__title {
        font-size: 44px;
    }

}