.social-section {
    background: linear-gradient(
        90deg,
        #064b5d 0%,
        #082d62 45%,
        #160b61 100%
    );

    padding: 28px 0;
}


/* محتوای اصلی */

.social-content {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 50px;
}


/* عنوان */

.social-title {
    direction: rtl;
    text-align: center;

    white-space: nowrap;
}

.social-title h2 {
    margin: 0;

    color: #eee;

    font-size: 30px;
    font-weight: bold;
}


/* آیکن‌ها */

.social-icons {
    direction: ltr;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;
}


/* کادر آیکن */

.social-icon {
    width: 87px;
    height: 87px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    text-decoration: none;
}


/* خود آیکن */

.social-icon img {
    width: 52px;
    height: 52px;
}


/* رنگ‌ها */

.icon-aparat {
    background: #ddd;
}

.icon-instagram {
    background: #d71920;
}

.icon-telegram {
    background: #28a9df;
}

.icon-bale {
    background: #118421;
}

.icon-eitaa {
    background: #d8b300;
}


/* =================================================
   MD به بالا
   992px+
   نوشته و آیکن‌ها در یک ردیف
================================================= */

@media (min-width: 992px) {

    .social-content {
        flex-direction: row;
    }

}


/* =================================================
   SM
   768px تا 991px
   نوشته یک خط
   آیکن‌ها خط بعد
================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .social-content {
        flex-direction: column;

        gap: 25px;
    }

    .social-title h2 {
        font-size: 26px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 70px;
        height: 70px;
    }

    .social-icon img {
        width: 44px;
        height: 44px;
    }

}


/* =================================================
   Mobile Portrait
   کمتر از 768px
   نوشته یک خط
   آیکن‌ها دوتایی
================================================= */

@media (max-width: 767px) {

    .social-content {
        flex-direction: column;

        gap: 20px;
    }


    /* نوشته */

    .social-title {
        width: 100%;
    }

    .social-title h2 {
        font-size: 21px;
    }


    /* آیکن‌ها */

    .social-icons {
        width: 190px;

        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        gap: 12px;
    }

    .social-icon {
        width: 75px;
        height: 75px;
    }

    .social-icon img {
        width: 44px;
        height: 44px;
    }

}

.post-description {
    line-height: 28px;
    height: 56px;

    overflow: hidden;
}


/* --------------------------------
   Navigator
-------------------------------- */

.navigator-row {
    margin-left: -8px;
    margin-right: -8px;
}

.navigator-col {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}


/* کارت */

.navigator-card {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 100px;

    padding: 15px 20px;

    border-radius: 12px;

    background: #fff;

    border: 1px solid #ddd;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);

    text-decoration: none !important;

    transition: all 0.25s ease;

    overflow: hidden;
}


/* Hover */

.navigator-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}


/* آیکن */

.navigator-icon {
    flex: 0 0 70px;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
}

.navigator-icon img {
    width: 55px;
    height: 55px;

    object-fit: contain;
}


/* متن */

.navigator-content {
    flex: 1;

    text-align: right;

    padding-right: 15px;
}

.navigator-content h4 {
    margin: 0 0 8px;

    font-size: 20px;

    font-weight: 600;
}

.navigator-content span {
    display: block;

    font-size: 13px;

    color: #777;
}


/* فلش */

.navigator-arrow {
    flex: 0 0 30px;

    text-align: center;

    font-size: 22px;
}


/* رنگ نشان */

.navigator-neshan {
    border-color: #35b96f;
}

.navigator-neshan .navigator-content h4 {
    color: #159447;
}

.navigator-neshan .navigator-arrow {
    color: #159447;
}


/* رنگ بلد */

.navigator-balad {
    border-color: #3d8df5;
}

.navigator-balad .navigator-content h4 {
    color: #1976e8;
}

.navigator-balad .navigator-arrow {
    color: #1976e8;
}