/* Default for Laptop / Desktop */
.item-img {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: calc(var(--border_radius) - 2px);
}

/* Mobile View */
@media (max-width: 768px) {
    .item-img {
        height: 200px;
        border-radius: calc(var(--border_radius) - 2px);
    }
}

/* Description Image connect Touch */
figure {
    margin: 0 0 0rem;
}

/* Laptop Item Image Fixed */
@media (min-width: 992px) {
    .item-img {
        height: 267px;
        min-height: 200px;
    }
}

/* Item details top section removed */
.mb-2 {
    margin-bottom: .5rem !important;
    display: none;
}