﻿
.catalog .category-product-link-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

    .catalog .category-product-link-cards::after {
        content: "";
        width: 28%;
        height: 1px;
    }

.catalog .category-product-link-card {
    position: relative;
    width: 28%;
    border-radius: 15px;
    box-shadow: 0px 0px 15px -4px rgba(0,0,0,0.85);
    margin-bottom: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.catalog .category-product-link-thumbnail {
    width: calc(100% - 60px);
    height: 123px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 20px auto;
}

.catalog .category-product-link-caption {
    text-align: center;
    padding: 0 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    font-size: .85rem;
    line-height: 1.3;
}

.catalog .category-product-link {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 25px;
    color: #444;
    font-size: .7rem;
}

    .catalog .category-product-link:after {
        content: ' >';
        white-space: nowrap;
    }


@media only screen and (max-width : 675px) {
    .catalog .category-product-link-card {
        width: 48%;
    }
}

@media only screen and (max-width : 400px) {
    .catalog .category-product-link-card {
        width: 100%;
    }
}