/* Hessam Related Posts Styles */
.hrp-container {
    clear: both;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.hrp-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: right;
}

.hrp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* طراحی واکنش‌گرا */
    gap: 20px;
}

.hrp-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hrp-list .hrp-thumbnail {
    display: block;
    margin-bottom: 10px;
    width: 100%;
}

.hrp-list .hrp-thumbnail img {
    width: 100%;
    height: 150px; /* ارتفاع ثابت برای تصاویر */
    object-fit: cover; /* برای جلوگیری از دفرمه شدن تصویر */
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.hrp-list .hrp-thumbnail:hover img {
    transform: scale(1.05);
}

.hrp-list .hrp-post-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    color: #333;
    text-align: right;
}

.hrp-list .hrp-post-title:hover {
    color: #0073aa;
}

/* استایل برای حالتی که تصویر شاخص وجود ندارد */
.hrp-list li {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    background-color: #fafafa;
    transition: box-shadow 0.3s;
}

.hrp-list li:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}