/**
 * @version     CVS: 1.0.1
 * @package     com_alfa
 * @copyright   2024 Easylogic CO LP
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      Agamemnon Fakas <info@easylogic.gr>
 */

/* LIST CONTAINER */

.list-container {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
}

.list-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid black;
    text-align: center;

    height: 100%;
}

.list-item img {
    width: 100%;
    object-fit: contain;
}

/* PRODUCT */

.product-title {
    margin: 0.7rem 0;
    padding: 0 10px;
}

.item-title {
    margin-top: auto;
}