.wp-block-bordelais-header-block {
    max-width: 1200px;
    .first-row{
        display: grid;
        grid-template-columns: 1fr 590px;
        align-items: end;

        @media screen and (max-width: 950px){
            grid-template-columns: 1fr;
        }

        .logo-and-headline{
            width: 100%;
            max-width: 590px;

            h1{
                font-size: 50px;
            }
        }
    }
    .second-image-leftside{
        width: 100%;
        max-width: 770px;
    }
    .second-row{
        display: flex;
        margin-bottom: 150px !important;

        .text{
            width: 100%;
            max-width: 590px;
        }

        h2{
            font-size: 50px;
        }
        p{
            margin: 40px 0;
        }
        a.button {
            background-color: #8d0000;
            border: 3px solid #8d0000;
            color: #fff;
            padding: 12px;
            text-transform: uppercase;
            margin-top: 20px;
            &:hover {
                background-color: #fff;
                color: #8d0000;
            }
        }
    }
}

.wp-block-bordelais-cover-link-block{
    max-width: 1200px !important;
    a.img-background{
        display: flex;
        height: 350px;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        span{
            width: 100%;
            position: absolute;
            z-index: 2;
            top: 0;
            left: 0;
            height: 100%;
            display: flex;
            justify-content: start;
            align-items: center;
            padding-left: 40px;
            font-size: 40px;
            font-family: $headline-font-family;
            color: #000;
            transition: 0.3s ease-in-out;
        }

        .color-overlay{
            width: 100%;
            height: 100%;
            position: absolute;
            background: linear-gradient(to right, #ceb784c7, transparent);
            opacity: 0;
            top: 0;
            left: 0;
            z-index: 1;
            transition: 0.3s ease-in-out;
        }

        &:hover{
            .color-overlay{
                transition: 0.3s ease-in-out;
                opacity: 1;
            }
            span{
                color: #8d0000;
                transition: 0.3s ease-in-out;
            }
        }
    }
}