/* BLOCK: Hero Banner Inner */

.block-hero-banner-inner .content-wrapper {
    display: flex;
    align-items: stretch;
    gap: 3.5rem;
}

body.single-job .block-hero-banner-inner .content-wrapper {
    gap: 1.875rem;
}

.block-hero-banner-inner:where(.layout--text_image) .content-wrapper {
    flex-direction: row-reverse;
}

.block-hero-banner-inner .image-wrapper {
    flex-basis: 60%;
}

body.single-job .block-hero-banner-inner .image-wrapper {
    flex-basis: 40%;
}

.block-hero-banner-inner .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    clip-path: polygon(100% 0%, 100% calc(100% - 120px), calc(100% - 70px) 100%, 0% 100%, 0% 120px, 70px 0%);
}

body.single-job .block-hero-banner-inner .image-wrapper img {
    border-radius: 0px;
    clip-path: polygon(100% 0%, 100% calc(100% - 100px), calc(100% - 60px) 100%, 0% 100%, 0% 0%, 0% 0%);
}

.block-hero-banner-inner .text-wrapper {
    flex-basis: 40%;
    align-items: flex-start;
}

body.single-job .block-hero-banner-inner .text-wrapper {
    flex-basis: 60%;
}

.block-hero-banner-inner .return-link {
    margin-bottom: 3.75rem;;
    color: rgb(from var(--c-text-dark) r g b / .5);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-17-14);
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
}

body.single-job .block-hero-banner-inner .return-link {
    margin-bottom: 2.5rem;
}

.block-hero-banner-inner .return-link svg {
    max-width: 0.75rem;
    width: 100%;
    max-height: 0.75rem;
    height: 100%;
}

.block-hero-banner-inner .text-content > * {
    margin-block: 0 1.875rem;
}

.block-hero-banner-inner .text-content > :where(h1, h2, h3, h4, .h1, .h2, .h3, .h4) {
    margin-bottom: 3.125rem;
}

.block-hero-banner-inner .text-content > :last-child {
    margin-bottom: 0;
}

.block-hero-banner-inner .cta-buttons {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 3.125rem;
}

@media screen and (width <= 620px) {
    .block-hero-banner-inner .content-wrapper {
        flex-direction: column;
        gap: 2.5rem;
    }
    .block-hero-banner-inner:where(.layout--text_image) .content-wrapper {
        flex-direction: column-reverse;
    }
    .block-hero-banner-inner .image-wrapper img {
        border-radius: 4px;
    }
    .block-hero-banner-inner .text-content > * {
        margin-bottom: 1.5rem;
    }
    .block-hero-banner-inner .text-content > :where(h1, h2, h3, h4, .h1, .h2, .h3, .h4) {
        margin-bottom: 1.875rem;
    }
    .block-hero-banner-inner .cta-buttons {
        margin-top: 1.875rem;
    }
}