.apply-now-button {
    color: white;
    font-size: 1.5rem;
    font-family: Akkurat-Bold, sans-serif, sans-serif;
    background-color: #ca7406;
    border: none;
    padding: 0 1rem;
    height: 4rem;
    border-radius: 50vh;
    margin-top: 18rem;
    align-content: center;
    width: fit-content;
    &:hover{
        background-color: #b16606;
        color: white;
    }
    &:focus-visible {
        outline: var(--focus-outline-width) var(--focus-outline-style) var(--focus-outline-color);
    }
}

.listing-content-container a.apply-now-button:hover {
    background-color: #b16606;
    color: white;
}

.apply-button-cell{
    display: flex;
    justify-content: center;

    & .apply-now-button{
        margin-top: 18rem;
    }
}
.listings-title{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}
.listing-content-container{
    & .summarizing-short-text{
        padding-left: 3.5rem;
        padding-right: 3.5rem;
        margin-top: 0;
        font-family: Akkurat-Regular, sans-serif;
        font-weight: 400;
        font-size: 1.25rem;
    }
    & .listing-content-block {
        background-color: white;
        padding: 0 3.5rem 0 3.5rem;
        & h2:not(:first-of-type) {
            margin-top: 2rem;
        }
        & .listing-introduction,
        & .listing-introduction p
        {
            font-family: Akkurat-Bold, sans-serif;
        }
        & .listing-tasks, & .listings-benefits, & .listing-qualifications, & .listing-additional-qualifications{
            & ul{
                list-style: none;
                padding-left: 0;
                & li{
                    position: relative;
                    padding-left: 2rem;
                    line-height: 1.5;
                    &:not(:last-child){
                        margin-bottom: 1rem;
                    }
                    &::before{
                        content: "";
                        position: absolute;
                        left: 0;
                        width: 1.5rem;
                        height: 1.5rem;
                        background: url(../right-arrow.svg) no-repeat center;
                        background-size: contain;
                    }
                    &::marker{
                        content: "";
                    }
                }
            }
        }
    }
    & .contact-block{
        padding-left: 3.5rem;
        padding-right: 3.5rem;
        padding-top: 1.75rem;
        & .apply-call {
            font-family: Akkurat-Bold, sans-serif;
        }
        & h3{
            color: rgb(59, 59, 59);
            font-family: Akkurat-Bold, sans-serif;
        }
        & .apply-now-button{
            margin-top: 1rem;
            margin-bottom: 2rem;
            display: block;
        }
        & .questions-subblock{
            & p,span{
                font-family: Akkurat-Regular, sans-serif;

            }
            & h3{
                margin-top: 1rem;
            }
        }
    }
    & .tudo-information-block{
        background-color: white;
        padding: 0 3.5rem 0 3.5rem;
        & h3{
            color: #639a00;
            font-family: Akkurat-Regular, sans-serif;
        }

    }
    & .logo-block{
        padding: 1rem;
        display: flex;
        justify-content: space-between;

        & > img {
            height: 50px;
            width: auto;
            display: inline-block;
            margin: unset;
        }
    }
    /*additional rules */
    & p{
        margin-bottom: 0.5rem;
        font-family: Akkurat-Regular,sans-serif;
    }
    & ul{
        margin-bottom: 0.5rem;
    }
    a:not(.apply-now-button) {
        border-bottom: 1px solid #639a00;
        &:hover, &:focus-visible {
            background-color: #616161;
            border-bottom-color: transparent;
            color: #fff;
            text-decoration: none;
        }
    }
}
.site-logo .navbar-brand img{
    margin: 0;
}

.listing-introduction-wrapper,
.listing-tasks,
.listings-benefits,
.listing-qualifications,
.listing-additional-qualifications {
    margin-bottom: 1rem;
}

/*high contrast changes*/
[data-tudo-high-contrast='true'] {
    .apply-now-button{
        color: white;
        background-color: black;
        border: 3px solid black;
        &:hover {
            background-color: white;
            border: 3px solid black;
            color: black;
        }
    }

    .listing-content-container a.apply-now-button:hover {
        background-color: white;
        color: black;
    }

    .listing-content-container{
        & .listing-content-block{
            background-color: white;
            & .listing-tasks, & .listings-benefits, & .listing-qualifications, & .listing-additional-qualifications{
                & ul{
                    & li{
                        &::before{
                            background: url(../right-arrow-black.svg) no-repeat center;
                        }
                    }
                }
            }
        }
        & .contact-block{
            & h3{
                color: black;
            }
        }
        & .tudo-information-block{
            background-color: white;
            & h3{
                color: black;
            }
        }
        a:not(.apply-now-button) {
            border-bottom: 1px solid black;
            &:hover, &:focus-visible {
                background-color: black;
                border-bottom-color: transparent;
                color: #fff;
                text-decoration: none;
            }
        }
    }
}