.block-off-grid-content-two{
    padding-bottom: 5rem;
}

.block-off-grid-content-two__image-wrapper{
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: block;
}

.block-off-grid-content-two__inner{
    display: grid;
    gap: 2rem;
    padding-top: 3rem;
}

.block-off-grid-content-two__inner a{
    color: black;
}

.block-off-grid-content-two__overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, .5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.block-off-grid-content-two__overlay svg{
    fill: white;
    width: 2.4rem;
    height: 2.4rem;
}

.block-off-grid-content-two__image-wrapper:hover .block-off-grid-content-two__overlay {
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.block-off-grid-content-two__title{
    font-family: "Playfair Display", serif;
    font-size: 2rem; 
}

@media screen and (min-width: 992px) {
    .block-off-grid-content-two__image-wrapper{
        aspect-ratio: initial;
        height: 36rem;
    }

    .block-off-grid-content-two__image-wrapper--off{
        position: absolute;
        top: 18rem;
        height: 50rem;
    }

    .col-lg-5{
        position: relative;
    }

    .block-off-grid-content-two__inner{
        padding-top: 5rem;
    }
}



