
    /* 🌿 ظاهر کلی */
body { background: #f9fff9; }
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all .2s ease;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-info {
    padding: 15px 18px;
}
.blog-title {
    font-size: 17px;
    font-weight: bold;
    color: #1e1e1e;
    transition: color .2s ease;
}
.blog-title:hover {
    color: #69BE59;
}
.blog-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}
.blog-summary {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}
.read-more {
    color: #69BE59;
    font-weight: 600;
}
.read-more i {
    transition: transform .2s;
}
.read-more:hover i {
    transform: translateX(4px);
}
