/* Yasmalia Posts Grid */
.yasmalia-posts-grid { display: grid; gap: 24px; }
.yasmalia-posts-grid--list { grid-template-columns: 1fr !important; }
.yasmalia-posts-grid--list .yasmalia-post-card { display: flex; flex-direction: row; }
.yasmalia-posts-grid--list .yasmalia-post-card__thumb { width: 280px; flex-shrink: 0; }

.yasmalia-post-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.yasmalia-post-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.yasmalia-post-card__thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.yasmalia-post-card__content { padding: 20px; }
.yasmalia-post-card__meta { display: flex; gap: 12px; font-size: 13px; color: #9ca3af; margin-bottom: 8px; }
.yasmalia-post-card__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; line-height: 1.3; }
.yasmalia-post-card__title a { text-decoration: none; color: inherit; }
.yasmalia-post-card__title a:hover { color: #2563eb; }
.yasmalia-post-card__excerpt { color: #6b7280; line-height: 1.6; margin: 0 0 16px; }
.yasmalia-post-card__read-more { font-size: 14px; padding: 8px 20px; }
.yasmalia-posts-grid__pagination { margin-top: 30px; text-align: center; }
.yasmalia-posts-grid__pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 2px; border-radius: 6px; text-decoration: none; color: #374151; }
.yasmalia-posts-grid__pagination .page-numbers.current { background: #2563eb; color: #fff; }
.yasmalia-posts-grid__empty { grid-column: 1 / -1; text-align: center; color: #9ca3af; padding: 40px; }

@media (max-width: 768px) {
    .yasmalia-posts-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 18px;
    }

    .yasmalia-posts-grid--list .yasmalia-post-card { flex-direction: column; }
    .yasmalia-posts-grid--list .yasmalia-post-card__thumb { width: 100%; }

    .yasmalia-post-card {
        min-width: 0;
    }

    .yasmalia-post-card__content {
        padding: 18px;
    }

    .yasmalia-post-card__meta {
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .yasmalia-post-card__title {
        font-size: 20px;
        line-height: 1.35;
    }

    .yasmalia-post-card__title a,
    .yasmalia-post-card__excerpt {
        overflow-wrap: anywhere;
    }

    .yasmalia-post-card__read-more {
        width: 100%;
        text-align: center;
    }
}
