.tpl-list-card-list-main__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.tpl-list-card-list-main__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tpl-list-card-list-main__landing-link, .tpl-list-card-list-main__service-link {
    display: none;
}

.tpl-list-card-list-main__cards {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 8px;
    margin-top: 16px;
}

.tpl-list-card-list-main__card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 1 100%;
    column-gap: 12px;
    padding: 8px 16px;
    border-radius: 16px;
    background-color: var(--color-card-background);
    opacity: 1;
}

.tpl-list-card-list-main__card .vs-title-4__regular:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.tpl-list-card-list-main__card-icon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.tpl-list-card-list-main__card-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: auto;
}

.tpl-list-card-list-main__card-icon img,
.tpl-list-card-list-main__card-arrow img {
    width: 100%;
    height: 100%;
}

.tpl-list-card-list-main__card .vs-text {
    display: none;
}

@media (min-width: 744px) {
    .tpl-list-card-list-main__landing-link {
        display: inline-block;
    }

    .tpl-list-card-list-main__cards {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 16px;
        gap: 24px;
    }

    .tpl-list-card-list-main__card {
        flex-direction: column;
        flex: 1 1 calc(50% - 16px);
        align-items: start;
        gap: 16px;
        max-width: calc(50% - 16px);
        padding: 20px 20px 30px 20px;
        opacity: 1;
    }

    .tpl-list-card-list-main__card .tpl-list-card-list-main172-icon {
        width: 40px;
        height: 40px;
    }

    .tpl-list-card-list-main__card .vs-text {
        display: block;
        flex-grow: 1;
    }

    .tpl-list-card-list-main__card-arrow.mobile {
        display: none;
    }

    .tpl-list-card-list-main__card-arrow.desktop {
        display: inline-block;
        width: 16px;
        height: 16px;
    }

    .tpl-list-card-list-main__service-link.desktop {
        display: inline-block;
        align-self: flex-end;
        margin-top: 8px;
        cursor: pointer;
    }
    .tpl-list-card-list-main__service-link.desktop .tpl-list-card-list-main__card-arrow.desktop {
        display: inline-block;
    }
}


@media (min-width: 1024px) {
    .tpl-list-card-list-main__wrapper.vs-section  {
        row-gap: 32px;
    }

    .tpl-list-card-list-main__cards {
        justify-content: flex-start;
    }

    .tpl-list-card-list-main__card {
        row-gap: 8px;
        flex: 1 1 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
        margin-top: 8px;
        padding: 32px 32px 40px 32px;
    }
}

@media (min-width: 1440px) {
    .tpl-list-card-list-main__card {
        margin-top: 8px;
        row-gap: 8px;
        width: 394px;
    }

    .tpl-list-card-list-main__wrapper.vs-section {
        max-width: 1248px;
        padding-inline: 0;
    }
}

