/*Avarius Capital – Sdílené styly PAGE HERO*/

.page-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    height: 500px;
}

@media (min-width: 1024px) {
    .contact-hero {
        padding-top: 180px;
    }
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 45% 40% at 50% 60%, var(--hero-center) 0%, var(--hero-edge) 100%);
    z-index: 0;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 55%;
    transform: translateY(-60%);
    width: 880px;
    height: 731px;
    filter: blur(1px);
    background: url('../img/hero_shadow.svg') no-repeat center / contain;
    z-index: 1;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 180px;
}

.hero-right {
    flex-shrink: 0;
    padding-bottom: 20px;
    margin-right: auto;
    align-self: flex-end;
}

.hero-right .btn-cta {
    margin-top: 0;
    margin-bottom: 0;
    width: 282px;
    max-width: 282px;
}

.page-hero-label {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 30px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 54px;
    line-height: 58px;
    color: var(--gold);
}

@media (max-width: 767px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero-bg {
        background: radial-gradient(ellipse 40% 45% at 50% 55%, var(--hero-center) 0%, var(--hero-edge) 100%);
    }

    .page-hero-title {
        margin-top: 100px;
        font-size: 32px;
        line-height: 40px;
    }

    .page-hero-bg::before {
        top: 20%;
        left: 30%;
        width: 407px;
        height: 338px;
    }

    .hero-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 80px;
    }

    .hero-right {
        padding-bottom: 0;
    }
}
