/* تحويل التصنيفات لدواير صغيرة في صف */
section.s-block--square-links ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 16px !important;
    grid-template-columns: unset !important;
}

section.s-block--square-links ul li {
    width: 85px !important;
    flex: 0 0 auto !important;
}

section.s-block--square-links img {
    width: 75px !important;
    height: 75px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

@media (max-width: 767px) {
    section.s-block--square-links ul {
        gap: 10px !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
    }
    section.s-block--square-links ul li {
        width: 70px !important;
    }
    section.s-block--square-links img {
        width: 65px !important;
        height: 65px !important;
    }
}