.hero {
    background: var(--gray-bg);
    min-height: calc(100vh);
    padding-top: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 1280px;
    margin: 10px auto;
    border-radius: 10px;
    
}

.hero__image {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 640px;
    height: calc(100vh - 90px);
    /* background: url('/images/hero_image.svg') no-repeat center / contain; */
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 200px;
    text-align: center;
}

.hero__title {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero__tagline {
    font-size: 24px;
    color: var(--primary-light);
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 769px) {
    .hero {
        width: 100%;
        border-radius: 0;
        padding-top: 40px;
        min-height: auto;
    }

    .hero__inner {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero__image {
        margin-top: -20px;
        /* background: url('/images/hero_image_mob.svg') no-repeat center / contain; */
        width: 85%;
        height: 100px;
    }

    .hero__title {
        font-size: 28px;
    }
}