.blog-main {
    max-width: 900px;
    margin: 48px auto 38px auto;
    padding: 12px 16px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 14px #f2f5fa;
}

.blog-article {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    color: #222;
    line-height: 1.8;
}

.blog-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 17px;
    text-align: right;
    color: #0593d3;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 26px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.blog-meta span {
    margin-left: 18px;
    display: flex;
    align-items: center;
}
.blog-meta i {
    margin-left: 5px;
    color: #aaa;
}

.blog-cover-image {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.empty-image-slot {
    width: 330px;
    height: 200px;
    background: #e8f1fa;
    border: 2px dashed #b4d3ec;
    color: #6b93b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    border-radius: 18px;
    margin: 0 auto;
}
.empty-image-slot.small {
    width: 180px;
    height: 120px;
    font-size: 15px;
    margin: 0 14px 0 0;
}

.blog-section {
    margin-bottom: 36px;
}

.blog-section-title {
    font-size: 20px;
    color: #0593d3;
    margin-bottom: 14px;
    font-weight: bold;
}

.blog-feature-list {
    padding-right: 18px;
    color: #333;
    font-size: 15px;
}
.blog-feature-list li {
    margin-bottom: 7px;
    list-style-type: "▪ ";
}

.blog-gallery {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 36px;
    justify-content: flex-end;
}

/* گالری تصاویر ریسپانسیو */
@media screen and (max-width: 780px) {
    .blog-gallery {
        flex-wrap: wrap;
        justify-content: center;
    }

    .empty-image-slot.small {
        width: 45% !important;
        margin: 10px 2.5% !important;
        float: none !important;
        display: inline-block;
    }
}


@media screen and (max-width: 530px) {
    .blog-main {
        padding: 8px 12px;
        margin: 24px auto 24px auto;
    }

    .blog-title {
        font-size: 24px;
    }

    .blog-section-title {
        font-size: 18px;
    }

    .blog-feature-list {
        font-size: 14px;
        padding-right: 12px;
    }
}
