/* بخش کلی پست‌های مرتبط */
.related-posts-section {
    margin-top: 40px;
    padding: 40px 20px 50px 20px;
	width:100%;
    background:linear-gradient(to bottom, #f6f0d9 0%, #ffffff 100%);
	margin-inline: auto;
}

.related-title {
    font-size: 2rem;
    margin-bottom: 35px;
    color: #333;
	text-align:center;
}

/* شبکه بندی کارت‌ها */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
	margin-inline: auto;
	width:100%;
    max-width:1280px;
}

/* استایل هر کارت پست */
.related-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08)
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* عکس پست */
.related-post-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* اطلاعات پست */
.related-post-info {
    padding: 15px;
}

.related-post-title {
    font-size: 0.95rem;
    margin: 0 0 10px 0;
    line-height: 1.6;
    color: #222;
}

