.front-page-hero{
    height: 100svh;
    min-height: 800px;
    max-height: 1000px;
}

.content-wrapper{
    flex-wrap: nowrap;
    height: 100%;
    align-items: center;
}

.hero-right-wrapper{
    justify-content: end;
    display: flex;
}

.praxis-name{
    font-weight: 600;
}

.heading-row{
    text-transform: uppercase; 
 }
 
 .heading-row h1{
     line-height: 1.2;
 }

.heading-divider{
    width: 80%;
    height: 3px;
    background-color: var(--accentColor);
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.hero-image{
    max-width: min(800px, 55vw);
    width: 100%;
    padding-left: 80px;
}

/* hero action buttons */

.hero-button--desktop button, .appointment-button--desktop{
    font-weight: 600;
    padding-inline: 1.5625rem;
    padding-block: 0.625rem;
    box-sizing: border-box;
    border: none;
    transition: all 0.2s;
    min-width: 11.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.appointment-button--desktop{
    background-color: var(--shadeColor);
    border-radius: 4.3125rem 0 0 4.3125rem;
}

.appointment-button--desktop:hover{
    background-color: var(--accentColor);
}

.news-button--desktop{
    border-radius: 0 4.3125rem 4.3125rem 0;
    box-shadow: inset 0 0 0 0.05rem black;
    background-color: white;
}

.news-button--desktop:hover{
    background-color: var(--accentColor);
    box-shadow: none;
}

/* mobile styles */
@media screen and (max-width: 1050px){
    .front-page-hero{
        height: auto;
        min-height: 0px;
        margin-bottom: 100px;
    }
    .content-wrapper{
        flex-direction: column-reverse;
    }

    .hero-right-wrapper{
        justify-content: center;
    }

    .hero-image{
        padding: 0;
    }

    .front-page-hero{
        margin-top: 140px;
    }

    .hero-image{
        margin-bottom: 50px;
        max-width: 600px;
    }

    .praxis-name-heading{
        text-align: center;
    }
}

.hero-button--mobile a{
    width: 18.75rem;
    font-weight: 600;
    height: 3.125rem;
    border-radius: 1.5rem;
}

.appointment-button--mobile{
    background-color: var(--shadeColor);
}

.call-button--mobile{
    border: 0.03125rem solid black;
    border-radius: 1.5rem;
}
