/* ریشه لیست پست‌ها */
.hamyar-posts-wrapper.layout-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols-desktop, 3), 1fr);
    gap: var(--gap, 20px);
}

@media (max-width: 1024px) {
    .hamyar-posts-wrapper.layout-grid {
        grid-template-columns: repeat(var(--cols-tablet, 2), 1fr);
    }
}

@media (max-width: 767px) {
    .hamyar-posts-wrapper.layout-grid {
        grid-template-columns: repeat(var(--cols-mobile, 1), 1fr);
    }
}

/* ساختار اسلایدر */
.hamyar-posts-wrapper.layout-slider .swiper-container {
    position: relative;
    width: 100%;
}

.hamyar-posts-wrapper.layout-slider .swiper-wrapper {
    display: flex;
}

.hamyar-posts-swiper-pagination {
    text-align: center;
    margin-top: 16px;
}

.hamyar-posts-swiper-prev,
.hamyar-posts-swiper-next {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color .2s ease;
}
.hamyar-posts-swiper-prev:hover,
.hamyar-posts-swiper-next:hover {
    background: rgba(0,0,0,0.8);
}

.hamyar-posts-swiper-prev {
    right: auto;
    left: 8px;
}
.hamyar-posts-swiper-next {
    left: auto;
    right: 8px;
}

/* کارت پست */
.hamyar-post-card {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hamyar-post-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.hamyar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* محتوای داخلی کارت */
.hamyar-post-card-inner {
    display: flex;
    flex-direction: column;
}

/* دسته‌ها */
.hamyar-post-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}
.hamyar-post-cat {
    display: inline-block;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    background-color: #f1f5f9;
    color: #1e293b;
    border-radius: 6px;
    padding: 4px 8px;
}

/* عنوان پست */
.hamyar-post-title {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
}
.hamyar-post-title a {
    text-decoration: none;
    color: inherit;
}
.hamyar-post-title a:hover {
    color: #2563eb;
}

/* متا */
.hamyar-post-meta {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 8px;
}

/* خلاصه */
.hamyar-post-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* دکمه ادامه مطلب */
.hamyar-post-readmore {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background-color .2s ease;
    margin-top: auto;
}
.hamyar-post-readmore:hover {
    background-color: #1e40af;
}

/* حالت خالی */
.hamyar-posts-empty {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    grid-column: 1 / -1;
    padding: 20px 0;
}
