/* Posts Grid & Cards */
.posts-section {
    margin-top: 3rem;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--gap-md);
}

.post-card {
    background: var(--bg-card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.post-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.post-card-content {
    padding: 1.25rem;
}

.cat-text {
    font-size: 0.75rem;
    background: #f3f4f6;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--text-muted);
}

.post-card h3 {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.post-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
