.our-services {
    flex: 1 1 44%;
    max-width: 447px;
}

/* .our-services img {
    filter: grayscale(1);
} */

.our-services a {
    display: block;
    position: relative;
}

.our-services figcaption {
    position: absolute;
    height:calc(106px - 84px);
    bottom: 0px;
    width: calc(100% - 28%);
    text-align: center;
    color:var(--wp--preset--color--base);
    margin: 0 !important;
    padding: 42px 14%;
    transition: height 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    background-color: rgba(62, 62, 62, 0.75);
}

.our-services figcaption h2 {
    margin: 0;
}

.our-services figcaption p {
    display: none;
    opacity:0;
    transition:opacity 0.5s;
    font-family: var(--wp--preset--font-family--sculpin);
    font-weight: 400;
    line-height: 1.6;
}

.our-services a:hover figcaption {
    height: calc(100% - 84px);
}

.our-services a:hover figcaption p {
    display: block;
    opacity:1.0;
    margin-top:10px;
    margin-bottom: 0px;
}

/* .our-services a:hover img {
    filter: grayscale(0);
} */