.elementor-15774 .elementor-element.elementor-element-1ba9434{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-12cea71 *//* تنظیمات کانتینر اصلی */
.pishino-blog-container {
    display: grid;
    /* گرید هوشمند: ۳ ستون در دسکتاپ، ۱ در موبایل */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    padding: 20px 0;
}

/* استایل کارت مقاله */
.pishino-card {
    background: #ffffff; /* زمینه سفید */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    /* نوار رنگی بالا - نارنجی برند */
    border-top: 5px solid #f97316;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* افکت هاور کارت */
.pishino-card:hover {
    transform: translateY(-7px); /* بالا رفتن */
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.15); /* سایه نارنجی محو */
}

/* بخش تصویر */
.pishino-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pishino-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pishino-card:hover .pishino-card-image img {
    transform: scale(1.05); /* زوم نرم عکس */
}

/* تاریخ انتشار (با رنگ سبز نعنایی برای تاکید ثانویه) */
.pishino-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #CBFFDE; /* سبز نعنایی */
    color: #333;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* بدنه کارت */
.pishino-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* عنوان مقاله (نارنجی برند) */
.pishino-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.5;
}

.pishino-title a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.pishino-title a:hover {
    color: #f97316; /* نارنجی در هاور */
}

/* خلاصه متن */
.pishino-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* هل دادن دکمه به پایین */
}

/* دکمه مطالعه مقاله */
.pishino-btn {
    display: inline-block;
    background: #fff;
    color: #f97316;
    border: 2px solid #f97316;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%; /* دکمه تمام عرض */
}

.pishino-btn:hover {
    background: #f97316; /* نارنجی پر */
    color: #fff;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* صفحه‌بندی (Pagination) */
.pishino-pagination {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pishino-pagination a, 
.pishino-pagination span {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.pishino-pagination span.current, /* صفحه جاری */
.pishino-pagination a:hover {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
}/* End custom CSS */