/* کانتینر اصلی */
.container-paeen-vasat-row {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    justify-content: space-evenly !;
}

/* ستون میانی */
.paeen.vasat {
    display: flex;
    justify-content: center; /* وسط چین کردن لیست داخل ستون */
    width: 100%;
    box-sizing: border-box;
}

.paeen.vasat ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px; /* فاصله بین آیتم‌ها کمتر و متناسب‌تر */
    justify-content: flex-end; /* وسط چین کردن آیتم‌ها */
    flex-wrap: wrap;
}

.paeen.vasat ul li a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 5px 10px; /* فاصله داخلی کمتر و یکنواخت */
    transition: color 0.3s, background-color 0.3s;
    box-sizing: border-box;
    border-radius: 5px;
}

.paeen.vasat ul li a:hover {
    color: #fff;
    background-color: #849b95;
    border-radius: 5px;
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
    .paeen.vasat ul {
        flex-direction: column;
        gap: 12px; /* فاصله بین آیتم‌ها کمتر در موبایل */
        align-items: center;
    }
}
