.article-grid {
    --padding: 5px;
    margin: 0 calc(var(--padding) * -1);
}

.article-card-wrap {
    width: calc(100% / 2);
    padding: var(--padding);
}
.arti
@media (min-width: 575px) {
    .article-card-wrap {
        width: calc(100% / 3);
    }
}

@media (min-width: 768px) {
    .article-grid {
        --padding: 14px;

    }

    .article-card-wrap {
        width: calc(100% / 3);
    }
}


@media (min-width: 992px) {
    .article-card-wrap {
        width: calc(100% / 4);
    }
}

.article-description img {
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

.background-blur-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.background-blur-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    z-index: -1;
}

.like-button[data-total-like='0'] .count-like {
    opacity: 0;
}

.comment-item:not(:first-child) {
    margin-top: 1rem;
}


.scroll-up .article-panel {
    bottom: var(--footer-bar-height);
}

.article-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 0.5rem;
    transition-duration: 0.2s;
    /* border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; */
    z-index: 3;
}


.article-form-comment textarea {
    min-height: 67px;
}

#offcanvas-article-create {}

.pointimageproduct {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--bs-primary);
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    background-color: #fff;
}

.article-slide-image {

    position: relative;
    text-align: center;
}

.article-slide-image img {
    max-height: 100%;
    width: auto;
}

.article-slide-image .article-image-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    filter: blur(26px);
}

.article-slide-image .article-image-original {
    position: relative;
    display: inline-block;
}

.miniproductcard {
    width: 294px;
}

.miniproductcard .imageproduct {
    width: 38px;
    height: 38px;
}

.miniproductcard .titleproduct {
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 99%;
    overflow: hidden;
    font-size: 0.65rem;
}

@media (min-width: 768px) {
    .miniproductcard .titleproduct {

        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .miniproductcard {
        width: 400px;
    }

    .miniproductcard .imageproduct {
        width: 50px;
        height: 50px;
    }

    .article-slide-image .article-image-original {
        height: 580px;
    }

    .article-images {
        border-radius: 40px;
        overflow: hidden;
    }

    .article-images::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 50%;
        left: 0;
        bottom: 0;
        background: repeating-linear-gradient(0deg, #000000a3 0%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }
}

.article-image-product {
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.2s;
}

.article-images.hover .article-image-product,
.article-image-product.show {
    opacity: 1;
    visibility: visible;
}