h-image-with-text{
    display: block;
    line-height: 1.2;
}
h-image-with-text .h-image-with-text-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

h-image-with-text .h-image-with-text__media{
    width: min(var(--image-size, 600px), 100%);
    justify-self: center;
    border: 16px;
    overflow: hidden;
}

h-image-with-text .h-image-with-text__body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
h-image-with-text .h-image-with-text__title{
    font-size: var(--title-font-size, 50px);
    font-weight: 500;
    font-family: var(--font-akzidenz-grotesk-super);
    text-transform: uppercase;
    margin-bottom: 24px;
}

h-image-with-text .h-image-with-text__content{
    font-size: var(--content-font-size, 26px);
    font-weight: 500;
    font-family: var(--font-gotham-medium);
    margin-bottom: 30px;
}

h-image-with-text .h-image-with-text__content-2{
    font-size: var(--content-2-font-size, 22px);
    font-weight: 500;
    font-family: var(--font-gotham-medium);
    opacity: 0.6;
}

h-image-with-text .h-image-with-text__href{
    color: #FFFFFF !important;
    background-color: #FF8A00;
    font-size: var(--button-font-size, 26px);
    font-weight: 500;
    font-family: var(--font-akzidenz-grotesk-super);
    padding: 8px 30px;
    padding-right: 40px;
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    border-radius: 50px;
    margin-bottom: var(--button-margin-bottom, 50px);
}
@media(max-width:959px){
    h-image-with-text .h-image-with-text__media{
        width: min(var(--image-size-mobile, 600px), 100%);
    }
    h-image-with-text .h-image-with-text-container{
        grid-template-columns: repeat(1,1fr);
        gap: 16px;
    }
    h-image-with-text .h-image-with-text__body{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    h-image-with-text .h-image-with-text__title{
        font-size: var(--title-font-size-mobile, 40px);
        margin-bottom: 3.2vw;
    }

    h-image-with-text .h-image-with-text__content{
        font-size: var(--content-font-size-mobile, 25px);
        margin-bottom: 4.4vw;
    }
    h-image-with-text .h-image-with-text__content-2{
        font-size: var(--content-2-font-size-mobile, 20px);
    }
    h-image-with-text .h-image-with-text__href{
        font-size: var(--button-font-size-mobile, 26px);
        width: 100%;
        margin-top: 4.8vw;
        padding-block: 8px;
        margin-bottom: var(--button-margin-bottom-mobile, 0px);
    }
}
