/* پیشوند ssc- برای جلوگیری از تداخل */


/* حذف کامل زیرخط عنوان اسلایدر */
.ssc-slider .ssc-slide-title a,
.ssc-slider .ssc-slide-title a:link,
.ssc-slider .ssc-slide-title a:visited,
.ssc-slider .ssc-slide-title a:hover,
.ssc-slider .ssc-slide-title a:focus {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .ssc-swiper-slide {
        width: 200px; /* ← اینجا عرض موبایل را تغییر بده */
    }
}


/* کانتینر کلی */
.ssc-slider {
    width: 100%;
    margin: 20px auto;
}

/* عنوان اسلایدر */
.ssc-slider-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

/* Swiper wrapper */
.ssc-swiper-wrapper {
    display: flex;
}

/* هر اسلاید */
.ssc-swiper-slide {
    background:#FFBB0E;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 8px;

    /* ارتفاع کلی کارت - تغییر دهید */
    height: 200px; /* ← اینجا می‌توانید ارتفاع کارت را کم یا زیاد کنید */
}

/* هاور اسلاید */
.ssc-swiper-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* تصویر */
.ssc-slide-thumb img {
    width: 100%;
    height: 100px; /* ← تغییر ارتفاع تصویر */
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
}

/* عنوان پست بدون زیرخط */
.ssc-slide-title a {
    color: #000;
    text-decoration: none; /* ← حذف زیرخط */
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

/* دکمه‌های پیمایش */
.ssc-swiper-button-prev,
.ssc-swiper-button-next {
    color: #007BFF;
}

/* موبایل */
@media (max-width:768px) {
    .ssc-swiper-slide {
        height: 160px;
    }
    .ssc-slide-thumb img {
        height: 90px;
    }
}
