.hero {
    background: transparent;
    position: relative;
    background: var(--Primitives-Slate-Slate-2, #F8F9FA);
    padding-bottom: 120px;
}

.hero__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.hero__header h1 {
    color: var(--Tokens-Text-Text-Hi-Contrast, #010203);

    /* Heading XL Items */
    font-family: "Items";
    font-size: var(--font-size-Level-12, 64px);
    font-style: normal;
    font-weight: 325;
    line-height: var(--line-height-Level-12, 64px);
    /* 100% */
    letter-spacing: 1.28px;
    margin-bottom: 0;
    font-variation-settings: 'wdth' 450;
}

.hero__header a {
    color: var(--Tokens-Text-Text-Mid-Contrast, #4D565C);

    /* Text 18 narrow */
    font-family: "PPNV";
    font-size: 18px;
    font-style: normal;
    font-weight: 375;
    line-height: 22px;
    /* 122.222% */
    letter-spacing: 0.36px;
}

.hero__links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.hero__socials {
    display: flex;
    gap: 10px;
}

.hero__socials a>img {
    height: 48px;
    width: 48px;
}

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

    .hero .container {
        padding: 0 10px;
    }

    .hero .breadcrumbs {
        padding-bottom: 40px;
    }

    .hero__header {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .hero__header h1 {
        color: var(--Tokens-Text-Text-Hi-Contrast, #010203);

        /* Heading XL Items */
        font-family: "Items";
        font-size: var(--font-size-Level-12, 40px);
        font-style: normal;
        font-weight: 325;
        line-height: var(--line-height-Level-12, 42px);
        /* 105% */
        letter-spacing: 0.8px;
    }

    .hero__links {
        width: 100%;
        gap: 20px;
        justify-content: space-between;
    }

    .hero [data-view-card=wide] .card-title,
    .hero [data-view-card=wide-big] .card-title {
        max-width: 240px !important;
    }
}