.link-image {
    width: 100%;
    height: 100%;
    display: flex;
    max-height: 340px;
    position: relative;
    z-index: 5;
}

.link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 340px;
}

.link-image span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--wp--preset--color--light);
    font-size: var(--wp--preset--font-size--p-button);
    font-weight: 400;
    font-family: var(--wp--preset--font-family--oswald);
    z-index: 6;
    text-transform: uppercase;
}

.link-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 19, 19, 0.40);
    z-index: 1;
    transition: background-color 0.3s ease-in-out;
}

.link-image:hover:after {
    background-color: #078DF866;
}

@media not all and (min-width: 1281px) {}

@media not all and (min-width: 1025px) {}

@media not all and (min-width: 769px) {
    .link-image img {
        max-height: 250px;
    }
}

@media not all and (min-width: 641px) {}

@media not all and (min-width: 391px) {}