/* تنسيق الجوال */
@media screen and (max-width: 768px) {
.blocks-categories {
display: grid;
grid-auto-flow: column;
grid-auto-columns: 120px;
gap: 12px;
overflow-x: auto;
padding-bottom: 10px;
}
.blocks-categories .item img {
width: 100%;
height: 120px;
object-fit: cover;
border-radius: 8px;
}
}
/* تنسيق الكمبيوتر */
@media screen and (min-width: 769px) {
.blocks-categories .item img {
width: 100%;
height: 180px;
object-fit: cover;
border-radius: 8px;
}
}