.angie-uncategorized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.angie-post-card {
    border: 1px solid #e1e8ed;
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}
.angie-post-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.angie-post-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.4;
}
.angie-post-title a {
    text-decoration: none;
    color: #333333;
}
.angie-post-excerpt {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}