.services-links-block {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;

    .services-link {
        flex: 1;
        display: flex;
        flex-direction: column;
        text-decoration: none;

        .services-link-image {
            height: 300px;
            object-fit: cover;
            width: 100%;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        .services-link-content {
            height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-width: 1px;
            border-style: solid;
            border-color: var(--wp--preset--color--contrast);
            border-top: none;
            padding: 0 2rem 2rem;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;

            h3 {
                font-size: 26px
            }

            .services-link-arrow {
                width: 20px;
                height: 20px;
                align-self: flex-end;
            }
        }
    }

    @media (max-width: 768px) {
        flex-direction: column;
    }
}