.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
}

.services-list__item {
    position: relative;
    height: 320px;
    border-radius: 6px;
    overflow: hidden;
}

.services-list__item .image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.services-list__item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-list__item .name {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    padding: 25px;
    background-color: rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: end;

    /* font-size: 45px; */
    font-size: 3.3cqw;
    letter-spacing: -0.04em;
    color: #fff;
}

.services-list__item .name a {
    color: #fff;
    text-decoration: none;

    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.services-list__item .name a:hover, .services-list__item .name a:focus, .services-list__item .name a:active {
    text-decoration: underline;
}

.services-list__item .name a::before {
    content: "";
    width: 21px;
    height: 21px;

    background-image: url(../icons/service-teaser-link-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;

    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}

@media (max-width: 767px) {
    .services-list {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .services-list__item {
        height: 220px;
    }

    .services-list__item .name {
        font-size: 6.3cqw;
    }
}