/* 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;
}