.nv-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.nv-project-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.nv-project-card:hover {
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.nv-project-image {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
}

.nv-project-info {
    padding: 16px;
}

.nv-project-info h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.nv-project-comments {
    display: flex;
    align-items: center;
    color: #777;
    font-size: 14px;
}

.nv-project-comments .material-icons {
    font-size: 18px;
    margin-right: 4px;
}