﻿.rbt-blog-post-card {
    transition: all 0.3s ease;
}

.rbt-blog-post-card-inner {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    height:500px
}

    .rbt-blog-post-card-inner:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

/* تصویر */
.rbt-blog-thumbnail {
    display: block;
    padding: 10px;
}

    .rbt-blog-thumbnail img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 15px;
        transition: 0.4s;
    }

/* افکت hover روی عکس */
.rbt-blog-post-card-inner:hover img {
    transform: scale(1.05);
}

/* محتوا */
.rbt-blog-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* عنوان */
.rbt-blog-title {
    font-size: 18px;
    color: #003560;
    margin-bottom: 10px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    direction: rtl;
}

/* متن */
.rbt-blog-meta-area p {
    font-size: 14px;
    color: #666;
    line-height: 2;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%; direction:rtl
}

/* دکمه */
