.article-product {
    background: #2a7e4326;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.article-product:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-product__img {
    border-radius: 10px;
    margin-bottom: 15px;
}
.article-product__img a {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: calc((231 / 369) * 100%);
}

.article-product__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.article-product__info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-product__title {
    font-size: 15px;
    font-weight: 700;
}

.article-product__title a {
    color: var(--color-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-product__code {
    font-size: 12px;
    color: var(--color-2);
    margin-bottom: 10px;
}

.btn-product-detail {
    display: block;
    background: var(--color-2);
    color: #fff;
    border: 1px solid var(--color-2);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: alls 0.3s;
    @media (max-width: 767px) {
        font-size: 12px;
    }
}

.btn-product-detail:hover {
    background: #fff;
    color: var(--color-2);
}
